Home
last modified time | relevance | path

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

123

/PHP-7.3/ext/opcache/Optimizer/
H A Dpass1_5.c199 if ((ce = zend_hash_find_ptr(EG(class_table), in zend_optimizer_pass1()
227 if ((cc = zend_hash_find_ptr(&ce->constants_table, in zend_optimizer_pass1()
353 if ((func = zend_hash_find_ptr(EG(function_table), lc_name)) != NULL in zend_optimizer_pass1()
389 zend_module_entry *m = zend_hash_find_ptr(&module_registry, in zend_optimizer_pass1()
H A Dzend_optimizer.c967 if (script && (ce = zend_hash_find_ptr(&script->class_table, class_name))) { in get_class_entry_from_op1()
969 } else if ((ce = zend_hash_find_ptr(EG(class_table), class_name))) { in get_class_entry_from_op1()
996 if (script && (func = zend_hash_find_ptr(&script->function_table, function_name)) != NULL) { in zend_optimizer_get_called_func()
998 } else if ((func = zend_hash_find_ptr(EG(function_table), function_name)) != NULL) { in zend_optimizer_get_called_func()
1014 if (script && (func = zend_hash_find_ptr(&script->function_table, Z_STR_P(function_name)))) { in zend_optimizer_get_called_func()
1033 return zend_hash_find_ptr(&ce->function_table, func_name); in zend_optimizer_get_called_func()
1042 zend_function *fbc = zend_hash_find_ptr( in zend_optimizer_get_called_func()
1437 func = zend_hash_find_ptr( in zend_adjust_fcall_stack_size()
1496 if ((orig_op_array = zend_hash_find_ptr(&op_array->scope->function_table, name)) != NULL) { in zend_optimize_script()
1594 if ((orig_op_array = zend_hash_find_ptr(&op_array->scope->function_table, name)) != NULL) { in zend_optimize_script()
[all …]
H A Descape_analysis.c153 zend_class_entry *ce = script ? zend_hash_find_ptr(&script->class_table, lcname) : NULL; in get_class_entry()
158 ce = zend_hash_find_ptr(CG(class_table), lcname); in get_class_entry()
/PHP-7.3/ext/standard/
H A Dbrowscap.c227 zend_string *interned = zend_hash_find_ptr(&ctx->str_interned, str); in browscap_intern_str()
246 interned = zend_hash_find_ptr(&ctx->str_interned, lcname); in browscap_intern_str_ci()
750 found_entry = zend_hash_find_ptr(bdata->htab, lookup_browser_name); in PHP_FUNCTION()
773 found_entry = zend_hash_find_ptr(bdata->htab, found_entry->parent); in PHP_FUNCTION()
/PHP-7.3/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.3/Zend/
H A Dzend_ini.c340 if ((ini_entry = zend_hash_find_ptr(EG(ini_directives), name)) == NULL) { in zend_alter_ini_entry_ex()
389 if ((ini_entry = zend_hash_find_ptr(EG(ini_directives), name)) == NULL || in zend_restore_ini_entry()
501 ini_entry = zend_hash_find_ptr(EG(ini_directives), name); in zend_ini_get_value()
H A Dzend_constants.c225 c = zend_hash_find_ptr(EG(zend_constants), haltname); in zend_get_special_constant()
372 c = zend_hash_find_ptr(&ce->constants_table, constant_name); in zend_get_constant_ex()
H A Dzend_builtin_functions.c1401 if ((property_info = zend_hash_find_ptr(&ce->properties_info, property)) != NULL in ZEND_FUNCTION()
1441 ce = zend_hash_find_ptr(EG(class_table), lc_name); in ZEND_FUNCTION()
1477 ce = zend_hash_find_ptr(EG(class_table), lc_name); in ZEND_FUNCTION()
1514 ce = zend_hash_find_ptr(EG(class_table), lc_name); in ZEND_FUNCTION()
1548 func = zend_hash_find_ptr(EG(function_table), lcname); in ZEND_FUNCTION()
2713 module = zend_hash_find_ptr(&module_registry, lcname); in ZEND_FUNCTION()
H A Dzend_compile.c845 result = zend_hash_find_ptr(ht, lcname); in zend_hash_find_ptr_lc()
878 import_name = zend_hash_find_ptr(current_import_sub, name); in zend_resolve_non_class_name()
1383 c = zend_hash_find_ptr(EG(zend_constants), name); in zend_try_ct_eval_const()
1541 cc = zend_hash_find_ptr(&CG(active_class_entry)->constants_table, name); in zend_try_ct_eval_class_const()
1545 cc = zend_hash_find_ptr(&ce->constants_table, name); in zend_try_ct_eval_class_const()
1652 if ((auto_global = zend_hash_find_ptr(CG(auto_globals), name)) != NULL) { in zend_is_auto_global()
3551 fbc = zend_hash_find_ptr(CG(function_table), lcname); in zend_try_compile_ct_bound_init_user_func()
4016 fbc = zend_hash_find_ptr(CG(function_table), lcname); in zend_compile_call()
4156 ce = zend_hash_find_ptr(CG(class_table), lcname); in zend_compile_static_call()
4168 fbc = zend_hash_find_ptr(&ce->function_table, lcname); in zend_compile_static_call()
[all …]
/PHP-7.3/sapi/apache2handler/
H A Dapache_config.c123 if ((orig_per_dir_entry = zend_hash_find_ptr(target_ht, hash_key->key)) == NULL) { in should_overwrite_per_dir_entry()
/PHP-7.3/ext/dom/
H A Dphp_dom.c235 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()
366 hnd = zend_hash_find_ptr(obj->prop_handler, member_str); in dom_write_property()
387 hnd = zend_hash_find_ptr(obj->prop_handler, member_str); in dom_property_exists()
1078 intern->prop_handler = zend_hash_find_ptr(&classes, base_class->name); in dom_objects_set_class()
/PHP-7.3/ext/mysqli/
H A Dmysqli.c313 hnd = zend_hash_find_ptr(obj->prop_handler, Z_STR_P(member)); in mysqli_read_property()
348 hnd = zend_hash_find_ptr(obj->prop_handler, Z_STR_P(member)); in mysqli_write_property()
381 if ((p = zend_hash_find_ptr(obj->prop_handler, Z_STR_P(member))) != NULL) { in mysqli_object_has_property()
451 intern->prop_handler = zend_hash_find_ptr(&classes, mysqli_base_class->name); in mysqli_objects_new()
/PHP-7.3/ext/pdo_pgsql/
H A Dpgsql_statement.c282 if (stmt->bound_param_map && (namevar = zend_hash_find_ptr(stmt->bound_param_map, in pgsql_stmt_param_hook()
495 (param = zend_hash_find_ptr(stmt->bound_columns, cols[colno].name)) != NULL)) { in pgsql_stmt_describe()
/PHP-7.3/ext/xmlreader/
H A Dphp_xmlreader.c132 hnd = zend_hash_find_ptr(obj->prop_handler, Z_STR_P(member)); in xmlreader_get_property_ptr_ptr()
163 hnd = zend_hash_find_ptr(obj->prop_handler, Z_STR_P(member)); in xmlreader_read_property()
198 hnd = zend_hash_find_ptr(obj->prop_handler, Z_STR_P(member)); in xmlreader_write_property()
/PHP-7.3/ext/phar/
H A Dstream.c109 …est_init) && HT_FLAGS(&PHAR_G(phar_fname_map)) && NULL == (pphar = zend_hash_find_ptr(&(PHAR_G(pha… in phar_parse_url()
627 if (NULL == (entry = zend_hash_find_ptr(&phar->manifest, str_key))) { in phar_wrapper_stat()
692 pphar = zend_hash_find_ptr(&(PHAR_G(phar_fname_map)), resource->host); in phar_wrapper_unlink()
/PHP-7.3/ext/soap/
H A Dphp_packet_soap.c409 if ((hdr = zend_hash_find_ptr(hdrs, key.s)) != NULL) { in parse_packet_soap()
/PHP-7.3/ext/reflection/
H A Dphp_reflection.c735 …if ((overwrites = zend_hash_find_ptr(&fptr->common.scope->parent->function_table, lc_name)) != NUL… in _function_string()
1109 module = zend_hash_find_ptr(&module_registry, lcname); in reflection_extension_factory()
1239 while (tmp_ce && (tmp_info = zend_hash_find_ptr(&tmp_ce->properties_info, name)) == NULL) { in reflection_property_factory()
3549 if ((constant = zend_hash_find_ptr(&ce->constants_table, constname)) == NULL) { in ZEND_METHOD()
4234 if ((property_info = zend_hash_find_ptr(&ce->properties_info, name)) != NULL) { in ZEND_METHOD()
4269 if ((property_info = zend_hash_find_ptr(&ce->properties_info, name)) != NULL) { in ZEND_METHOD()
4496 if ((c = zend_hash_find_ptr(&ce->constants_table, name)) == NULL) { in ZEND_METHOD()
4517 if ((constant = zend_hash_find_ptr(&ce->constants_table, name)) == NULL) { in ZEND_METHOD()
5301 …if ((property_info = zend_hash_find_ptr(&ce->properties_info, name)) == NULL || (property_info->fl… in ZEND_METHOD()
5319 while (tmp_ce && (tmp_info = zend_hash_find_ptr(&tmp_ce->properties_info, name)) == NULL) { in ZEND_METHOD()
[all …]
/PHP-7.3/ext/spl/
H A Dphp_spl.c71 ce = zend_hash_find_ptr(EG(class_table), lc_name); in spl_find_ce_by_name()
766 if ((fptr = zend_hash_find_ptr(EG(function_table), ZSTR_KNOWN(ZEND_STR_MAGIC_AUTOLOAD)))) { in PHP_FUNCTION()
/PHP-7.3/ext/pdo/
H A Dpdo_stmt.c232 if ((param = zend_hash_find_ptr(stmt->bound_columns, in pdo_stmt_describe_columns()
2236 if ((fbc = zend_hash_find_ptr(&object->ce->function_table, lc_method_name)) == NULL) { in dbstmt_method_get()
2252 …if ((fbc = zend_hash_find_ptr(stmt->dbh->cls_methods[PDO_DBH_DRIVER_METHOD_KIND_STMT], lc_method_n… in dbstmt_method_get()
2633 if ((fbc = zend_hash_find_ptr(&pdo_row_ce->function_table, lc_method_name)) == NULL) { in row_method_get()
/PHP-7.3/ext/com_dotnet/
H A Dcom_handlers.c277 if (obj->method_cache == NULL || NULL == (fptr = zend_hash_find_ptr(obj->method_cache, name))) { in com_method_get()
/PHP-7.3/main/
H A Doutput.c550 if (NULL != (conflict = zend_hash_find_ptr(&php_output_handler_conflicts, handler->name))) { in php_output_handler_start()
555 …if (NULL != (rconflicts = zend_hash_find_ptr(&php_output_handler_reverse_conflicts, handler->name)… in php_output_handler_start()

Completed in 146 milliseconds

123