| /PHP_TRUNK/ext/pdo/ |
| H A D | pdo_dbh.c | 459 zend_fcall_info_cache fcc; local 485 fcc.initialized = 1; 486 fcc.function_handler = dbstmt_ce->constructor; 487 fcc.calling_scope = EG(scope); 488 fcc.called_scope = Z_OBJCE_P(object); 489 fcc.object_ptr = object; 491 if (zend_call_function(&fci, &fcc TSRMLS_CC) == FAILURE) {
|
| H A D | php_pdo_driver.h | 613 zend_fcall_info_cache fcc; member in struct:_pdo_stmt_t::__anon144::__anon145 620 zend_fcall_info_cache fcc; member in struct:_pdo_stmt_t::__anon144::__anon146
|
| H A D | pdo_stmt.c | 746 zend_fcall_info_cache * fcc = &stmt->fetch.cls.fcc; local 777 fcc->initialized = 1; 778 fcc->function_handler = ce->constructor; 779 fcc->calling_scope = EG(scope); 780 fcc->called_scope = ce; 791 static int make_callable_ex(pdo_stmt_t *stmt, zval *callable, zend_fcall_info * fci, zend_fcall_info_cache * fcc, int num_args TSRMLS_DC) /* {{{ */ argument 795 if (zend_fcall_info_init(callable, 0, fci, fcc, NULL, &is_callable_error TSRMLS_CC) == FAILURE) { 819 zend_fcall_info_cache * fcc = &stmt->fetch.cls.fcc; local [all...] |
| /PHP_TRUNK/ext/pdo_sqlite/ |
| H A D | php_pdo_sqlite_int.h | 35 zend_fcall_info_cache fcc; member in struct:pdo_sqlite_fci
|
| /PHP_TRUNK/ext/spl/ |
| H A D | php_spl.c | 477 zend_fcall_info_cache fcc; local 495 if (!zend_is_callable_ex(zcallable, NULL, IS_CALLABLE_STRICT, &func_name, &func_name_len, &fcc, &error TSRMLS_CC)) { 496 alfi.ce = fcc.calling_scope; 497 alfi.func_ptr = fcc.function_handler; 498 obj_ptr = fcc.object_ptr; 539 alfi.ce = fcc.calling_scope; 540 alfi.func_ptr = fcc.function_handler; 541 obj_ptr = fcc.object_ptr; 636 zend_fcall_info_cache fcc; local 642 if (!zend_is_callable_ex(zcallable, NULL, IS_CALLABLE_CHECK_SYNTAX_ONLY, &func_name, &func_name_len, &fcc, [all...] |
| H A D | spl_iterators.c | 1479 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "Of", &zobject, ce_inner, &cfi->fci, &cfi->fcc) == FAILURE) { 1902 zend_fcall_info_cache *fcc = &intern->u.cbfilter->fcc; local 1923 if (zend_call_function(fci, fcc TSRMLS_CC) != SUCCESS || !result) { 3535 zend_fcall_info_cache fcc; member in struct:__anon16 3545 zend_fcall_info_call(&apply_info->fci, &apply_info->fcc, &retval, NULL TSRMLS_CC); 3563 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "Of|a!", &apply_info.obj, zend_ce_traversable, &apply_info.fci, &apply_info.fcc, &apply_info.args) == FAILURE) {
|
| H A D | spl_iterators.h | 123 zend_fcall_info_cache fcc; member in struct:_spl_cbfilter_it_intern
|
| /PHP_TRUNK/ext/sqlite3/ |
| H A D | php_sqlite3_structs.h | 51 zend_fcall_info_cache fcc; member in struct:php_sqlite3_fci
|
| /PHP_TRUNK/main/ |
| H A D | php_output.h | 125 zend_fcall_info_cache fcc; member in struct:_php_output_handler_user_func_t
|
| /PHP_TRUNK/main/streams/ |
| H A D | userspace.c | 302 zend_fcall_info_cache fcc; local 315 fcc.initialized = 1; 316 fcc.function_handler = uwrap->ce->constructor; 317 fcc.calling_scope = EG(scope); 318 fcc.called_scope = Z_OBJCE_P(object); 319 fcc.object_ptr = object; 321 if (zend_call_function(&fci, &fcc TSRMLS_CC) == FAILURE) {
|
| /PHP_TRUNK/ext/pgsql/ |
| H A D | pgsql.c | 2544 zend_fcall_info_cache fcc; local 2585 fcc.initialized = 1; 2586 fcc.function_handler = ce->constructor; 2587 fcc.calling_scope = EG(scope); 2588 fcc.called_scope = Z_OBJCE_P(return_value); 2589 fcc.object_ptr = return_value; 2591 if (zend_call_function(&fci, &fcc TSRMLS_CC) == FAILURE) {
|
| /PHP_TRUNK/ext/libxml/ |
| H A D | libxml.c | 604 retval = zend_call_function(fci, &LIBXML(entity_loader).fcc TSRMLS_CC); 1082 zend_fcall_info_cache fcc; local 1083 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "f!", &fci, &fcc) 1096 LIBXML(entity_loader).fcc = fcc;
|
| H A D | php_libxml.h | 48 zend_fcall_info_cache fcc; member in struct:_php_libxml_entity_resolver
|
| /PHP_TRUNK/ext/pcre/pcrelib/ |
| H A D | pcre_internal.h | 2390 const pcre_uint8 *fcc; /* Points to case-flipping table */ member in struct:compile_data 2475 const pcre_uint8 *fcc; /* Points to case-flipping table */ member in struct:match_data
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_API.c | 623 zend_fcall_info_cache *fcc = va_arg(*va, zend_fcall_info_cache *); local 628 fcc->initialized = 0; 632 if (zend_fcall_info_init(*arg, 0, fci, fcc, NULL, &is_callable_error TSRMLS_CC) == SUCCESS) { 2669 static int zend_is_callable_check_class(const char *name, int name_len, zend_fcall_info_cache *fcc, int *strict_class, char **error TSRMLS_DC) /* {{{ */ argument 2681 fcc->called_scope = EG(called_scope); 2682 fcc->calling_scope = EG(scope); 2683 if (!fcc->object_ptr) { 2684 fcc->object_ptr = EG(This); 2695 fcc->called_scope = EG(called_scope); 2696 fcc 2738 zend_is_callable_check_func(int check_flags, zval *callable, zend_fcall_info_cache *fcc, int strict_class, char **error TSRMLS_DC) argument 2999 zend_is_callable_ex(zval *callable, zval *object_ptr, uint check_flags, char **callable_name, int *callable_name_len, zend_fcall_info_cache *fcc, char **error TSRMLS_DC) argument 3208 zend_fcall_info_cache fcc; local 3233 zend_fcall_info_init(zval *callable, uint check_flags, zend_fcall_info *fci, zend_fcall_info_cache *fcc, char **callable_name, char **error TSRMLS_DC) argument 3371 zend_fcall_info_call(zend_fcall_info *fci, zend_fcall_info_cache *fcc, zval **retval_ptr_ptr, zval *args TSRMLS_DC) argument [all...] |
| /PHP_TRUNK/ext/reflection/ |
| H A D | php_reflection.c | 1372 zend_fcall_info_cache fcc; local 1407 fcc.initialized = 1; 1408 fcc.function_handler = ce_ptr->constructor; 1409 fcc.calling_scope = ce_ptr; 1410 fcc.called_scope = Z_OBJCE_P(reflector_ptr); 1411 fcc.object_ptr = reflector_ptr; 1413 result = zend_call_function(&fci, &fcc TSRMLS_CC); 1902 zend_fcall_info_cache fcc; local 1923 fcc.initialized = 1; 1924 fcc 1962 zend_fcall_info_cache fcc; local 2827 zend_fcall_info_cache fcc; local 2931 zend_fcall_info_cache fcc; local 4214 zend_fcall_info_cache fcc; local 4321 zend_fcall_info_cache fcc; local [all...] |
| /PHP_TRUNK/ext/mysqli/ |
| H A D | mysqli.c | 1277 zend_fcall_info_cache fcc; local 1318 fcc.initialized = 1; 1319 fcc.function_handler = ce->constructor; 1320 fcc.calling_scope = EG(scope); 1321 fcc.called_scope = Z_OBJCE_P(return_value); 1322 fcc.object_ptr = return_value; 1324 if (zend_call_function(&fci, &fcc TSRMLS_CC) == FAILURE) {
|
| /PHP_TRUNK/ext/mysql/ |
| H A D | php_mysql.c | 2163 zend_fcall_info_cache fcc; local 2204 fcc.initialized = 1; 2205 fcc.function_handler = ce->constructor; 2206 fcc.calling_scope = EG(scope); 2207 fcc.called_scope = Z_OBJCE_P(return_value); 2208 fcc.object_ptr = return_value; 2210 if (zend_call_function(&fci, &fcc TSRMLS_CC) == FAILURE) {
|
| /PHP_TRUNK/ext/phar/ |
| H A D | phar_object.c | 681 zend_fcall_info_cache fcc; local 689 if (FAILURE == zend_fcall_info_init(rewrite, &fci, &fcc TSRMLS_CC)) { 691 if (FAILURE == zend_fcall_info_init(rewrite, 0, &fci, &fcc, NULL, NULL TSRMLS_CC)) { 711 if (FAILURE == zend_call_function(&fci, &fcc TSRMLS_CC)) {
|
| H A D | util.c | 1660 zend_fcall_info_cache fcc; local 1695 if (FAILURE == zend_fcall_info_init(openssl, &fci, &fcc TSRMLS_CC)) { 1697 if (FAILURE == zend_fcall_info_init(openssl, 0, &fci, &fcc, NULL, NULL TSRMLS_CC)) { 1729 if (FAILURE == zend_call_function(&fci, &fcc TSRMLS_CC)) {
|