Lines Matching refs:spool_hashed_details

1976 	smart_str spool_hashed_details = {0};  in php_oci_get_spool()  local
1983 smart_str_appendl_ex(&spool_hashed_details, "oci8spool***", sizeof("oci8spool***") - 1, 0); in php_oci_get_spool()
1984 smart_str_appendl_ex(&spool_hashed_details, username, username_len, 0); in php_oci_get_spool()
1985 smart_str_appendl_ex(&spool_hashed_details, "**", sizeof("**") - 1, 0); in php_oci_get_spool()
1988 smart_str_appendl_ex(&spool_hashed_details, OCI_G(edition), strlen(OCI_G(edition)), 0); in php_oci_get_spool()
1990 smart_str_appendl_ex(&spool_hashed_details, "**", sizeof("**") - 1, 0); in php_oci_get_spool()
1994 smart_str_append_unsigned_ex(&spool_hashed_details, password_hash, 0); in php_oci_get_spool()
1996 smart_str_appendl_ex(&spool_hashed_details, "**", sizeof("**") - 1, 0); in php_oci_get_spool()
1999 smart_str_appendl_ex(&spool_hashed_details, dbname, dbname_len, 0); in php_oci_get_spool()
2001 smart_str_appendl_ex(&spool_hashed_details, "**", sizeof("**") - 1, 0); in php_oci_get_spool()
2003 smart_str_append_unsigned_ex(&spool_hashed_details, charsetid, 0); in php_oci_get_spool()
2007 smart_str_0(&spool_hashed_details); in php_oci_get_spool()
2008 zend_str_tolower(ZSTR_VAL(spool_hashed_details.s), ZSTR_LEN(spool_hashed_details.s)); in php_oci_get_spool()
2011 spool_out_zv = zend_hash_find(&EG(persistent_list), spool_hashed_details.s); in php_oci_get_spool()
2018 …ername, username_len, password, password_len, dbname, dbname_len, spool_hashed_details.s, charseti… in php_oci_get_spool()
2026 …zend_string_equals(((php_oci_spool *)(spool_out_le->ptr))->spool_hash_key, spool_hashed_details.s)… in php_oci_get_spool()
2032 smart_str_free(&spool_hashed_details); in php_oci_get_spool()