| /PHP_5_3/ext/pdo/ |
| H A D | pdo_dbh.c | 1348 zend_function *fbc = NULL; local 1358 if ((fbc = std_object_handlers.get_method(object_pp, method_name, method_len TSRMLS_CC)) == NULL) { 1370 lc_method_name, method_len+1, (void**)&fbc) == FAILURE) { 1371 if (!fbc) { 1372 fbc = NULL; 1379 return fbc;
|
| H A D | pdo_stmt.c | 2281 zend_function *fbc = NULL; local 2291 method_len+1, (void**)&fbc) == FAILURE) { 2308 lc_method_name, method_len+1, (void**)&fbc) == FAILURE) { 2309 fbc = NULL; 2317 return fbc; 2705 zend_function *fbc; local 2711 if (zend_hash_find(&pdo_row_ce->function_table, lc_method_name, method_len+1, (void**)&fbc) == FAILURE) { 2717 return fbc;
|
| /PHP_5_3/Zend/ |
| H A D | zend_compile.h | 312 zend_function *fbc; /* Function Being Called */ member in struct:_zend_execute_data
|
| H A D | zend_execute.h | 334 static inline void zend_arg_types_stack_2_pop(zend_ptr_stack *stack, zval **object, zend_function **fbc) argument 341 *fbc = (zend_function *) b; 344 static inline void zend_arg_types_stack_3_pop(zend_ptr_stack *stack, zend_class_entry **called_scope, zval **object, zend_function **fbc) argument 352 *fbc = (zend_function *) c;
|
| H A D | zend_object_handlers.h | 87 /* Andi - EX(fbc) (function being called) needs to be initialized already in the INIT fcall opcode so that the parameters can be parsed the right way. We need to add another callback for this. 159 ZEND_API int zend_check_private(union _zend_function *fbc, zend_class_entry *ce, char *function_name_strval, int function_name_strlen TSRMLS_DC);
|
| H A D | zend_object_handlers.c | 752 static inline zend_function *zend_check_private_int(zend_function *fbc, zend_class_entry *ce, char *function_name_strval, int function_name_strlen TSRMLS_DC) /* {{{ */ argument 760 * function (EX(fbc)) has the same scope. 764 if (fbc->common.scope == ce && EG(scope) == ce) { 766 return fbc; 774 if (zend_hash_find(&ce->function_table, function_name_strval, function_name_strlen+1, (void **) &fbc)==SUCCESS 775 && fbc->op_array.fn_flags & ZEND_ACC_PRIVATE 776 && fbc->common.scope == EG(scope)) { 777 return fbc; 787 ZEND_API int zend_check_private(zend_function *fbc, zend_class_entry *ce, char *function_name_strval, int function_name_strlen TSRMLS_DC) /* {{{ */ argument 789 return zend_check_private_int(fbc, c 822 zend_get_function_root_class(zend_function *fbc) argument 849 zend_function *fbc; local 985 zend_function *fbc = NULL; local [all...] |
| H A D | zend_vm_def.h | 1040 ARG_SHOULD_BE_SENT_BY_REF(EX(fbc), EX(opline)->extended_value)?BP_VAR_W:BP_VAR_R); 1154 if (ARG_SHOULD_BE_SENT_BY_REF(EX(fbc), opline->extended_value)) { 1368 if (ARG_SHOULD_BE_SENT_BY_REF(EX(fbc), opline->extended_value)) { 1922 zend_ptr_stack_3_push(&EG(arg_types_stack), EX(fbc), EX(object), EX(called_scope)); 1941 EX(fbc) = Z_OBJ_HT_P(EX(object))->get_method(&EX(object), function_name_strval, function_name_strlen TSRMLS_CC); variable 1942 if (!EX(fbc)) { 1951 if ((EX(fbc)->common.fn_flags & ZEND_ACC_STATIC) != 0) { 1977 zend_ptr_stack_3_push(&EG(arg_types_stack), EX(fbc), EX(object), EX(called_scope)); 2019 EX(fbc) = ce->get_static_method(ce, function_name_strval, function_name_strlen TSRMLS_CC); variable 2021 EX(fbc) variable 2038 EX(fbc) = ce->constructor; variable 2948 EX(fbc) = constructor; variable [all...] |
| H A D | zend_vm_execute.h | 65 EX(fbc) = NULL; 300 zend_arg_types_stack_3_pop(&EG(arg_types_stack), &EX(called_scope), &EX(current_object), &EX(fbc)); 427 EX(function_state).function = EX(fbc); 501 zend_ptr_stack_3_push(&EG(arg_types_stack), EX(fbc), EX(object), ENCODE_CTOR(EX(called_scope), RETURN_VALUE_USED(opline))); 505 EX(fbc) = constructor; 631 while (EX(fbc)) { 645 zend_arg_types_stack_2_pop(&EG(arg_types_stack), &EX(object), &EX(fbc)); 751 zend_ptr_stack_3_push(&EG(arg_types_stack), EX(fbc), EX(object), EX(called_scope)); 754 if (zend_hash_quick_find(EG(function_table), Z_STRVAL(opline->op1.u.constant), Z_STRLEN(opline->op1.u.constant)+1, opline->extended_value, (void **) &EX(fbc)) == FAILURE) { 763 Z_OBJ_HANDLER_P(function_name, get_closure)(function_name, &EX(called_scope), &EX(fbc), [all...] |