Home
last modified time | relevance | path

Searched refs:old_function (Results 1 – 2 of 2) sorted by relevance

/PHP-8.2/ext/opcache/
H A Dzend_accelerator_module.c418 zend_function *old_function; local
425 …if ((old_function = zend_hash_str_find_ptr(CG(function_table), "file_exists", sizeof("file_exists"…
426 orig_file_exists = old_function->internal_function.handler;
427 old_function->internal_function.handler = accel_file_exists;
429 …if ((old_function = zend_hash_str_find_ptr(CG(function_table), "is_file", sizeof("is_file")-1)) !=…
430 orig_is_file = old_function->internal_function.handler;
431 old_function->internal_function.handler = accel_is_file;
433 …if ((old_function = zend_hash_str_find_ptr(CG(function_table), "is_readable", sizeof("is_readable"…
434 orig_is_readable = old_function->internal_function.handler;
435 old_function->internal_function.handler = accel_is_readable;
/PHP-8.2/Zend/
H A Dzend_compile.c1214 zend_function *old_function; in do_bind_function_error() local
1217 old_function = (zend_function*)Z_PTR_P(zv); in do_bind_function_error()
1218 if (old_function->type == ZEND_USER_FUNCTION in do_bind_function_error()
1219 && old_function->op_array.last > 0) { in do_bind_function_error()
1221 op_array ? ZSTR_VAL(op_array->function_name) : ZSTR_VAL(old_function->common.function_name), in do_bind_function_error()
1222 ZSTR_VAL(old_function->op_array.filename), in do_bind_function_error()
1223 old_function->op_array.opcodes[0].lineno); in do_bind_function_error()
1226 op_array ? ZSTR_VAL(op_array->function_name) : ZSTR_VAL(old_function->common.function_name)); in do_bind_function_error()

Completed in 73 milliseconds