Home
last modified time | relevance | path

Searched refs:fbc (Results 1 – 13 of 13) sorted by relevance

/PHP-5.6/sapi/phpdbg/
H A Dphpdbg_print.c191 zend_function *fbc; in PHPDBG_PRINT() local
194 if (zend_hash_find(&(*ce)->function_table, lcname, strlen(lcname)+1, (void**)&fbc) == SUCCESS) { in PHPDBG_PRINT()
196 (fbc->type == ZEND_USER_FUNCTION) ? "User" : "Internal", in PHPDBG_PRINT()
197 fbc->common.function_name); in PHPDBG_PRINT()
199 phpdbg_print_function_helper(fbc TSRMLS_CC); in PHPDBG_PRINT()
215 zend_function* fbc; in PHPDBG_PRINT() local
239 if (zend_hash_find(func_table, lcname, strlen(lcname)+1, (void**)&fbc) == SUCCESS) { in PHPDBG_PRINT()
241 (fbc->type == ZEND_USER_FUNCTION) ? "User" : "Internal", in PHPDBG_PRINT()
242 (fbc->common.scope) ? "Method" : "Function", in PHPDBG_PRINT()
243 fbc->common.function_name); in PHPDBG_PRINT()
[all …]
H A Dphpdbg_list.c182 void phpdbg_list_function(const zend_function *fbc TSRMLS_DC) /* {{{ */ in phpdbg_list_function()
186 if (fbc->type != ZEND_USER_FUNCTION) { in phpdbg_list_function()
187 phpdbg_error("The function requested (%s) is not user defined", fbc->common.function_name); in phpdbg_list_function()
191 ops = (zend_op_array*)fbc; in phpdbg_list_function()
200 zend_function* fbc; in phpdbg_list_function_byname() local
225 if (zend_hash_find(func_table, func_name, func_name_len+1, (void**)&fbc) == SUCCESS) { in phpdbg_list_function_byname()
226 phpdbg_list_function(fbc TSRMLS_CC); in phpdbg_list_function_byname()
H A Dphpdbg_bp.c810 static inline phpdbg_breakbase_t *phpdbg_find_breakpoint_symbol(zend_function *fbc TSRMLS_DC) /* {{… in phpdbg_find_breakpoint_symbol()
816 if (fbc->type != ZEND_USER_FUNCTION) { in phpdbg_find_breakpoint_symbol()
820 ops = (zend_op_array*)fbc; in phpdbg_find_breakpoint_symbol()
H A Dphpdbg_prompt.c1111 EX(fbc) = NULL; in phpdbg_create_execute_data()
/PHP-5.6/Zend/
H A Dzend_object_handlers.c965 return fbc; in zend_check_private_int()
976 return fbc; in zend_check_private_int()
1039 zend_function *fbc; in zend_std_get_method() local
1076 fbc = updated_fbc; in zend_std_get_method()
1096 fbc = priv_fbc; in zend_std_get_method()
1116 return fbc; in zend_std_get_method()
1181 zend_function *fbc = NULL; in zend_std_get_static_method() local
1206 fbc = ce->constructor; in zend_std_get_static_method()
1210 if (EXPECTED(!fbc) && in zend_std_get_static_method()
1244 fbc = updated_fbc; in zend_std_get_static_method()
[all …]
H A Dzend_object_handlers.h154 #define zend_get_function_root_class(fbc) \ argument
155 ((fbc)->common.prototype ? (fbc)->common.prototype->common.scope : (fbc)->common.scope)
173 ZEND_API int zend_check_private(union _zend_function *fbc, zend_class_entry *ce, char *function_nam…
H A Dzend_vm_def.h1945 fbc->common.scope ? fbc->common.scope->name : "", in ZEND_VM_HELPER()
1946 fbc->common.scope ? "::" : "", in ZEND_VM_HELPER()
1947 fbc->common.function_name); in ZEND_VM_HELPER()
1953 if (fbc->common.scope && in ZEND_VM_HELPER()
1970 if (fbc->type == ZEND_USER_FUNCTION || fbc->common.scope) { in ZEND_VM_HELPER()
1976 EG(scope) = (fbc->type == ZEND_USER_FUNCTION || !EX(object)) ? fbc->common.scope : NULL; in ZEND_VM_HELPER()
2067 efree(fbc); in ZEND_VM_HELPER()
2618 call->fbc = ce->constructor;
3363 EX(call)->fbc->common.scope ? EX(call)->fbc->common.scope->name : "",
3639 call->fbc = constructor;
[all …]
H A Dzend_vm_execute.h494 fbc->common.scope ? fbc->common.scope->name : "", in zend_do_fcall_common_helper_SPEC()
496 fbc->common.function_name); in zend_do_fcall_common_helper_SPEC()
502 if (fbc->common.scope && in zend_do_fcall_common_helper_SPEC()
519 if (fbc->type == ZEND_USER_FUNCTION || fbc->common.scope) { in zend_do_fcall_common_helper_SPEC()
525 EG(scope) = (fbc->type == ZEND_USER_FUNCTION || !EX(object)) ? fbc->common.scope : NULL; in zend_do_fcall_common_helper_SPEC()
616 efree(fbc); in zend_do_fcall_common_helper_SPEC()
819 EX(call)->fbc->common.scope ? EX(call)->fbc->common.scope->name : "", in ZEND_SEND_UNPACK_SPEC_HANDLER()
966 call->fbc = constructor; in ZEND_NEW_SPEC_HANDLER()
1219 efree(call->fbc); in ZEND_HANDLE_EXCEPTION_SPEC_HANDLER()
3912 call->fbc = ce->constructor; in ZEND_INIT_STATIC_METHOD_CALL_SPEC_CONST_CONST_HANDLER()
[all …]
H A Dzend_compile.h367 zend_function *fbc; member
388 zend_function *fbc; member
H A Dzend_compile.c105 static void zend_push_function_call_entry(zend_function *fbc TSRMLS_DC) /* {{{ */ in zend_push_function_call_entry()
107 zend_function_call_entry fcall = { fbc }; in zend_push_function_call_entry()
2590 if (fcall->fbc) { in zend_do_end_function_call()
2635 function_ptr = fcall->fbc; in zend_do_pass_param()
2748 if (fcall->fbc) { in zend_do_unpack_params()
2753 ZVAL_STRING(&func_name, fcall->fbc->common.function_name, 1); in zend_do_unpack_params()
2764 fcall->fbc = NULL; in zend_do_unpack_params()
H A Dzend_execute.c1730 return ARG_SHOULD_BE_SENT_BY_REF(call->fbc, arg_num); in zend_is_by_ref_func_arg_fetch()
/PHP-5.6/ext/pdo/
H A Dpdo_dbh.c1354 zend_function *fbc = NULL; in dbh_method_get() local
1362 …if ((fbc = std_object_handlers.get_method(object_pp, method_name, method_len, key TSRMLS_CC)) == N… in dbh_method_get()
1374 lc_method_name, method_len+1, (void**)&fbc) == FAILURE) { in dbh_method_get()
1375 if (!fbc) { in dbh_method_get()
1376 fbc = NULL; in dbh_method_get()
1383 return fbc; in dbh_method_get()
H A Dpdo_stmt.c2245 zend_function *fbc = NULL; in dbstmt_method_get() local
2253 method_len+1, (void**)&fbc) == FAILURE) { in dbstmt_method_get()
2271 lc_method_name, method_len+1, (void**)&fbc) == FAILURE) { in dbstmt_method_get()
2278 if (!fbc) { in dbstmt_method_get()
2279 fbc = std_object_handlers.get_method(object_pp, method_name, method_len, key TSRMLS_CC); in dbstmt_method_get()
2282 return fbc; in dbstmt_method_get()
2686 zend_function *fbc; in row_method_get() local
2692 …if (zend_hash_find(&pdo_row_ce->function_table, lc_method_name, method_len+1, (void**)&fbc) == FAI… in row_method_get()
2698 return fbc; in row_method_get()

Completed in 165 milliseconds