Home
last modified time | relevance | path

Searched refs:func (Results 176 – 200 of 266) sorted by relevance

1234567891011

/PHP-7.4/ext/standard/
H A Dbase64.c342 # define ZEND_INTRIN_SSSE3_FUNC_DECL(func) ZEND_API func __attribute__((target("ssse3"))) argument
344 # define ZEND_INTRIN_SSSE3_FUNC_DECL(func) ZEND_API func argument
353 # define ZEND_INTRIN_SSSE3_FUNC_DECL(func) ZEND_API func __attribute__((target("ssse3"))) argument
355 # define ZEND_INTRIN_SSSE3_FUNC_DECL(func) ZEND_API func argument
/PHP-7.4/Zend/
H A Dzend_inheritance.c81 memcpy(new_function, func, sizeof(zend_op_array)); in zend_duplicate_user_function()
106 if (func->op_array.refcount) { in zend_duplicate_function()
107 (*func->op_array.refcount)++; in zend_duplicate_function()
112 return func; in zend_duplicate_function()
114 return zend_duplicate_user_function(func); in zend_duplicate_function()
1121 zend_function *func; in zend_do_inheritance_ex() local
1330 do_inherit_method(key, func, ce, 0, 1); in zend_do_inheritance_ex()
1334 do_inherit_method(key, func, ce, 0, 0); in zend_do_inheritance_ex()
1385 zend_function *func; in do_interface_implementation() local
1394 do_inherit_method(key, func, ce, 1, 0); in do_interface_implementation()
[all …]
H A Dzend_object_handlers.h249 #define zend_free_trampoline(func) do { \ argument
250 if ((func) == &EG(trampoline)) { \
253 efree(func); \
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_php_trace.c83 if (0 > fpm_trace_get_long(execute_data + offsetof(zend_execute_data, func), &l)) { in fpm_php_trace_dump()
134 if (0 > fpm_trace_get_long(prev + offsetof(zend_execute_data, func), &l)) { in fpm_php_trace_dump()
/PHP-7.4/ext/phar/
H A Dfunc_interceptors.c1007 #define PHAR_INTERCEPT(func) \ argument
1008 PHAR_G(orig_##func) = NULL; \
1009 if (NULL != (orig = zend_hash_str_find_ptr(CG(function_table), #func, sizeof(#func)-1))) { \
1010 PHAR_G(orig_##func) = orig->internal_function.handler; \
1011 orig->internal_function.handler = phar_##func; \
1045 #define PHAR_RELEASE(func) \ argument
1046 …if (PHAR_G(orig_##func) && NULL != (orig = zend_hash_str_find_ptr(CG(function_table), #func, sizeo…
1047 orig->internal_function.handler = PHAR_G(orig_##func); \
1049 PHAR_G(orig_##func) = NULL;
/PHP-7.4/ext/gd/tests/
H A Dbug66005.phpt28 include_once __DIR__ . '/func.inc';
H A Dbug47946.phpt43 require_once __DIR__ . '/func.inc';
H A Dbug50194.phpt11 require_once __DIR__ . DIRECTORY_SEPARATOR . 'func.inc';
/PHP-7.4/ext/tidy/tests/
H A D024.phpt11 // more info at http://sf.net/tracker/?func=detail&atid=390963&aid=1598422&group_id=27659
H A D027.phpt8 // bug report from http://sf.net/tracker/?func=detail&atid=390963&aid=1641868&group_id=27659
/PHP-7.4/ext/com_dotnet/
H A Dcom_handlers.c276 ((zend_internal_function*)EX(func))->function_name, in PHP_FUNCTION()
284 zend_function *func; in com_method_get() local
373 func = emalloc(sizeof(*fptr)); in com_method_get()
374 memcpy(func, fptr, sizeof(*fptr)); in com_method_get()
376 return func; in com_method_get()
403 …if (SUCCESS == php_com_do_invoke_byref(obj, (zend_internal_function*)EX(func), DISPATCH_METHOD|DIS… in com_call_method()
/PHP-7.4/ext/mbstring/tests/
H A Dbug45923.phpt8 function section($func, $haystack, $needle)
10 echo "\n------- $func -----------\n\n";
13 var_dump($func($haystack,$needle,$offset));
/PHP-7.4/ext/zlib/tests/
H A Dgzgetc_basic.phpt8 include 'func.inc';
H A Dgzgetc_basic_1.phpt8 include 'func.inc';
H A Dgzencode_variation2-win32.phpt14 include 'func.inc';
/PHP-7.4/ext/session/
H A Dmod_user.c28 static void ps_call_handler(zval *func, int argc, zval *argv, zval *retval) in ps_call_handler() argument
38 if (call_user_function(NULL, NULL, func, retval, argc, argv) == FAILURE) { in ps_call_handler()
/PHP-7.4/ext/standard/tests/file/
H A Duserstreams_003.phpt30 function test($name, $fd, $return_value, $func, $args, $expected_option, $expected_value) {
36 var_dump(call_user_func_array($func, $args));
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_info.c182 if (!EG(current_execute_data) || !EG(current_execute_data)->func) { in phpdbg_print_symbols()
211 zend_op_array *ops = &EG(current_execute_data)->func->op_array; in phpdbg_print_symbols()
309 …in_executor = PHPDBG_G(in_execution) && EG(current_execute_data) && EG(current_execute_data)->func; in PHPDBG_INFO()
311 zend_op_array *ops = in_executor ? &EG(current_execute_data)->func->op_array : PHPDBG_G(ops); in PHPDBG_INFO()
H A Dphpdbg_prompt.c612 const zend_op_array *op_array = &ex->func->op_array; in phpdbg_skip_line_helper()
657 const zend_op_array *op_array = &ex->func->op_array; in phpdbg_seek_to_end()
1665 …urrent_execute_data) && EG(current_execute_data)->func && ZEND_USER_CODE(EG(current_execute_data)-…
1709 phpdbg_resolve_op_array_breaks(&execute_data->func->op_array); in phpdbg_execute_ex()
1733 if (!prev_ex->func || !ZEND_USER_CODE(prev_ex->func->common.type)) { in phpdbg_execute_ex()
1863 execute_data->call->func->type == ZEND_USER_FUNCTION) { in phpdbg_execute_ex()
1889 if (data->func) { in phpdbg_force_interruption()
1890 if (ZEND_USER_CODE(data->func->type)) { in phpdbg_force_interruption()
1891 …in %s:%u", data->opline, (data->opline - data->func->op_array.opcodes) / sizeof(data->opline), dat… in phpdbg_force_interruption()
1892 } else if (data->func->internal_function.function_name) { in phpdbg_force_interruption()
[all …]
H A Dphpdbg.c339 while (ex && ex->func && !ZEND_USER_CODE(ex->func->type)) { in PHP_FUNCTION()
526 zend_function *func; in PHP_FUNCTION() local
566 ZEND_HASH_FOREACH_STR_KEY_PTR(EG(function_table), name, func) { in PHP_FUNCTION()
567 if (func->type == ZEND_USER_FUNCTION) { in PHP_FUNCTION()
568 if (zend_hash_exists(files, func->op_array.filename)) { in PHP_FUNCTION()
569 insert_ht = phpdbg_add_empty_array(Z_ARR_P(return_value), func->op_array.filename); in PHP_FUNCTION()
575 phpdbg_oplog_fill_executable(&func->op_array, insert_ht, by_opcode); in PHP_FUNCTION()
583 ZEND_HASH_FOREACH_PTR(&ce->function_table, func) { in PHP_FUNCTION()
584 if (func->type == ZEND_USER_FUNCTION && zend_hash_exists(files, func->op_array.filename)) { in PHP_FUNCTION()
588 …EN(func->op_array.function_name) + 2, "%.*s::%.*s", (int) ZSTR_LEN(name), ZSTR_VAL(name), (int) ZS… in PHP_FUNCTION()
[all …]
H A Dphpdbg_utils.c173 zend_function *func = NULL; in phpdbg_get_function() local
190 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()
197 return func; in phpdbg_get_function()
323 if (!EG(current_execute_data) || !EG(current_execute_data)->func) { in phpdbg_rebuild_symtable()
741 zend_op_array *op_array = &execute_data->func->op_array; in phpdbg_check_caught_ex()
/PHP-7.4/ext/phar/phar/
H A Dclicommand.inc122 $func = $prefix . $sub . '_' . $what;
124 if ($r->hasMethod($func)) {
128 $a[$what][$sub] = /*$m->class . '::' .*/ $func;
242 private function cli_help_get_args($func, $l, $sp, $required)
245 foreach(call_user_func($func, $l, $sp) as $arg => $conf) {
/PHP-7.4/ext/sqlite3/
H A Dphp_sqlite3_structs.h57 zval func, step, fini; member
/PHP-7.4/Zend/tests/
H A Dclosure_061.phpt8 function func($arg) { }
21 ['func', [
111 func()
/PHP-7.4/main/
H A Dphp_output.h135 } func; member
242 …_register(const char *handler_name, size_t handler_name_len, php_output_handler_alias_ctor_t func);

Completed in 74 milliseconds

1234567891011