spool_hashed_details 2967 ext/oci8/oci8.c 	smart_str spool_hashed_details = {0};
spool_hashed_details 2974 ext/oci8/oci8.c 	smart_str_appendl_ex(&spool_hashed_details, "oci8spool***", sizeof("oci8spool***") - 1, 0);
spool_hashed_details 2975 ext/oci8/oci8.c 	smart_str_appendl_ex(&spool_hashed_details, username, username_len, 0);
spool_hashed_details 2976 ext/oci8/oci8.c 	smart_str_appendl_ex(&spool_hashed_details, "**", sizeof("**") - 1, 0);
spool_hashed_details 2979 ext/oci8/oci8.c 		smart_str_appendl_ex(&spool_hashed_details, OCI_G(edition), strlen(OCI_G(edition)), 0);
spool_hashed_details 2981 ext/oci8/oci8.c 	smart_str_appendl_ex(&spool_hashed_details, "**", sizeof("**") - 1, 0);
spool_hashed_details 2985 ext/oci8/oci8.c 		smart_str_append_unsigned_ex(&spool_hashed_details, password_hash, 0);
spool_hashed_details 2987 ext/oci8/oci8.c 	smart_str_appendl_ex(&spool_hashed_details, "**", sizeof("**") - 1, 0);
spool_hashed_details 2990 ext/oci8/oci8.c 		smart_str_appendl_ex(&spool_hashed_details, dbname, dbname_len, 0);
spool_hashed_details 2992 ext/oci8/oci8.c 	smart_str_appendl_ex(&spool_hashed_details, "**", sizeof("**") - 1, 0);
spool_hashed_details 2994 ext/oci8/oci8.c 	smart_str_append_unsigned_ex(&spool_hashed_details, charsetid, 0);
spool_hashed_details 2998 ext/oci8/oci8.c 	smart_str_0(&spool_hashed_details);
spool_hashed_details 2999 ext/oci8/oci8.c 	php_strtolower(spool_hashed_details.c, spool_hashed_details.len);
spool_hashed_details 3002 ext/oci8/oci8.c 	if (zend_hash_find(&EG(persistent_list),spool_hashed_details.c, spool_hashed_details.len+1, (void **)&spool_out_le) == FAILURE) {
spool_hashed_details 3004 ext/oci8/oci8.c 		session_pool = php_oci_create_spool(username, username_len, password, password_len, dbname, dbname_len, spool_hashed_details.c, spool_hashed_details.len, charsetid TSRMLS_CC);
spool_hashed_details 3015 ext/oci8/oci8.c 		strlen(((php_oci_spool *)(spool_out_le->ptr))->spool_hash_key) == spool_hashed_details.len &&
spool_hashed_details 3016 ext/oci8/oci8.c 		memcmp(((php_oci_spool *)(spool_out_le->ptr))->spool_hash_key, spool_hashed_details.c, spool_hashed_details.len) == 0) {
spool_hashed_details 3022 ext/oci8/oci8.c 	smart_str_free_ex(&spool_hashed_details, 0);