Home
last modified time | relevance | path

Searched refs:zend_hash_find_ptr (Results 1 – 25 of 61) sorted by relevance

123

/PHP-7.2/Zend/
H A Dzend_constants.c222 c = zend_hash_find_ptr(EG(zend_constants), haltname); in zend_get_special_constant()
269 if ((c = zend_hash_find_ptr(EG(zend_constants), name)) == NULL) { in zend_get_constant()
335 c = zend_hash_find_ptr(&ce->constants_table, constant_name); in zend_get_constant_ex()
424 if ((c = zend_hash_find_ptr(EG(zend_constants), Z_STR_P(key))) == NULL) { in zend_quick_get_constant()
426 if ((c = zend_hash_find_ptr(EG(zend_constants), Z_STR_P(key))) == NULL || in zend_quick_get_constant()
430 if ((c = zend_hash_find_ptr(EG(zend_constants), Z_STR_P(key))) == NULL) { in zend_quick_get_constant()
432 if ((c = zend_hash_find_ptr(EG(zend_constants), Z_STR_P(key))) == NULL || in zend_quick_get_constant()
H A Dzend_ini.c337 if ((ini_entry = zend_hash_find_ptr(EG(ini_directives), name)) == NULL) { in zend_alter_ini_entry_ex()
386 if ((ini_entry = zend_hash_find_ptr(EG(ini_directives), name)) == NULL || in zend_restore_ini_entry()
H A Dzend_builtin_functions.c691 p = zend_hash_find_ptr(EG(ini_directives), ZSTR_KNOWN(ZEND_STR_ERROR_REPORTING)); in ZEND_FUNCTION()
1350 if ((property_info = zend_hash_find_ptr(&ce->properties_info, property)) != NULL in ZEND_FUNCTION()
1390 ce = zend_hash_find_ptr(EG(class_table), lc_name); in ZEND_FUNCTION()
1426 ce = zend_hash_find_ptr(EG(class_table), lc_name); in ZEND_FUNCTION()
1463 ce = zend_hash_find_ptr(EG(class_table), lc_name); in ZEND_FUNCTION()
1497 func = zend_hash_find_ptr(EG(function_table), lcname); in ZEND_FUNCTION()
2667 module = zend_hash_find_ptr(&module_registry, lcname); in ZEND_FUNCTION()
H A Dzend_inheritance.c764 zend_class_constant *c = zend_hash_find_ptr(&ce->constants_table, name); in do_inherit_class_constant()
971 if ((old_constant = zend_hash_find_ptr(child_constants_table, name)) != NULL) { in do_inherit_constant_check()
1147 if ((existing_fn = zend_hash_find_ptr(&ce->function_table, key)) != NULL) { in zend_add_trait_method()
1152 if ((existing_fn = zend_hash_find_ptr(*overriden, key)) != NULL) { in zend_add_trait_method()
1564 if ((coliding_prop = zend_hash_find_ptr(&ce->properties_info, prop_name)) != NULL) { in zend_do_traits_property_binding()
H A Dzend_execute_API.c919 ce = zend_hash_find_ptr(EG(class_table), lc_name); in zend_lookup_class_ex()
938 zend_function *func = zend_hash_find_ptr(EG(function_table), ZSTR_KNOWN(ZEND_STR_MAGIC_AUTOLOAD)); in zend_lookup_class_ex()
992 ce = zend_hash_find_ptr(EG(class_table), lc_name); in zend_lookup_class_ex()
H A Dzend_compile.c885 result = zend_hash_find_ptr(ht, lcname); in zend_hash_find_ptr_lc()
918 import_name = zend_hash_find_ptr(current_import_sub, name); in zend_resolve_non_class_name()
1129 ce = zend_hash_find_ptr(class_table, Z_STR_P(rtd_key)); in do_bind_class()
1165 ce = zend_hash_find_ptr(class_table, Z_STR_P(rtd_key)); in do_bind_inherited_class()
1399 c = zend_hash_find_ptr(EG(zend_constants), name); in zend_try_ct_eval_const()
1559 cc = zend_hash_find_ptr(&ce->constants_table, name); in zend_try_ct_eval_class_const()
3519 fbc = zend_hash_find_ptr(CG(function_table), lcname); in zend_try_compile_ct_bound_init_user_func()
3985 fbc = zend_hash_find_ptr(CG(function_table), lcname); in zend_compile_call()
4126 ce = zend_hash_find_ptr(CG(class_table), lcname); in zend_compile_static_call()
4138 fbc = zend_hash_find_ptr(&ce->function_table, lcname); in zend_compile_static_call()
[all …]
H A Dzend_API.c1848 …if ((req_mod = zend_hash_find_ptr(&module_registry, lcname)) == NULL || !req_mod->module_started) { in zend_startup_module_ex()
2888 disabled_class = zend_hash_find_ptr(CG(class_table), key); in zend_disable_class()
3015 if (EXPECTED((fcc->function_handler = zend_hash_find_ptr(EG(function_table), lmname)) != NULL)) { in zend_is_callable_check_func()
3028 if ((fcc->function_handler = zend_hash_find_ptr(EG(function_table), lmname)) != NULL) { in zend_is_callable_check_func()
3098 } else if ((fcc->function_handler = zend_hash_find_ptr(ftable, lmname)) != NULL) { in zend_is_callable_check_func()
3107 if ((priv_fbc = zend_hash_find_ptr(&scope->function_table, lmname)) != NULL in zend_is_callable_check_func()
3701 module = zend_hash_find_ptr(&module_registry, lname); in zend_get_module_version()
3727 if ((property_info_ptr = zend_hash_find_ptr(&ce->properties_info, name)) != NULL && in zend_declare_property_ex()
3741 if ((property_info_ptr = zend_hash_find_ptr(&ce->properties_info, name)) != NULL && in zend_declare_property_ex()
/PHP-7.2/ext/opcache/Optimizer/
H A Dzend_optimizer.c819 if (script && (ce = zend_hash_find_ptr(&script->class_table, class_name))) { in get_class_entry_from_op1()
821 } else if ((ce = zend_hash_find_ptr(EG(class_table), class_name))) { in get_class_entry_from_op1()
848 if (script && (func = zend_hash_find_ptr(&script->function_table, function_name)) != NULL) { in zend_optimizer_get_called_func()
850 } else if ((func = zend_hash_find_ptr(EG(function_table), function_name)) != NULL) { in zend_optimizer_get_called_func()
866 if (script && (func = zend_hash_find_ptr(&script->function_table, Z_STR_P(function_name)))) { in zend_optimizer_get_called_func()
885 return zend_hash_find_ptr(&ce->function_table, func_name); in zend_optimizer_get_called_func()
894 zend_function *fbc = zend_hash_find_ptr( in zend_optimizer_get_called_func()
1161 func = zend_hash_find_ptr( in zend_adjust_fcall_stack_size()
1220 if ((orig_op_array = zend_hash_find_ptr(&op_array->scope->function_table, name)) != NULL) { in zend_optimize_script()
1314 if ((orig_op_array = zend_hash_find_ptr(&op_array->scope->function_table, name)) != NULL) { in zend_optimize_script()
[all …]
H A Dpass1_5.c275 if ((ce = zend_hash_find_ptr(EG(class_table), in zend_optimizer_pass1()
303 if ((cc = zend_hash_find_ptr(&ce->constants_table, in zend_optimizer_pass1()
431 if ((func = zend_hash_find_ptr(EG(function_table), lc_name)) != NULL in zend_optimizer_pass1()
467 zend_module_entry *m = zend_hash_find_ptr(&module_registry, in zend_optimizer_pass1()
/PHP-7.2/ext/standard/
H A Dbrowscap.c231 zend_string *interned = zend_hash_find_ptr(&ctx->str_interned, str); in browscap_intern_str()
250 interned = zend_hash_find_ptr(&ctx->str_interned, lcname); in browscap_intern_str_ci()
708 found_entry = zend_hash_find_ptr(bdata->htab, lookup_browser_name); in PHP_FUNCTION()
731 found_entry = zend_hash_find_ptr(bdata->htab, found_entry->parent); in PHP_FUNCTION()
/PHP-7.2/sapi/phpdbg/
H A Dphpdbg_list.c137 if (!(data = zend_hash_find_ptr(&PHPDBG_G(file_sources), filename))) { in phpdbg_list_file()
311 dataptr = zend_hash_find_ptr(&PHPDBG_G(file_sources), op_array->filename); in phpdbg_init_compile_file()
H A Dphpdbg_print.c192 if ((fbc = zend_hash_find_ptr(&ce->function_table, lcname))) { in PHPDBG_PRINT()
242 if ((fbc = zend_hash_find_ptr(func_table, lcname))) { in PHPDBG_PRINT()
H A Dphpdbg_bp.c300 if (!(broken = zend_hash_find_ptr(file_breaks, path_str))) { in phpdbg_set_breakpoint_file()
545 …if (op_array->scope != NULL && !(func_table = zend_hash_find_ptr(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD… in phpdbg_resolve_op_array_breaks()
550 …if (!(oplines_table = zend_hash_find_ptr(&PHPDBG_G(bp)[PHPDBG_BREAK_FILE_OPLINE], op_array->filena… in phpdbg_resolve_op_array_breaks()
553 …} else if (!op_array->function_name || !(oplines_table = zend_hash_find_ptr(func_table, op_array->… in phpdbg_resolve_op_array_breaks()
951 if (!(breaks = zend_hash_find_ptr(&PHPDBG_G(bp)[PHPDBG_BREAK_FILE], op_array->filename))) { in phpdbg_find_breakpoint_file()
981 brake = zend_hash_find_ptr(&PHPDBG_G(bp)[PHPDBG_BREAK_SYM], fname); in phpdbg_find_breakpoint_symbol()
996 if ((class_table = zend_hash_find_ptr(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD], class_lcname))) { in phpdbg_find_breakpoint_method()
999 brake = zend_hash_find_ptr(class_table, lcname); in phpdbg_find_breakpoint_method()
H A Dphpdbg_utils.c190 func = zend_hash_find_ptr(&ce->function_table, lfname); in phpdbg_get_function()
193 func = zend_hash_find_ptr(EG(function_table), lfname); in phpdbg_get_function()
H A Dphpdbg_wait.c306 if ((original_ini = zend_hash_find_ptr(EG(ini_directives), key))) { in phpdbg_webdata_decompress()
/PHP-7.2/sapi/apache2handler/
H A Dapache_config.c125 if ((orig_per_dir_entry = zend_hash_find_ptr(target_ht, hash_key->key)) == NULL) { in should_overwrite_per_dir_entry()
/PHP-7.2/ext/dom/
H A Dphp_dom.c237 zend_class_entry *ce = zend_hash_find_ptr(doc_props->classmap, basece->name); in dom_get_doc_classmap()
337 hnd = zend_hash_find_ptr(obj->prop_handler, member_str); in dom_read_property()
367 hnd = zend_hash_find_ptr(obj->prop_handler, member_str); in dom_write_property()
389 hnd = zend_hash_find_ptr(obj->prop_handler, member_str); in dom_property_exists()
1081 intern->prop_handler = zend_hash_find_ptr(&classes, base_class->name); in dom_objects_set_class()
/PHP-7.2/ext/mysqli/
H A Dmysqli.c316 hnd = zend_hash_find_ptr(obj->prop_handler, Z_STR_P(member)); in mysqli_read_property()
353 hnd = zend_hash_find_ptr(obj->prop_handler, Z_STR_P(member)); in mysqli_write_property()
387 if ((p = zend_hash_find_ptr(obj->prop_handler, Z_STR_P(member))) != NULL) { in mysqli_object_has_property()
459 intern->prop_handler = zend_hash_find_ptr(&classes, mysqli_base_class->name); in mysqli_objects_new()
/PHP-7.2/ext/pdo_pgsql/
H A Dpgsql_statement.c284 if (stmt->bound_param_map && (namevar = zend_hash_find_ptr(stmt->bound_param_map, in pgsql_stmt_param_hook()
497 (param = zend_hash_find_ptr(stmt->bound_columns, cols[colno].name)) != NULL)) { in pgsql_stmt_describe()
/PHP-7.2/ext/xmlreader/
H A Dphp_xmlreader.c134 hnd = zend_hash_find_ptr(obj->prop_handler, Z_STR_P(member)); in xmlreader_get_property_ptr_ptr()
169 hnd = zend_hash_find_ptr(obj->prop_handler, Z_STR_P(member)); in xmlreader_read_property()
208 hnd = zend_hash_find_ptr(obj->prop_handler, Z_STR_P(member)); in xmlreader_write_property()
/PHP-7.2/ext/soap/
H A Dphp_packet_soap.c410 if ((hdr = zend_hash_find_ptr(hdrs, key.s)) != NULL) { in parse_packet_soap()
/PHP-7.2/ext/pdo/
H A Dpdo_stmt.c230 if ((param = zend_hash_find_ptr(stmt->bound_columns, in pdo_stmt_describe_columns()
2234 if ((fbc = zend_hash_find_ptr(&object->ce->function_table, lc_method_name)) == NULL) { in dbstmt_method_get()
2250 …if ((fbc = zend_hash_find_ptr(stmt->dbh->cls_methods[PDO_DBH_DRIVER_METHOD_KIND_STMT], lc_method_n… in dbstmt_method_get()
2631 if ((fbc = zend_hash_find_ptr(&pdo_row_ce->function_table, lc_method_name)) == NULL) { in row_method_get()
/PHP-7.2/ext/com_dotnet/
H A Dcom_handlers.c281 if (obj->method_cache == NULL || NULL == (fptr = zend_hash_find_ptr(obj->method_cache, name))) { in com_method_get()
/PHP-7.2/main/
H A Doutput.c552 if (NULL != (conflict = zend_hash_find_ptr(&php_output_handler_conflicts, handler->name))) { in php_output_handler_start()
557 …if (NULL != (rconflicts = zend_hash_find_ptr(&php_output_handler_reverse_conflicts, handler->name)… in php_output_handler_start()
/PHP-7.2/ext/snmp/
H A Dsnmp.c1929 hnd = zend_hash_find_ptr(&php_snmp_properties, Z_STR_P(member)); in php_snmp_read_property()
1967 hnd = zend_hash_find_ptr(&php_snmp_properties, Z_STR_P(member)); in php_snmp_write_property()
1996 if ((hnd = zend_hash_find_ptr(&php_snmp_properties, Z_STR_P(member))) != NULL) { in php_snmp_has_property()

Completed in 129 milliseconds

123