Home
last modified time | relevance | path

Searched refs:hash_key (Results 1 – 10 of 10) sorted by relevance

/PHP-8.3/sapi/apache2handler/
H A Dapache_config.c122 static bool should_overwrite_per_dir_entry(HashTable *target_ht, zval *zv, zend_hash_key *hash_key,… in should_overwrite_per_dir_entry() argument
127 if ((orig_per_dir_entry = zend_hash_find_ptr(target_ht, hash_key->key)) == NULL) { in should_overwrite_per_dir_entry()
133 …phpapdebug((stderr, "ADDING/OVERWRITING %s (%d vs. %d)\n", ZSTR_VAL(hash_key->key), new_per_dir_en… in should_overwrite_per_dir_entry()
/PHP-8.3/ext/oci8/
H A Doci8.c438 if (connection->hash_key) { in php_oci_pconnection_list_np_dtor()
442 zend_hash_del(&EG(persistent_list), connection->hash_key); in php_oci_pconnection_list_np_dtor()
963 zend_hash_del(&EG(persistent_list), connection->hash_key); in php_oci_do_connect_ex()
1097 if (connection->hash_key == NULL) { in php_oci_do_connect_ex()
1109 connection->hash_key = zend_string_dup(hashed_details.s, 0); in php_oci_do_connect_ex()
1360 if (GC_REFCOUNT(connection->hash_key) >= 2) { in php_oci_connection_close()
1361 zend_hash_del(&EG(regular_list), connection->hash_key); in php_oci_connection_close()
1364 if (connection->hash_key) { in php_oci_connection_close()
1365 pefree(connection->hash_key, connection->is_persistent); in php_oci_connection_close()
1366 connection->hash_key = NULL; in php_oci_connection_close()
[all …]
H A Dphp_oci8_int.h167 zend_string *hash_key; /* hashed details of the connection */ member
/PHP-8.3/ext/mysqli/
H A Dmysqli_nonapi.c62 zend_string *hash_key = NULL; local
148hash_key = strpprintf(0, "mysqli_%s_%s" ZEND_LONG_FMT "%s%s%s", SAFE_STR(hostname), SAFE_STR(socke…
152 mysql->hash_key = hash_key;
155 if ((le = zend_hash_find_ptr(&EG(persistent_list), hash_key)) != NULL) {
206 …zend_register_persistent_resource(ZSTR_VAL(hash_key), ZSTR_LEN(hash_key), plist, php_le_pmysqli());
304 if (mysql->hash_key) {
305 zend_string_release_ex(mysql->hash_key, 0);
306 mysql->hash_key = NULL;
H A Dmysqli.c137 if (mysql->hash_key) { in php_clear_mysql()
138 zend_string_release_ex(mysql->hash_key, 0); in php_clear_mysql()
139 mysql->hash_key = NULL; in php_clear_mysql()
H A Dphp_mysqli_structs.h64 zend_string *hash_key; member
H A Dmysqli_api.c257 if ((le = zend_hash_find_ptr(&EG(persistent_list), mysql->hash_key)) != NULL) { in php_mysqli_close()
/PHP-8.3/Zend/
H A Dzend_hash.c2142 zend_hash_key hash_key; in zend_hash_apply_with_arguments() local
2153 hash_key.h = idx; in zend_hash_apply_with_arguments()
2154 hash_key.key = NULL; in zend_hash_apply_with_arguments()
2156 result = apply_func(zv, num_args, args, &hash_key); in zend_hash_apply_with_arguments()
2174 hash_key.h = p->h; in zend_hash_apply_with_arguments()
2175 hash_key.key = p->key; in zend_hash_apply_with_arguments()
2177 result = apply_func(&p->val, num_args, args, &hash_key); in zend_hash_apply_with_arguments()
2633 zend_hash_key hash_key; in zend_hash_replace_checker_wrapper() local
2635 hash_key.h = h; in zend_hash_replace_checker_wrapper()
2636 hash_key.key = key; in zend_hash_replace_checker_wrapper()
[all …]
H A Dzend_hash.h97 …ge_checker_func_t)(HashTable *target_ht, zval *source_data, zend_hash_key *hash_key, void *pParam);
150 typedef int (*apply_func_args_t)(zval *pDest, int num_args, va_list args, zend_hash_key *hash_key);
/PHP-8.3/sapi/cli/
H A Dphp_cli_server.c654 …ver_register_entry_cb(zval *entry, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */ { in sapi_cli_server_register_entry_cb() argument
659 if (hash_key->key) { in sapi_cli_server_register_entry_cb()
662 key = estrndup(ZSTR_VAL(hash_key->key), ZSTR_LEN(hash_key->key)); in sapi_cli_server_register_entry_cb()
663 for(i=0; i<ZSTR_LEN(hash_key->key); i++) { in sapi_cli_server_register_entry_cb()

Completed in 63 milliseconds