Home
last modified time | relevance | path

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

/PHP-7.1/ext/opcache/
H A Dzend_accelerator_module.c406 zend_function *old_function; local
415 …if ((old_function = zend_hash_str_find_ptr(CG(function_table), "file_exists", sizeof("file_exists"…
416 orig_file_exists = old_function->internal_function.handler;
417 old_function->internal_function.handler = accel_file_exists;
419 …if ((old_function = zend_hash_str_find_ptr(CG(function_table), "is_file", sizeof("is_file")-1)) !=…
420 orig_is_file = old_function->internal_function.handler;
421 old_function->internal_function.handler = accel_is_file;
423 …if ((old_function = zend_hash_str_find_ptr(CG(function_table), "is_readable", sizeof("is_readable"…
424 orig_is_readable = old_function->internal_function.handler;
425 old_function->internal_function.handler = accel_is_readable;
/PHP-7.1/Zend/
H A Dzend_compile.c1076 zend_function *old_function; in do_bind_function() local
1078 if ((old_function = zend_hash_find_ptr(function_table, Z_STR_P(lcname))) != NULL in do_bind_function()
1079 && old_function->type == ZEND_USER_FUNCTION in do_bind_function()
1080 && old_function->op_array.last > 0) { in do_bind_function()
1083 ZSTR_VAL(old_function->op_array.filename), in do_bind_function()
1084 old_function->op_array.opcodes[0].lineno); in do_bind_function()

Completed in 29 milliseconds