Lines Matching refs:hashed_details

924 	smart_str hashed_details = {0};  in php_oci_do_connect_ex()  local
984 smart_str_appendl_ex(&hashed_details, "oci8***", sizeof("oci8***") - 1, 0); in php_oci_do_connect_ex()
985 smart_str_appendl_ex(&hashed_details, username, username_len, 0); in php_oci_do_connect_ex()
986 smart_str_appendl_ex(&hashed_details, "**", sizeof("**") - 1, 0); in php_oci_do_connect_ex()
990 …smart_str_appendl_ex(&hashed_details, OCI_G(connection_class), strlen(OCI_G(connection_class)), 0); in php_oci_do_connect_ex()
992 smart_str_appendl_ex(&hashed_details, "**", sizeof("**") - 1, 0); in php_oci_do_connect_ex()
996 smart_str_appendl_ex(&hashed_details, OCI_G(edition), strlen(OCI_G(edition)), 0); in php_oci_do_connect_ex()
998 smart_str_appendl_ex(&hashed_details, "**", sizeof("**") - 1, 0); in php_oci_do_connect_ex()
1003 smart_str_append_unsigned_ex(&hashed_details, password_hash, 0); in php_oci_do_connect_ex()
1005 smart_str_appendl_ex(&hashed_details, "**", sizeof("**") - 1, 0); in php_oci_do_connect_ex()
1008 smart_str_appendl_ex(&hashed_details, dbname, dbname_len, 0); in php_oci_do_connect_ex()
1010 smart_str_appendl_ex(&hashed_details, "**", sizeof("**") - 1, 0); in php_oci_do_connect_ex()
1017 smart_str_append_unsigned_ex(&hashed_details, charsetid, 0); in php_oci_do_connect_ex()
1030 smart_str_append_unsigned_ex(&hashed_details, charsetid_nls_lang, 0); in php_oci_do_connect_ex()
1035 smart_str_append_unsigned_ex(&hashed_details, session_mode, 0); in php_oci_do_connect_ex()
1037 smart_str_appendl_ex(&hashed_details, "pc", sizeof("pc") - 1, 0); in php_oci_do_connect_ex()
1040 smart_str_0(&hashed_details); in php_oci_do_connect_ex()
1043 zend_str_tolower(ZSTR_VAL(hashed_details.s), ZSTR_LEN(hashed_details.s)); in php_oci_do_connect_ex()
1048 if (persistent && ((zvp = zend_hash_find(&EG(persistent_list), hashed_details.s))) != NULL) { in php_oci_do_connect_ex()
1056 } else if (!persistent && ((zvp = zend_hash_find(&EG(regular_list), hashed_details.s)) != NULL)) { in php_oci_do_connect_ex()
1084 smart_str_free(&hashed_details); in php_oci_do_connect_ex()
1126 (ZSTR_LEN(tmp->hash_key) == ZSTR_LEN(hashed_details.s)) && in php_oci_do_connect_ex()
1127 (memcmp(ZSTR_VAL(tmp->hash_key), ZSTR_VAL(hashed_details.s), in php_oci_do_connect_ex()
1143 smart_str_free(&hashed_details); in php_oci_do_connect_ex()
1150 smart_str_free(&hashed_details); in php_oci_do_connect_ex()
1171 zend_hash_del(&EG(persistent_list), hashed_details.s); in php_oci_do_connect_ex()
1176 zend_hash_del(&EG(regular_list), hashed_details.s); in php_oci_do_connect_ex()
1183 zend_hash_del(&EG(persistent_list), hashed_details.s); in php_oci_do_connect_ex()
1185 zend_hash_del(&EG(regular_list), hashed_details.s); in php_oci_do_connect_ex()
1209 connection->hash_key = zend_string_dup(hashed_details.s, 0); in php_oci_do_connect_ex()
1220 connection->hash_key = zend_string_dup(hashed_details.s, 1); in php_oci_do_connect_ex()
1233 connection->hash_key = zend_string_dup(hashed_details.s, 0); in php_oci_do_connect_ex()
1253 smart_str_free(&hashed_details); in php_oci_do_connect_ex()
1264 smart_str_free(&hashed_details); in php_oci_do_connect_ex()