Home
last modified time | relevance | path

Searched refs:zend_hash_index_find (Results 1 – 25 of 44) sorted by last modified time

12

/PHP-7.3/ext/zip/
H A Dphp_zip.c1749 if ((zval_file = zend_hash_index_find(Z_ARRVAL_P(return_value), i)) != NULL) { in php_zip_add_from_pattern()
2788 if ((zval_file = zend_hash_index_find(Z_ARRVAL_P(zval_files), i)) != NULL) { in ZIPARCHIVE_METHOD()
/PHP-7.3/ext/imap/
H A Dphp_imap.c1206 if ((z_auth_method = zend_hash_index_find(Z_ARRVAL_P(disabled_auth_method), i)) != NULL) { in php_imap_do_open()
/PHP-7.3/Zend/
H A Dzend_hash.c2144 ZEND_API zval* ZEND_FASTCALL zend_hash_index_find(const HashTable *ht, zend_ulong h) in zend_hash_index_find() function
2498 pData2 = zend_hash_index_find(ht2, p1->h); in zend_hash_compare_impl()
H A Dzend_vm_execute.h5759 value = zend_hash_index_find(ht, hval);
6099 jump_zv = zend_hash_index_find(jumptable, Z_LVAL_P(op));
7741 value = zend_hash_index_find(ht, hval);
10833 value = zend_hash_index_find(ht, hval);
11107 jump_zv = zend_hash_index_find(jumptable, Z_LVAL_P(op));
14182 value = zend_hash_index_find(ht, hval);
15665 value = zend_hash_index_find(ht, hval);
17546 value = zend_hash_index_find(ht, hval);
41727 value = zend_hash_index_find(ht, hval);
45366 value = zend_hash_index_find(ht, hval);
[all …]
H A Dzend_vm_def.h6338 value = zend_hash_index_find(ht, hval);
8002 jump_zv = zend_hash_index_find(jumptable, Z_LVAL_P(op));
H A Dzend_execute.c2084 return zend_hash_index_find(ht, hval); in zend_find_array_dim_slow()
3045 obj = zend_hash_index_find(function, 0); in zend_init_dynamic_call_array()
3046 method = zend_hash_index_find(function, 1); in zend_init_dynamic_call_array()
H A Dzend_API.c3391 obj = zend_hash_index_find(Z_ARRVAL_P(callable), 0); in zend_is_callable_impl()
3392 method = zend_hash_index_find(Z_ARRVAL_P(callable), 1); in zend_is_callable_impl()
/PHP-7.3/ext/soap/
H A Dsoap.c878 zval *t_ns = zend_hash_index_find(Z_ARRVAL_P(code), 0); in PHP_METHOD()
879 zval *t_code = zend_hash_index_find(Z_ARRVAL_P(code), 1); in PHP_METHOD()
H A Dphp_http.c853 if ((value = zend_hash_index_find(Z_ARRVAL_P(data), 0)) != NULL && in make_http_soap_request()
856 if (((tmp = zend_hash_index_find(Z_ARRVAL_P(data), 1)) == NULL || in make_http_soap_request()
859 ((tmp = zend_hash_index_find(Z_ARRVAL_P(data), 2)) == NULL || in make_http_soap_request()
862 (use_ssl || (tmp = zend_hash_index_find(Z_ARRVAL_P(data), 3)) == NULL)) { in make_http_soap_request()
/PHP-7.3/main/
H A Dphp_variables.c723 || (string_key == NULL && (dest_entry = zend_hash_index_find(dest, num_key)) == NULL) in php_autoglobal_merge()
/PHP-7.3/ext/openssl/
H A Dopenssl.c3758 if ((zphrase = zend_hash_index_find(Z_ARRVAL_P(val), 1)) == NULL) { in php_openssl_evp_from_zval()
3774 if ((val = zend_hash_index_find(Z_ARRVAL_P(val), 0)) == NULL) { in php_openssl_evp_from_zval()
/PHP-7.3/ext/pdo/
H A Dphp_pdo_driver.h208 if (options && (v = zend_hash_index_find(Z_ARRVAL_P(options), option_name))) { in pdo_attr_lval()
217 if (options && (v = zend_hash_index_find(Z_ARRVAL_P(options), option_name))) { in pdo_attr_strval()
H A Dpdo_dbh.c158 if ((item = zend_hash_index_find(Z_ARRVAL(info), 1)) != NULL) { in pdo_handle_error()
162 if ((item = zend_hash_index_find(Z_ARRVAL(info), 2)) != NULL) { in pdo_handle_error()
505 …if (ZEND_NUM_ARGS() > 1 && (opt = zend_hash_index_find(Z_ARRVAL_P(options), PDO_ATTR_STATEMENT_CLA… in PHP_METHOD()
506 if (Z_TYPE_P(opt) != IS_ARRAY || (item = zend_hash_index_find(Z_ARRVAL_P(opt), 0)) == NULL in PHP_METHOD()
530 if ((item = zend_hash_index_find(Z_ARRVAL_P(opt), 1)) != NULL) { in PHP_METHOD()
740 if ((tmp = zend_hash_index_find(Z_ARRVAL_P(value), 0)) != NULL && Z_TYPE_P(tmp) == IS_LONG) { in pdo_dbh_attribute_set()
775 || (item = zend_hash_index_find(Z_ARRVAL_P(value), 0)) == NULL in pdo_dbh_attribute_set()
803 if ((item = zend_hash_index_find(Z_ARRVAL_P(value), 1)) != NULL) { in pdo_dbh_attribute_set()
/PHP-7.3/ext/com_dotnet/
H A Dcom_com.c720 if ((tmp = zend_hash_index_find(Z_ARRVAL_P(sink), 0)) != NULL && Z_TYPE_P(tmp) == IS_STRING) in PHP_FUNCTION()
722 if ((tmp = zend_hash_index_find(Z_ARRVAL_P(sink), 1)) != NULL && Z_TYPE_P(tmp) == IS_STRING) in PHP_FUNCTION()
/PHP-7.3/ext/xml/
H A Dxml.c494 (obj = zend_hash_index_find(Z_ARRVAL_P(handler), 0)) != NULL && in xml_call_handler()
495 (method = zend_hash_index_find(Z_ARRVAL_P(handler), 1)) != NULL && in xml_call_handler()
/PHP-7.3/ext/standard/
H A Darray.c3692 (dest_entry = zend_hash_index_find(dest, num_key)) == NULL ||
4054 if ((tmp = zend_hash_index_find(Z_ARRVAL_P(return_value), Z_LVAL_P(entry))) == NULL) {
4128 prop = zend_hash_index_find(Z_ARRVAL_P(data), Z_LVAL_P(name));
4666 if ((data = zend_hash_index_find(Z_ARRVAL(args[i]), p->h)) == NULL ||
5077 if ((data = zend_hash_index_find(Z_ARRVAL(args[i]), p->h)) != NULL &&
H A Dvar.c642 zv = zend_hash_index_find(&data->ht, key); in php_add_var_hash()
914 zval *var_idx = zend_hash_index_find(&var_hash->ht, in php_var_serialize_intern()
H A Dbasic_functions.c4508 if ((args = zend_hash_index_find(Z_ARRVAL_P(return_value), optname_int)) != NULL) {
5095 && (obj = zend_hash_index_find(Z_ARRVAL_P(function), 0)) != NULL
5096 && (method = zend_hash_index_find(Z_ARRVAL_P(function), 1)) != NULL
5998 if ((find_hash = zend_hash_index_find(Z_ARRVAL_P(arr), key)) == NULL) {
/PHP-7.3/ext/opcache/Optimizer/
H A Dcompact_literals.c381 if ((pos = zend_hash_index_find(&hash, Z_LVAL(op_array->literals[i]))) != NULL) { in zend_optimizer_compact_literals()
H A Dsccp.c426 *result = zend_hash_index_find(Z_ARR_P(op1), 0); in fetch_array_elem()
429 *result = zend_hash_index_find(Z_ARR_P(op1), 1); in fetch_array_elem()
432 *result = zend_hash_index_find(Z_ARR_P(op1), Z_LVAL_P(op2)); in fetch_array_elem()
435 *result = zend_hash_index_find(Z_ARR_P(op1), zend_dval_to_lval(Z_DVAL_P(op2))); in fetch_array_elem()
1942 val2 = zend_hash_index_find(ht2, index); in join_hash_tables()
/PHP-7.3/ext/ldap/
H A Dldap.c415 if ((attr = zend_hash_index_find(Z_ARRVAL_P(tmp), i)) == NULL) { in _php_ldap_control_from_array()
458 if ((sortkey = zend_hash_index_find(Z_ARRVAL_P(val), i)) == NULL) { in _php_ldap_control_from_array()
1501 if ((attr = zend_hash_index_find(Z_ARRVAL_P(attrs), i)) == NULL) { in php_ldap_do_search()
2310 if ((ivalue = zend_hash_index_find(Z_ARRVAL_P(value), j)) == NULL) { in php_ldap_do_modify()
2665 if ((fetched = zend_hash_index_find(Z_ARRVAL_P(mods), i)) == NULL) { in PHP_FUNCTION()
2769 if ((fetched = zend_hash_index_find(Z_ARRVAL_P(modinfo), k)) == NULL) { in PHP_FUNCTION()
2791 fetched = zend_hash_index_find(Z_ARRVAL_P(mods), i); in PHP_FUNCTION()
2834 fetched = zend_hash_index_find(Z_ARRVAL_P(vals), j); in PHP_FUNCTION()
/PHP-7.3/sapi/phpdbg/
H A Dphpdbg.c721 zval *num = zend_hash_index_find(insert_ht, insert_idx); in PHP_FUNCTION()
/PHP-7.3/ext/fileinfo/
H A Dlibmagic.patch4208 + if ((pzval = zend_hash_index_find(ht, 0)) != NULL && Z_TYPE_P(pzval) == IS_ARRAY) {
4214 + if ((match = zend_hash_index_find(Z_ARRVAL_P(pzval), 0)) &&
4215 + (offset = zend_hash_index_find(Z_ARRVAL_P(pzval), 1))) {
/PHP-7.3/ext/reflection/
H A Dphp_reflection.c2307 if (((classref =zend_hash_index_find(Z_ARRVAL_P(reference), 0)) == NULL) in ZEND_METHOD()
2308 || ((method = zend_hash_index_find(Z_ARRVAL_P(reference), 1)) == NULL)) in ZEND_METHOD()
/PHP-7.3/ext/fileinfo/libmagic/
H A Dsoftmagic.c2046 if ((pzval = zend_hash_index_find(ht, 0)) != NULL && Z_TYPE_P(pzval) == IS_ARRAY) { in magiccheck()
2052 if ((match = zend_hash_index_find(Z_ARRVAL_P(pzval), 0)) && in magiccheck()
2053 (offset = zend_hash_index_find(Z_ARRVAL_P(pzval), 1))) { in magiccheck()

Completed in 323 milliseconds

12