Lines Matching refs:spool_hashed_details

2838 	smart_str spool_hashed_details = {0};  in php_oci_get_spool()  local
2845 smart_str_appendl_ex(&spool_hashed_details, "oci8spool***", sizeof("oci8spool***") - 1, 0); in php_oci_get_spool()
2846 smart_str_appendl_ex(&spool_hashed_details, username, username_len, 0); in php_oci_get_spool()
2847 smart_str_appendl_ex(&spool_hashed_details, "**", sizeof("**") - 1, 0); in php_oci_get_spool()
2850 smart_str_appendl_ex(&spool_hashed_details, OCI_G(edition), strlen(OCI_G(edition)), 0); in php_oci_get_spool()
2852 smart_str_appendl_ex(&spool_hashed_details, "**", sizeof("**") - 1, 0); in php_oci_get_spool()
2856 smart_str_append_unsigned_ex(&spool_hashed_details, password_hash, 0); in php_oci_get_spool()
2858 smart_str_appendl_ex(&spool_hashed_details, "**", sizeof("**") - 1, 0); in php_oci_get_spool()
2861 smart_str_appendl_ex(&spool_hashed_details, dbname, dbname_len, 0); in php_oci_get_spool()
2863 smart_str_appendl_ex(&spool_hashed_details, "**", sizeof("**") - 1, 0); in php_oci_get_spool()
2865 smart_str_append_unsigned_ex(&spool_hashed_details, charsetid, 0); in php_oci_get_spool()
2869 smart_str_0(&spool_hashed_details); in php_oci_get_spool()
2870 php_strtolower(spool_hashed_details.c, spool_hashed_details.len); in php_oci_get_spool()
2873 …if (zend_hash_find(&EG(persistent_list),spool_hashed_details.c, spool_hashed_details.len+1, (void … in php_oci_get_spool()
2875 …name_len, password, password_len, dbname, dbname_len, spool_hashed_details.c, spool_hashed_details in php_oci_get_spool()
2890 strlen(((php_oci_spool *)(spool_out_le->ptr))->spool_hash_key) == spool_hashed_details.len && in php_oci_get_spool()
2891 …php_oci_spool *)(spool_out_le->ptr))->spool_hash_key, spool_hashed_details.c, spool_hashed_details in php_oci_get_spool()
2897 smart_str_free_ex(&spool_hashed_details, 0); in php_oci_get_spool()