Home
last modified time | relevance | path

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

/PHP-7.4/ext/opcache/
H A Dzend_accelerator_module.c405 zend_function *old_function; local
412 …if ((old_function = zend_hash_str_find_ptr(CG(function_table), "file_exists", sizeof("file_exists"…
413 orig_file_exists = old_function->internal_function.handler;
414 old_function->internal_function.handler = accel_file_exists;
416 …if ((old_function = zend_hash_str_find_ptr(CG(function_table), "is_file", sizeof("is_file")-1)) !=…
417 orig_is_file = old_function->internal_function.handler;
418 old_function->internal_function.handler = accel_is_file;
420 …if ((old_function = zend_hash_str_find_ptr(CG(function_table), "is_readable", sizeof("is_readable"…
421 orig_is_readable = old_function->internal_function.handler;
422 old_function->internal_function.handler = accel_is_readable;
/PHP-7.4/Zend/
H A Dzend_compile.c1025 zend_function *old_function; in do_bind_function_error() local
1028 old_function = (zend_function*)Z_PTR_P(zv); in do_bind_function_error()
1029 if (old_function->type == ZEND_USER_FUNCTION in do_bind_function_error()
1030 && old_function->op_array.last > 0) { in do_bind_function_error()
1032 op_array ? ZSTR_VAL(op_array->function_name) : ZSTR_VAL(old_function->common.function_name), in do_bind_function_error()
1033 ZSTR_VAL(old_function->op_array.filename), in do_bind_function_error()
1034 old_function->op_array.opcodes[0].lineno); in do_bind_function_error()
1037 op_array ? ZSTR_VAL(op_array->function_name) : ZSTR_VAL(old_function->common.function_name)); in do_bind_function_error()

Completed in 30 milliseconds