Searched refs:cur_func (Results 1 – 2 of 2) sorted by relevance
/freebsd/sys/dev/aic7xxx/aicasm/ |
H A D | aicasm.c | 525 symbol_node_t *cur_func; in output_listing() local 545 for (func_count = 0, cur_func = SLIST_FIRST(&patch_functions); in output_listing() 546 cur_func != NULL; in output_listing() 547 cur_func = SLIST_NEXT(cur_func, links)) in output_listing() 566 for (cur_func = SLIST_FIRST(&patch_functions); in output_listing() 567 cur_func != NULL && SLIST_NEXT(cur_func, links) != NULL; in output_listing() 568 cur_func = SLIST_NEXT(cur_func, links), func_count--) { in output_listing() 571 fprintf(stdout, "\n(%s)\n", cur_func->symbol->name); in output_listing()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | Debugger.h | 429 bool InterruptRequested(const char *cur_func, const char *formatv, in InterruptRequested() argument 435 if (!cur_func) in InterruptRequested() 436 cur_func = "<UNKNOWN>"; in InterruptRequested() 438 cur_func, llvm::formatv(formatv, std::forward<Args>(args)...))); in InterruptRequested()
|