Searched defs:fbc (Results 1 - 6 of 6) sorted by relevance
| /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.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...] |
Completed in 19 milliseconds