Lines Matching refs:fbc
157 zend_function *fbc; in PHPDBG_PRINT() local
161 if ((fbc = zend_hash_find_ptr(&ce->function_table, lcname))) { in PHPDBG_PRINT()
163 (fbc->type == ZEND_USER_FUNCTION) ? "User" : "Internal", in PHPDBG_PRINT()
164 ZSTR_VAL(fbc->common.function_name), in PHPDBG_PRINT()
165 (fbc->type == ZEND_USER_FUNCTION) ? fbc->op_array.last : 0); in PHPDBG_PRINT()
167 phpdbg_print_function_helper(fbc); in PHPDBG_PRINT()
183 zend_function* fbc; in PHPDBG_PRINT() local
211 if ((fbc = zend_hash_find_ptr(func_table, lcname))) { in PHPDBG_PRINT()
213 (fbc->type == ZEND_USER_FUNCTION) ? "User" : "Internal", in PHPDBG_PRINT()
214 (fbc->common.scope) ? "Method" : "Function", in PHPDBG_PRINT()
215 ZSTR_VAL(fbc->common.function_name), in PHPDBG_PRINT()
216 (fbc->type == ZEND_USER_FUNCTION) ? fbc->op_array.last : 0); in PHPDBG_PRINT()
218 phpdbg_print_function_helper(fbc); in PHPDBG_PRINT()