Searched defs:fbc (Results 1 - 6 of 6) sorted by relevance
| /PHP_TRUNK/ext/pdo/ |
| H A D | pdo_stmt.c | 2272 zend_function *fbc = NULL; local 2282 method_len+1, (void**)&fbc) == FAILURE) { 2299 lc_method_name, method_len+1, (void**)&fbc) == FAILURE) { 2300 fbc = NULL; 2308 return fbc; 2707 zend_function *fbc; local 2713 if (zend_hash_find(&pdo_row_ce->function_table, lc_method_name, method_len+1, (void**)&fbc) == FAILURE) { 2719 return fbc;
|
| H A D | pdo_dbh.c | 1365 zend_function *fbc = NULL; local 1375 if ((fbc = std_object_handlers.get_method(object_pp, method_name, method_len, key TSRMLS_CC)) == NULL) { 1387 lc_method_name, method_len+1, (void**)&fbc) == FAILURE) { 1388 if (!fbc) { 1389 fbc = NULL; 1396 return fbc;
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_compile.h | 377 zend_function *fbc; member in struct:_call_slot
|
| H A D | zend_vm_def.h | 1152 ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))?BP_VAR_W:BP_VAR_R); 1270 if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) { 1509 if (ARG_SHOULD_BE_SENT_BY_REF(EX(call)->fbc, (opline->extended_value & ZEND_FETCH_ARG_MASK))) { 1922 zend_function *fbc = EX(function_state).function; local 1926 if (UNEXPECTED((fbc->common.fn_flags & (ZEND_ACC_ABSTRACT|ZEND_ACC_DEPRECATED)) != 0)) { 1927 if (UNEXPECTED((fbc->common.fn_flags & ZEND_ACC_ABSTRACT) != 0)) { 1928 zend_error_noreturn(E_ERROR, "Cannot call abstract method %s::%s()", fbc->common.scope->name, fbc->common.function_name); 1930 if (UNEXPECTED((fbc->common.fn_flags & ZEND_ACC_DEPRECATED) != 0)) { 1932 fbc [all...] |
| H A D | zend_vm_execute.h | 476 zend_function *fbc = EX(function_state).function; local 480 if (UNEXPECTED((fbc->common.fn_flags & (ZEND_ACC_ABSTRACT|ZEND_ACC_DEPRECATED)) != 0)) { 481 if (UNEXPECTED((fbc->common.fn_flags & ZEND_ACC_ABSTRACT) != 0)) { 482 zend_error_noreturn(E_ERROR, "Cannot call abstract method %s::%s()", fbc->common.scope->name, fbc->common.function_name); 484 if (UNEXPECTED((fbc->common.fn_flags & ZEND_ACC_DEPRECATED) != 0)) { 486 fbc->common.scope ? fbc->common.scope->name : "", 487 fbc->common.scope ? "::" : "", 488 fbc [all...] |
| H A D | zend_object_handlers.c | 919 static inline zend_function *zend_check_private_int(zend_function *fbc, zend_class_entry *ce, char *function_name_strval, int function_name_strlen, ulong hash_value TSRMLS_DC) /* {{{ */ argument 927 * function (EX(fbc)) has the same scope. 931 if (fbc->common.scope == ce && EG(scope) == ce) { 933 return fbc; 941 if (zend_hash_quick_find(&ce->function_table, function_name_strval, function_name_strlen+1, hash_value, (void **) &fbc)==SUCCESS 942 && fbc->op_array.fn_flags & ZEND_ACC_PRIVATE 943 && fbc->common.scope == EG(scope)) { 944 return fbc; 954 ZEND_API int zend_check_private(zend_function *fbc, zend_class_entry *ce, char *function_name_strval, int function_name_strlen TSRMLS_DC) /* {{{ */ argument 956 return zend_check_private_int(fbc, c 1007 zend_function *fbc; local 1152 zend_function *fbc = NULL; local [all...] |
Completed in 43 milliseconds