Home
last modified time | relevance | path

Searched refs:fcc (Results 1 – 25 of 30) sorted by relevance

12

/PHP-7.0/ext/spl/
H A Dspl_engine.h59 zend_fcall_info_cache fcc; in spl_instantiate_arg_n() local
74 fcc.initialized = 1; in spl_instantiate_arg_n()
75 fcc.function_handler = func; in spl_instantiate_arg_n()
76 fcc.calling_scope = EG(scope); in spl_instantiate_arg_n()
77 fcc.called_scope = pce; in spl_instantiate_arg_n()
78 fcc.object = Z_OBJ_P(retval); in spl_instantiate_arg_n()
80 zend_call_function(&fci, &fcc); in spl_instantiate_arg_n()
H A Dphp_spl.c464 zend_fcall_info_cache fcc; in PHP_FUNCTION() local
472 alfi.ce = fcc.calling_scope; in PHP_FUNCTION()
473 alfi.func_ptr = fcc.function_handler; in PHP_FUNCTION()
474 obj_ptr = fcc.object; in PHP_FUNCTION()
512 } else if (fcc.function_handler->type == ZEND_INTERNAL_FUNCTION && in PHP_FUNCTION()
513 fcc.function_handler->internal_function.handler == zif_spl_autoload_call) { in PHP_FUNCTION()
523 alfi.ce = fcc.calling_scope; in PHP_FUNCTION()
524 alfi.func_ptr = fcc.function_handler; in PHP_FUNCTION()
525 obj_ptr = fcc.object; in PHP_FUNCTION()
637 zend_fcall_info_cache fcc; in PHP_FUNCTION() local
[all …]
H A Dspl_iterators.h123 zend_fcall_info_cache fcc; member
H A Dspl_iterators.c1582 …if (zend_parse_parameters_throw(ZEND_NUM_ARGS(), "Of", &zobject, ce_inner, &cfi->fci, &cfi->fcc) =… in spl_dual_it_construct()
1589 cfi->object = cfi->fcc.object; in spl_dual_it_construct()
2006 zend_fcall_info_cache *fcc = &intern->u.cbfilter->fcc; in SPL_METHOD() local
2026 if (zend_call_function(fci, fcc) != SUCCESS || Z_ISUNDEF_P(return_value)) { in SPL_METHOD()
3640 zend_fcall_info_cache fcc; member
3650 zend_fcall_info_call(&apply_info->fci, &apply_info->fcc, &retval, NULL); in spl_iterator_func_apply()
3668 …Of|a!", &apply_info.obj, zend_ce_traversable, &apply_info.fci, &apply_info.fcc, &apply_info.args) … in PHP_FUNCTION()
/PHP-7.0/Zend/
H A Dzend_API.c2896 fcc->called_scope = fcc->calling_scope; in zend_is_callable_check_class()
2899 fcc->called_scope = fcc->object ? fcc->object->ce : fcc->calling_scope; in zend_is_callable_check_class()
3021 fcc->function_handler = fcc->calling_scope->constructor; in zend_is_callable_check_func()
3040 ((fcc->object && fcc->calling_scope->__call) || in zend_is_callable_check_func()
3058 if (fcc->object && fcc->calling_scope == ce_org) { in zend_is_callable_check_func()
3064 fcc->function_handler = fcc->object->handlers->get_method(&fcc->object, mname, NULL); in zend_is_callable_check_func()
3084 fcc->function_handler = fcc->calling_scope->get_static_method(fcc->calling_scope, mname); in zend_is_callable_check_func()
3174 fcc->called_scope = fcc->object->ce; in zend_is_callable_check_func()
3231 fcc->called_scope = fcc->calling_scope; in zend_is_callable_ex()
3316 fcc->called_scope = fcc->calling_scope; in zend_is_callable_ex()
[all …]
H A Dzend_API.h313 … *object, uint check_flags, zend_string **callable_name, zend_fcall_info_cache *fcc, char **error);
487 … *callable, uint check_flags, zend_fcall_info *fci, zend_fcall_info_cache *fcc, zend_string **call…
530 ZEND_API int zend_fcall_info_call(zend_fcall_info *fci, zend_fcall_info_cache *fcc, zval *retval, z…
/PHP-7.0/ext/pdo_sqlite/
H A Dphp_pdo_sqlite_int.h35 zend_fcall_info_cache fcc; member
H A Dsqlite_driver.c381 if ((ret = zend_call_function(&fc->fci, &fc->fcc)) == FAILURE) { in do_callback()
491 if ((ret = zend_call_function(&collation->fc.fci, &collation->fc.fcc)) == FAILURE) { in php_sqlite3_collation_callback()
/PHP-7.0/ext/reflection/
H A Dphp_reflection.c1431 fcc.initialized = 1; in _reflection_export()
1960 fcc.initialized = 1; in ZEND_METHOD()
1963 fcc.called_scope = NULL; in ZEND_METHOD()
1964 fcc.object = NULL; in ZEND_METHOD()
2020 fcc.initialized = 1; in ZEND_METHOD()
2024 fcc.object = NULL; in ZEND_METHOD()
3252 fcc.initialized = 1; in ZEND_METHOD()
3256 fcc.object = object; in ZEND_METHOD()
3359 fcc.initialized = 1; in ZEND_METHOD()
4663 fcc.initialized = 1; in ZEND_METHOD()
[all …]
/PHP-7.0/ext/sqlite3/
H A Dphp_sqlite3_structs.h49 zend_fcall_info_cache fcc; member
/PHP-7.0/ext/pdo/
H A Dpdo_stmt.c733 zend_fcall_info_cache *fcc = &stmt->fetch.cls.fcc; in do_fetch_class_prepare() local
753 fcc->initialized = 1; in do_fetch_class_prepare()
754 fcc->function_handler = ce->constructor; in do_fetch_class_prepare()
755 fcc->calling_scope = EG(scope); in do_fetch_class_prepare()
756 fcc->called_scope = ce; in do_fetch_class_prepare()
795 zend_fcall_info_cache *fcc = &stmt->fetch.cls.fcc; in do_fetch_func_prepare() local
959 stmt->fetch.cls.fcc.object = Z_OBJ_P(return_value); in do_fetch()
960 if (zend_call_function(&stmt->fetch.cls.fci, &stmt->fetch.cls.fcc) == FAILURE) { in do_fetch()
1151 stmt->fetch.cls.fcc.object = Z_OBJ_P(return_value); in do_fetch()
1152 if (zend_call_function(&stmt->fetch.cls.fci, &stmt->fetch.cls.fcc) == FAILURE) { in do_fetch()
[all …]
H A Dpdo_dbh.c437 zend_fcall_info_cache fcc; in pdo_stmt_construct() local
452 fcc.initialized = 1; in pdo_stmt_construct()
453 fcc.function_handler = dbstmt_ce->constructor; in pdo_stmt_construct()
454 fcc.calling_scope = EG(scope); in pdo_stmt_construct()
455 fcc.called_scope = Z_OBJCE_P(object); in pdo_stmt_construct()
456 fcc.object = Z_OBJ_P(object); in pdo_stmt_construct()
458 if (zend_call_function(&fci, &fcc) != FAILURE) { in pdo_stmt_construct()
H A Dphp_pdo_driver.h619 zend_fcall_info_cache fcc; member
626 zend_fcall_info_cache fcc; member
/PHP-7.0/ext/libxml/
H A Dphp_libxml.h52 zend_fcall_info_cache fcc; member
H A Dlibxml.c624 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.0/main/streams/
H A Duserspace.c303 zend_fcall_info_cache fcc; in user_stream_create_object() local
316 fcc.initialized = 1; in user_stream_create_object()
317 fcc.function_handler = uwrap->ce->constructor; in user_stream_create_object()
318 fcc.calling_scope = EG(scope); in user_stream_create_object()
319 fcc.called_scope = Z_OBJCE_P(object); in user_stream_create_object()
320 fcc.object = Z_OBJ_P(object); in user_stream_create_object()
322 if (zend_call_function(&fci, &fcc) == FAILURE) { in user_stream_create_object()
/PHP-7.0/ext/mysqli/
H A Dmysqli.c1285 zend_fcall_info_cache fcc; in php_mysqli_fetch_into_hash() local
1321 fcc.initialized = 1; in php_mysqli_fetch_into_hash()
1322 fcc.function_handler = ce->constructor; in php_mysqli_fetch_into_hash()
1323 fcc.calling_scope = EG(scope); in php_mysqli_fetch_into_hash()
1324 fcc.called_scope = Z_OBJCE_P(return_value); in php_mysqli_fetch_into_hash()
1325 fcc.object = Z_OBJ_P(return_value); in php_mysqli_fetch_into_hash()
1327 if (zend_call_function(&fci, &fcc) == FAILURE) { in php_mysqli_fetch_into_hash()
/PHP-7.0/main/
H A Dphp_output.h120 zend_fcall_info_cache fcc; member
H A Doutput.c495 …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.0/ext/pcre/pcrelib/
H A Dpcre_study.c662 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 Dpcre_compile.c2914 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()
9062 cd->fcc = tables + fcc_offset; in pcre_compile2()
9607 if (cd->fcc[re->first_char] != re->first_char) in pcre_compile2()
9616 && cd->fcc[re->first_char] != re->first_char) in pcre_compile2()
[all …]
H A Dpcre_exec.c3523 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 Dpcre_internal.h2427 const pcre_uint8 *fcc; /* Points to case-flipping table */ member
2529 const pcre_uint8 *fcc; /* Points to case-flipping table */ member
/PHP-7.0/ext/phar/
H A Dutil.c1398 zend_fcall_info_cache fcc; in phar_call_openssl_signverify() local
1421 if (FAILURE == zend_fcall_info_init(&openssl, 0, &fci, &fcc, NULL, NULL)) { in phar_call_openssl_signverify()
1441 if (FAILURE == zend_call_function(&fci, &fcc)) { in phar_call_openssl_signverify()
/PHP-7.0/ext/pgsql/
H A Dpgsql.c2780 zend_fcall_info_cache fcc; local
2816 fcc.initialized = 1;
2817 fcc.function_handler = ce->constructor;
2818 fcc.calling_scope = EG(scope);
2819 fcc.called_scope = Z_OBJCE_P(return_value);
2820 fcc.object = Z_OBJ_P(return_value);
2822 if (zend_call_function(&fci, &fcc) == FAILURE) {

Completed in 258 milliseconds

12