Searched refs:cudie (Results 1 – 6 of 6) sorted by relevance
/external/elfutils/libdw/ |
D | dwarf_getsrcfiles.c | 25 dwarf_getsrcfiles (Dwarf_Die *cudie, Dwarf_Files **files, size_t *nfiles) in dwarf_getsrcfiles() argument 27 if (unlikely (cudie == NULL || dwarf_tag (cudie) != DW_TAG_compile_unit)) in dwarf_getsrcfiles() 33 struct Dwarf_CU *const cu = cudie->cu; in dwarf_getsrcfiles() 41 res = dwarf_getsrclines (cudie, &lines, &nlines); in dwarf_getsrcfiles()
|
D | dwarf_getsrc_die.c | 23 dwarf_getsrc_die (Dwarf_Die *cudie, Dwarf_Addr addr) in dwarf_getsrc_die() argument 28 if (dwarf_getsrclines (cudie, &lines, &nlines) != 0) in dwarf_getsrc_die()
|
D | dwarf_getsrclines.c | 64 dwarf_getsrclines (Dwarf_Die *cudie, Dwarf_Lines **lines, size_t *nlines) in dwarf_getsrclines() argument 66 if (unlikely (cudie == NULL || dwarf_tag (cudie) != DW_TAG_compile_unit)) in dwarf_getsrclines() 72 struct Dwarf_CU *const cu = cudie->cu; in dwarf_getsrclines() 81 Dwarf_Attribute *stmt_list = dwarf_attr (cudie, DW_AT_stmt_list, in dwarf_getsrclines() 102 Dwarf_Attribute *compdir_attr = dwarf_attr (cudie, DW_AT_comp_dir, in dwarf_getsrclines()
|
D | libdw.h | 334 extern int dwarf_getsrclines (Dwarf_Die *cudie, Dwarf_Lines **lines, 341 extern int dwarf_getsrcfiles (Dwarf_Die *cudie, Dwarf_Files **files, 347 extern Dwarf_Line *dwarf_getsrc_die (Dwarf_Die *cudie, Dwarf_Addr addr); 415 extern ptrdiff_t dwarf_getmacros (Dwarf_Die *cudie,
|
/external/elfutils/src/ |
D | nm.c | 643 Dwarf_Die *cudie = dwarf_offdie (dbg, old_offset + hsize, &cudie_mem); in get_local_names() local 647 if (cudie == NULL) in get_local_names() 650 if (dwarf_tag (cudie) != DW_TAG_compile_unit) in get_local_names() 656 if (dwarf_getsrcfiles (cudie, &files, &nfiles) != 0) in get_local_names() 661 if (dwarf_child (cudie, die) == 0) in get_local_names() 1086 Dwarf_Die *cudie = NULL; in show_symbols() local 1095 cudie = dwarf_offdie (dbg, (*found)->cu_offset, in show_symbols() 1097 if (cudie != NULL) in show_symbols() 1099 Dwarf_Line *line = dwarf_getsrc_die (cudie, in show_symbols()
|
D | readelf.c | 3879 Dwarf_Die cudie; in print_debug_line_section() local 3880 if (dwarf_offdie (dbg, cuoffset + hsize, &cudie) == NULL) in print_debug_line_section() 3883 if (dwarf_attr (&cudie, DW_AT_stmt_list, &stmt_list) == NULL) in print_debug_line_section() 3891 address_size = cudie.cu->address_size; in print_debug_line_section() 4178 Dwarf_Die cudie; in print_debug_macinfo_section() local 4179 if (dwarf_offdie (dbg, offset + hsize, &cudie) == NULL) in print_debug_macinfo_section() 4183 if (dwarf_attr (&cudie, DW_AT_macro_info, &attr) == NULL) in print_debug_macinfo_section() 4191 newp->die = cudie; in print_debug_macinfo_section()
|