spool_hashed_details 2991 ext/oci8/oci8.c 	smart_str spool_hashed_details = {0};
spool_hashed_details 2999 ext/oci8/oci8.c 	smart_str_appendl_ex(&spool_hashed_details, "oci8spool***", sizeof("oci8spool***") - 1, 0);
spool_hashed_details 3000 ext/oci8/oci8.c 	smart_str_appendl_ex(&spool_hashed_details, username, username_len, 0);
spool_hashed_details 3001 ext/oci8/oci8.c 	smart_str_appendl_ex(&spool_hashed_details, "**", sizeof("**") - 1, 0);
spool_hashed_details 3004 ext/oci8/oci8.c 		smart_str_appendl_ex(&spool_hashed_details, OCI_G(edition), strlen(OCI_G(edition)), 0);
spool_hashed_details 3006 ext/oci8/oci8.c 	smart_str_appendl_ex(&spool_hashed_details, "**", sizeof("**") - 1, 0);
spool_hashed_details 3010 ext/oci8/oci8.c 		smart_str_append_unsigned_ex(&spool_hashed_details, password_hash, 0);
spool_hashed_details 3012 ext/oci8/oci8.c 	smart_str_appendl_ex(&spool_hashed_details, "**", sizeof("**") - 1, 0);
spool_hashed_details 3015 ext/oci8/oci8.c 		smart_str_appendl_ex(&spool_hashed_details, dbname, dbname_len, 0);
spool_hashed_details 3017 ext/oci8/oci8.c 	smart_str_appendl_ex(&spool_hashed_details, "**", sizeof("**") - 1, 0);
spool_hashed_details 3019 ext/oci8/oci8.c 	smart_str_append_unsigned_ex(&spool_hashed_details, charsetid, 0);
spool_hashed_details 3023 ext/oci8/oci8.c 	smart_str_0(&spool_hashed_details);
spool_hashed_details 3024 ext/oci8/oci8.c 	php_strtolower(ZSTR_VAL(spool_hashed_details.s), ZSTR_LEN(spool_hashed_details.s));
spool_hashed_details 3027 ext/oci8/oci8.c 	spool_out_zv = zend_hash_find(&EG(persistent_list), spool_hashed_details.s);
spool_hashed_details 3034 ext/oci8/oci8.c 		session_pool = php_oci_create_spool(username, username_len, password, password_len, dbname, dbname_len, spool_hashed_details.s, charsetid);
spool_hashed_details 3045 ext/oci8/oci8.c 		ZSTR_LEN(((php_oci_spool *)(spool_out_le->ptr))->spool_hash_key) == ZSTR_LEN(spool_hashed_details.s) &&
spool_hashed_details 3046 ext/oci8/oci8.c 		memcmp(ZSTR_VAL(((php_oci_spool *)(spool_out_le->ptr))->spool_hash_key), ZSTR_VAL(spool_hashed_details.s), ZSTR_LEN(spool_hashed_details.s)) == 0) {
spool_hashed_details 3052 ext/oci8/oci8.c 	smart_str_free(&spool_hashed_details);