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