/PHP-7.1/ext/spl/ |
H A D | spl_engine.h | 59 zend_fcall_info_cache fcc; in spl_instantiate_arg_n() local 72 fcc.initialized = 1; in spl_instantiate_arg_n() 73 fcc.function_handler = func; in spl_instantiate_arg_n() 74 fcc.calling_scope = zend_get_executed_scope(); in spl_instantiate_arg_n() 75 fcc.called_scope = pce; in spl_instantiate_arg_n() 76 fcc.object = Z_OBJ_P(retval); in spl_instantiate_arg_n() 78 zend_call_function(&fci, &fcc); in spl_instantiate_arg_n()
|
H A D | php_spl.c | 463 zend_fcall_info_cache fcc; in PHP_FUNCTION() local 471 alfi.ce = fcc.calling_scope; in PHP_FUNCTION() 472 alfi.func_ptr = fcc.function_handler; in PHP_FUNCTION() 473 obj_ptr = fcc.object; in PHP_FUNCTION() 511 } else if (fcc.function_handler->type == ZEND_INTERNAL_FUNCTION && in PHP_FUNCTION() 512 fcc.function_handler->internal_function.handler == zif_spl_autoload_call) { in PHP_FUNCTION() 522 alfi.ce = fcc.calling_scope; in PHP_FUNCTION() 523 alfi.func_ptr = fcc.function_handler; in PHP_FUNCTION() 524 obj_ptr = fcc.object; in PHP_FUNCTION() 636 zend_fcall_info_cache fcc; in PHP_FUNCTION() local [all …]
|
H A D | spl_iterators.h | 123 zend_fcall_info_cache fcc; member
|
H A D | spl_iterators.c | 1579 …if (zend_parse_parameters_throw(ZEND_NUM_ARGS(), "Of", &zobject, ce_inner, &cfi->fci, &cfi->fcc) =… in spl_dual_it_construct() 1586 cfi->object = cfi->fcc.object; in spl_dual_it_construct() 1996 zend_fcall_info_cache *fcc = &intern->u.cbfilter->fcc; in SPL_METHOD() local 2016 if (zend_call_function(fci, fcc) != SUCCESS || Z_ISUNDEF_P(return_value)) { in SPL_METHOD() 3653 zend_fcall_info_cache fcc; member 3663 zend_fcall_info_call(&apply_info->fci, &apply_info->fcc, &retval, NULL); in spl_iterator_func_apply() 3681 …Of|a!", &apply_info.obj, zend_ce_traversable, &apply_info.fci, &apply_info.fcc, &apply_info.args) … in PHP_FUNCTION()
|
/PHP-7.1/Zend/ |
H A D | zend_API.c | 2893 fcc->called_scope = fcc->calling_scope; in zend_is_callable_check_class() 2896 fcc->called_scope = fcc->object ? fcc->object->ce : fcc->calling_scope; in zend_is_callable_check_class() 3040 ((fcc->object && fcc->calling_scope->__call) || in zend_is_callable_check_func() 3044 if (!zend_check_private(fcc->function_handler, fcc->object ? fcc->object->ce : scope, lmname)) { in zend_is_callable_check_func() 3060 if (fcc->object && fcc->calling_scope == ce_org) { in zend_is_callable_check_func() 3066 fcc->function_handler = fcc->object->handlers->get_method(&fcc->object, mname, NULL); in zend_is_callable_check_func() 3086 fcc->function_handler = fcc->calling_scope->get_static_method(fcc->calling_scope, mname); in zend_is_callable_check_func() 3178 fcc->called_scope = fcc->object->ce; in zend_is_callable_check_func() 3235 fcc->called_scope = fcc->calling_scope; in zend_is_callable_ex() 3320 fcc->called_scope = fcc->calling_scope; in zend_is_callable_ex() [all …]
|
H A D | zend_closures.c | 234 zend_fcall_info_cache fcc; in zend_closure_call_magic() local 238 memset(&fcc, 0, sizeof(zend_fcall_info_cache)); in zend_closure_call_magic() 243 fcc.initialized = 1; in zend_closure_call_magic() 252 fcc.object = Z_OBJ(EX(This)); in zend_closure_call_magic() 253 fcc.calling_scope = zend_get_executed_scope(); in zend_closure_call_magic() 255 zend_call_function(&fci, &fcc); in zend_closure_call_magic() 263 zend_fcall_info_cache fcc; in zend_create_closure_from_callable() local 268 if (!zend_is_callable_ex(callable, NULL, 0, NULL, &fcc, error)) { in zend_create_closure_from_callable() 272 mptr = fcc.function_handler; in zend_create_closure_from_callable() 286 if (fcc.object) { in zend_create_closure_from_callable() [all …]
|
H A D | zend_API.h | 315 … *object, uint check_flags, zend_string **callable_name, zend_fcall_info_cache *fcc, char **error); 495 … *callable, uint check_flags, zend_fcall_info *fci, zend_fcall_info_cache *fcc, zend_string **call… 538 ZEND_API int zend_fcall_info_call(zend_fcall_info *fci, zend_fcall_info_cache *fcc, zval *retval, z…
|
/PHP-7.1/ext/pdo_sqlite/ |
H A D | php_pdo_sqlite_int.h | 35 zend_fcall_info_cache fcc; member
|
H A D | sqlite_driver.c | 379 if ((ret = zend_call_function(&fc->fci, &fc->fcc)) == FAILURE) { in do_callback() 487 if ((ret = zend_call_function(&collation->fc.fci, &collation->fc.fcc)) == FAILURE) { in php_sqlite3_collation_callback()
|
/PHP-7.1/ext/sqlite3/ |
H A D | php_sqlite3_structs.h | 49 zend_fcall_info_cache fcc; member
|
/PHP-7.1/ext/reflection/ |
H A D | php_reflection.c | 1441 zend_fcall_info_cache fcc; in _reflection_export() local 1472 fcc.initialized = 1; in _reflection_export() 1998 fcc.initialized = 1; in ZEND_METHOD() 2001 fcc.called_scope = NULL; in ZEND_METHOD() 2002 fcc.object = NULL; in ZEND_METHOD() 2059 fcc.initialized = 1; in ZEND_METHOD() 2062 fcc.called_scope = NULL; in ZEND_METHOD() 2063 fcc.object = NULL; in ZEND_METHOD() 3329 fcc.initialized = 1; in reflection_method_invoke() 4888 fcc.initialized = 1; in ZEND_METHOD() [all …]
|
/PHP-7.1/ext/pdo/ |
H A D | pdo_stmt.c | 727 zend_fcall_info_cache *fcc = &stmt->fetch.cls.fcc; in do_fetch_class_prepare() local 745 fcc->initialized = 1; in do_fetch_class_prepare() 746 fcc->function_handler = ce->constructor; in do_fetch_class_prepare() 747 fcc->calling_scope = zend_get_executed_scope(); in do_fetch_class_prepare() 748 fcc->called_scope = ce; in do_fetch_class_prepare() 787 zend_fcall_info_cache *fcc = &stmt->fetch.cls.fcc; in do_fetch_func_prepare() local 951 stmt->fetch.cls.fcc.object = Z_OBJ_P(return_value); in do_fetch() 952 if (zend_call_function(&stmt->fetch.cls.fci, &stmt->fetch.cls.fcc) == FAILURE) { in do_fetch() 1143 stmt->fetch.cls.fcc.object = Z_OBJ_P(return_value); in do_fetch() 1144 if (zend_call_function(&stmt->fetch.cls.fci, &stmt->fetch.cls.fcc) == FAILURE) { in do_fetch() [all …]
|
H A D | pdo_dbh.c | 437 zend_fcall_info_cache fcc; in pdo_stmt_construct() local 450 fcc.initialized = 1; in pdo_stmt_construct() 451 fcc.function_handler = dbstmt_ce->constructor; in pdo_stmt_construct() 452 fcc.calling_scope = zend_get_executed_scope(); in pdo_stmt_construct() 453 fcc.called_scope = Z_OBJCE_P(object); in pdo_stmt_construct() 454 fcc.object = Z_OBJ_P(object); in pdo_stmt_construct() 456 if (zend_call_function(&fci, &fcc) != FAILURE) { in pdo_stmt_construct()
|
H A D | php_pdo_driver.h | 619 zend_fcall_info_cache fcc; member 626 zend_fcall_info_cache fcc; member
|
/PHP-7.1/ext/libxml/ |
H A D | php_libxml.h | 52 zend_fcall_info_cache fcc; member
|
H A D | libxml.c | 624 status = zend_call_function(fci, &LIBXML(entity_loader).fcc); in _php_libxml_external_entity_loader() 1114 zend_fcall_info_cache fcc; in PHP_FUNCTION() local 1115 if (zend_parse_parameters(ZEND_NUM_ARGS(), "f!", &fci, &fcc) in PHP_FUNCTION() 1129 LIBXML(entity_loader).fcc = fcc; in PHP_FUNCTION()
|
/PHP-7.1/main/streams/ |
H A D | userspace.c | 303 zend_fcall_info_cache fcc; in user_stream_create_object() local 314 fcc.initialized = 1; in user_stream_create_object() 315 fcc.function_handler = uwrap->ce->constructor; in user_stream_create_object() 316 fcc.calling_scope = zend_get_executed_scope(); in user_stream_create_object() 317 fcc.called_scope = Z_OBJCE_P(object); in user_stream_create_object() 318 fcc.object = Z_OBJ_P(object); in user_stream_create_object() 320 if (zend_call_function(&fci, &fcc) == FAILURE) { in user_stream_create_object()
|
/PHP-7.1/ext/mysqli/ |
H A D | mysqli.c | 1278 zend_fcall_info_cache fcc; in php_mysqli_fetch_into_hash() local 1312 fcc.initialized = 1; in php_mysqli_fetch_into_hash() 1313 fcc.function_handler = ce->constructor; in php_mysqli_fetch_into_hash() 1314 fcc.calling_scope = zend_get_executed_scope(); in php_mysqli_fetch_into_hash() 1315 fcc.called_scope = Z_OBJCE_P(return_value); in php_mysqli_fetch_into_hash() 1316 fcc.object = Z_OBJ_P(return_value); in php_mysqli_fetch_into_hash() 1318 if (zend_call_function(&fci, &fcc) == FAILURE) { in php_mysqli_fetch_into_hash()
|
/PHP-7.1/main/ |
H A D | php_output.h | 120 zend_fcall_info_cache fcc; member
|
H A D | output.c | 495 …if (SUCCESS == zend_fcall_info_init(output_handler, 0, &user->fci, &user->fcc, &handler_name, &err… in php_output_handler_create_user() 960 …if (SUCCESS == zend_fcall_info_call(&handler->func.user->fci, &handler->func.user->fcc, &retval, N… in php_output_handler_op()
|
/PHP-7.1/ext/pcre/pcrelib/ |
H A D | pcre_study.c | 662 if (caseless && (cd->ctypes[c] & ctype_letter) != 0) SET_BIT(cd->fcc[c]); in set_table_bit() 693 if (caseless && (cd->ctypes[c] & ctype_letter) != 0) SET_BIT(cd->fcc[c]); in set_table_bit() 1528 compile_block.fcc = tables + fcc_offset; in pcre_study()
|
H A D | pcre_compile.c | 2914 const pcre_uint8 *fcc, pcre_uint32 *list) in get_chr_property_list() argument 3005 list[3] = fcc[chr]; in get_chr_property_list() 3009 list[3] = (chr < 256) ? fcc[chr] : chr; in get_chr_property_list() 3011 list[3] = fcc[chr]; in get_chr_property_list() 3242 code = get_chr_property_list(code, utf, cd->fcc, list); in compare_opcodes() 3737 end = get_chr_property_list(code, utf, cd->fcc, list); in auto_possessify() 4253 SETBIT(classbits, cd->fcc[c]); in add_to_class() 9071 cd->fcc = tables + fcc_offset; in pcre_compile2() 9616 if (cd->fcc[re->first_char] != re->first_char) in pcre_compile2() 9625 && cd->fcc[re->first_char] != re->first_char) in pcre_compile2() [all …]
|
H A D | pcre_exec.c | 3523 foc = md->fcc[fc]; in match() 3535 foc = TABLE_GET(fc, md->fcc, fc); in match() 3688 och = TABLE_GET(ch, md->fcc, ch); in match() 3697 if (ch == c || (op == OP_NOTI && TABLE_GET(ch, md->fcc, ch) == c)) in match() 3804 foc = TABLE_GET(fc, md->fcc, fc); in match() 6577 md->fcc = tables + fcc_offset; in pcre_exec() 6704 first_char2 = TABLE_GET(first_char, md->fcc, first_char); in pcre_exec() 6726 req_char2 = TABLE_GET(req_char, md->fcc, req_char); in pcre_exec()
|
H A D | pcre_internal.h | 2427 const pcre_uint8 *fcc; /* Points to case-flipping table */ member 2529 const pcre_uint8 *fcc; /* Points to case-flipping table */ member
|
/PHP-7.1/ext/phar/ |
H A D | util.c | 1391 zend_fcall_info_cache fcc; in phar_call_openssl_signverify() local 1414 if (FAILURE == zend_fcall_info_init(&openssl, 0, &fci, &fcc, NULL, NULL)) { in phar_call_openssl_signverify() 1434 if (FAILURE == zend_call_function(&fci, &fcc)) { in phar_call_openssl_signverify()
|