HomeSort by relevance Sort by last modified time
    Searched defs:dwfl (Results 1 - 10 of 10) sorted by null

  /external/elfutils/0.153/libdwfl/
dwfl_begin.c 52 Dwfl *
61 Dwfl *dwfl = calloc (1, sizeof *dwfl); local
62 if (dwfl == NULL)
66 dwfl->callbacks = callbacks;
67 dwfl->offline_next_address = OFFLINE_REDZONE;
70 return dwfl;
argp-std.c 117 inline void failure (Dwfl *dwfl, int errnum, const char *msg)
119 if (dwfl != NULL)
120 dwfl_end (dwfl);
127 inline error_t fail (Dwfl *dwfl, int errnum, const char *msg)
129 failure (dwfl, errnum, msg);
141 Dwfl *dwfl = state->hook; local
142 if (dwfl == NULL
172 Dwfl *dwfl = INTUSE(dwfl_begin) (&proc_callbacks); local
194 Dwfl *dwfl = INTUSE(dwfl_begin) (&proc_callbacks); local
207 Dwfl *dwfl = state->hook; local
250 Dwfl *dwfl = INTUSE(dwfl_begin) (&kernel_callbacks); local
267 Dwfl *dwfl = INTUSE(dwfl_begin) (&offline_callbacks); local
280 Dwfl *dwfl = state->hook; local
    [all...]
libdwflP.h 110 struct Dwfl
156 Dwfl *dwfl; member in struct:Dwfl_Module
157 struct Dwfl_Module *next; /* Link on Dwfl.modulelist. */
326 MOD->dwfl->callbacks->section_address is called to determine the actual
375 extern Dwfl_Module *__libdwfl_report_elf (Dwfl *dwfl, const char *name,
381 extern Dwfl_Module *__libdwfl_report_offline (Dwfl *dwfl, const char *name,
420 typedef bool Dwfl_Memory_Callback (Dwfl *dwfl, int segndx
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
probe-finder.h 27 Dwfl *dwfl; member in struct:debuginfo
  /external/ltrace/
proc.h 123 Dwfl *dwfl; member in struct:process
output.c 590 Dwfl *dwfl = dwfl_thread_dwfl(dwfl_frame_thread(state)); local
591 Dwfl_Module *mod = dwfl_addrmodule(dwfl, pc);
779 if (options.bt_depth > 0 && proc->leader->dwfl != NULL) {
781 if (dwfl_getthread_frames(proc->leader->dwfl, proc->pid,
proc.c 111 if (proc->dwfl != NULL)
112 dwfl_end(proc->dwfl);
176 proc->dwfl = NULL; /* Initialize for leader only on first library. */
898 Dwfl *dwfl = leader->dwfl; local
899 if (dwfl == NULL) {
904 dwfl = dwfl_begin(&proc_callbacks);
905 if (dwfl == NULL)
912 if (dwfl != NULL)
    [all...]
  /external/elfutils/0.153/src/
addr2line.c 104 static int handle_address (const char *addr, Dwfl *dwfl);
150 Dwfl *dwfl = NULL; local
151 (void) argp_parse (&argp, argc, argv, 0, &remaining, &dwfl);
152 assert (dwfl != NULL);
168 result = handle_address (buf, dwfl);
176 result = handle_address (argv[remaining], dwfl);
406 adjust_to_section (const char *name, uintmax_t *addr, Dwfl *dwfl)
    [all...]
unstrip.c 100 Dwfl *dwfl; member in struct:arg_info
119 state->child_inputs[0] = &info->dwfl;
170 if (info->list && (info->dwfl == NULL
195 if (info->dwfl == NULL)
    [all...]
readelf.c 579 Dwfl *dwfl = dwfl_begin (&callbacks); local
580 if (likely (dwfl != NULL))
582 dwfl->offline_next_address = 0;
583 if (dwfl_report_offline (dwfl, fname, fname, dwfl_fd) == NULL)
597 dwfl_report_end (dwfl, NULL, NULL);
603 only_one = dwfl_getmodules (dwfl, &count_dwflmod, &seen, 0) == 0;
608 dwfl_getmodules (dwfl, &process_dwflmod, &a, 0);
610 dwfl_end (dwfl);
    [all...]

Completed in 473 milliseconds