| 947 | } |
| 948 | |
| 949 | static int |
| 950 | linker_debug_symbol_values(c_linker_sym_t sym, linker_symval_t *symval) |
| 951 | { |
| 952 | linker_file_t lf; |
| 953 | |
| 954 | TAILQ_FOREACH(lf, &linker_files, link) { |
| 955 | if (LINKER_SYMBOL_VALUES(lf, sym, symval) == 0) |
| 956 | return (0); |
| 957 | } |
| 958 | return (ENOENT); |
| 959 | } |
| 960 | |
| 961 | static int |
| 962 | linker_debug_search_symbol_name(caddr_t value, char *buf, u_int buflen, |
no outgoing calls
no test coverage detected