Lines Matching refs:spool_hashed_details

2123 	smart_str spool_hashed_details = {0};  in php_oci_get_spool()  local
2130 smart_str_appendl_ex(&spool_hashed_details, "oci8spool***", sizeof("oci8spool***") - 1, 0); in php_oci_get_spool()
2131 smart_str_appendl_ex(&spool_hashed_details, username, username_len, 0); in php_oci_get_spool()
2132 smart_str_appendl_ex(&spool_hashed_details, "**", sizeof("**") - 1, 0); in php_oci_get_spool()
2135 smart_str_appendl_ex(&spool_hashed_details, OCI_G(edition), strlen(OCI_G(edition)), 0); in php_oci_get_spool()
2137 smart_str_appendl_ex(&spool_hashed_details, "**", sizeof("**") - 1, 0); in php_oci_get_spool()
2141 smart_str_append_unsigned_ex(&spool_hashed_details, password_hash, 0); in php_oci_get_spool()
2143 smart_str_appendl_ex(&spool_hashed_details, "**", sizeof("**") - 1, 0); in php_oci_get_spool()
2146 smart_str_appendl_ex(&spool_hashed_details, dbname, dbname_len, 0); in php_oci_get_spool()
2148 smart_str_appendl_ex(&spool_hashed_details, "**", sizeof("**") - 1, 0); in php_oci_get_spool()
2150 smart_str_append_unsigned_ex(&spool_hashed_details, charsetid, 0); in php_oci_get_spool()
2154 smart_str_0(&spool_hashed_details); in php_oci_get_spool()
2155 php_strtolower(ZSTR_VAL(spool_hashed_details.s), ZSTR_LEN(spool_hashed_details.s)); in php_oci_get_spool()
2158 spool_out_zv = zend_hash_find(&EG(persistent_list), spool_hashed_details.s); in php_oci_get_spool()
2165 …ername, username_len, password, password_len, dbname, dbname_len, spool_hashed_details.s, charseti… in php_oci_get_spool()
2173 …ZSTR_LEN(((php_oci_spool *)(spool_out_le->ptr))->spool_hash_key) == ZSTR_LEN(spool_hashed_details.… in php_oci_get_spool()
2174 …)(spool_out_le->ptr))->spool_hash_key), ZSTR_VAL(spool_hashed_details.s), ZSTR_LEN(spool_hashed_de… in php_oci_get_spool()
2180 smart_str_free(&spool_hashed_details); in php_oci_get_spool()