Searched refs:cu (Results 51 - 75 of 131) sorted by relevance

123456

/external/elfutils/0.153/libdw/
H A Ddwarf_func_inline.c119 struct Dwarf_Die_Chain cu = { .die = CUDIE (func->cu), .parent = NULL }; local
120 return __libdw_visit_scopes (0, &cu, &scope_visitor, NULL, &v);
H A Ddwarf_getsrclines.c99 struct Dwarf_CU *const cu = cudie->cu; local
100 if (cu->lines == NULL)
103 cu->lines = (void *) -1l;
104 cu->files = (void *) -1l;
134 Dwarf *dbg = cu->dbg;
470 if (unlikely (lineendp - linep < cu->address_size))
473 cu->address_size, &addr))
693 files->cu = cu;
[all...]
H A Ddwarf_haschildren.c74 abbrevp = __libdw_findabbrev (die->cu, abbrev_code);
H A Ddwarf_offdie.c82 result->cu = __libdw_findcu (dbg, offset, debug_types);
83 if (result->cu == NULL)
H A Ddwarf_getfuncs.c75 die = INTUSE(dwarf_offdie) (cudie->cu->dbg, offset, &die_mem);
H A DlibdwP.h226 struct Dwarf_CU *cu; member in struct:Dwarf_Files_s
335 .cu = (fromcu), \
408 extern Dwarf_Abbrev *__libdw_findabbrev (struct Dwarf_CU *cu,
413 extern Dwarf_Abbrev *__libdw_getabbrev (Dwarf *dbg, struct Dwarf_CU *cu,
419 extern size_t __libdw_form_val_len (Dwarf *dbg, struct Dwarf_CU *cu,
613 cu_sec_idx (struct Dwarf_CU *cu) argument
615 return cu->type_offset == 0 ? IDX_debug_info : IDX_debug_types;
619 cu_data (struct Dwarf_CU *cu) argument
621 return cu->dbg->sectiondata[cu_sec_idx (cu)];
[all...]
H A Ddwarf_aggregate_size.c116 Dwarf_Die cu = CUDIE (die->cu); local
117 switch (INTUSE(dwarf_srclang) (&cu))
H A Ddwarf_getscopes.c210 struct Dwarf_Die_Chain cu = { .parent = NULL, .die = *cudie }; local
213 int result = __libdw_visit_scopes (0, &cu, &pc_match, &pc_record, &a);
216 result = __libdw_visit_scopes (0, &cu, &origin_match, NULL, &a);
H A Ddwarf_getmacros.c71 Elf_Data *d = die->cu->dbg->sectiondata[IDX_debug_macinfo];
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.cpp117 DWARFFormValue::ExtractValue(const DataExtractor& data, lldb::offset_t* offset_ptr, const DWARFCompileUnit* cu) argument
128 case DW_FORM_addr: m_value.value.uval = data.GetMaxU64(offset_ptr, DWARFCompileUnit::GetAddressByteSize(cu)); break;
149 if (cu->GetVersion() <= 2)
150 m_value.value.uval = data.GetMaxU64(offset_ptr, DWARFCompileUnit::GetAddressByteSize(cu));
186 DWARFFormValue::SkipValue(const DataExtractor& debug_info_data, lldb::offset_t *offset_ptr, const DWARFCompileUnit* cu) const
188 return DWARFFormValue::SkipValue(m_form, debug_info_data, offset_ptr, cu);
192 DWARFFormValue::SkipValue(dw_form_t form, const DataExtractor& debug_info_data, lldb::offset_t *offset_ptr, const DWARFCompileUnit* cu) argument
211 *offset_ptr += DWARFCompileUnit::GetAddressByteSize(cu);
215 if (cu->GetVersion() <= 2)
216 *offset_ptr += DWARFCompileUnit::GetAddressByteSize(cu);
438 ResolveCompileUnitReferences(const DWARFCompileUnit* cu) argument
[all...]
H A DUniqueDWARFASTType.h45 DWARFCompileUnit *cu,
51 m_cu (cu),
121 const DWARFCompileUnit *cu,
154 const DWARFCompileUnit *cu,
164 return pos->second.Find (symfile, cu, die, decl, byte_size, entry);
43 UniqueDWARFASTType(lldb::TypeSP &type_sp, SymbolFileDWARF *symfile, DWARFCompileUnit *cu, DWARFDebugInfoEntry *die, const lldb_private::Declaration &decl, int32_t byte_size) argument
152 Find(const lldb_private::ConstString &name, SymbolFileDWARF *symfile, const DWARFCompileUnit *cu, const DWARFDebugInfoEntry *die, const lldb_private::Declaration &decl, const int32_t byte_size, UniqueDWARFASTType &entry) const argument
H A DUniqueDWARFASTType.cpp24 const DWARFCompileUnit *cu,
61 const char *parent_arg_die_name = parent_arg_die->GetName(symfile, cu);
21 Find( SymbolFileDWARF *symfile, const DWARFCompileUnit *cu, const DWARFDebugInfoEntry *die, const lldb_private::Declaration &decl, const int32_t byte_size, UniqueDWARFASTType &entry ) const argument
H A DDWARFDebugAranges.cpp101 DWARFCompileUnit* cu = debug_info->GetCompileUnitAtIndex(cu_idx); local
102 if (cu)
103 cu->BuildAddressRangeTable(dwarf2Data, this, clear_dies_if_already_not_parsed);
H A DDWARFDebugInfo.h47 void AddCompileUnit(DWARFCompileUnitSP& cu);
49 bool ContainsCompileUnit (const DWARFCompileUnit *cu) const;
H A DDWARFAbbreviationDeclaration.cpp144 const DWARFCompileUnit* cu,
164 DWARFFormValue::SkipValue(form, debug_info_data, &offset, cu);
140 CopyChangingStringToStrp( const DWARFAbbreviationDeclaration& abbr_decl, const DataExtractor& debug_info_data, dw_offset_t debug_info_offset, const DWARFCompileUnit* cu, const uint32_t strp_min_len ) argument
/external/elfutils/0.153/libdwfl/
H A Ddwfl_module.c55 free_cu (struct dwfl_cu *cu) argument
57 if (cu->lines != NULL)
58 free (cu->lines);
59 free (cu);
87 if (mod->cu != NULL)
90 free_cu (mod->cu[i]);
91 free (mod->cu);
H A DlibdwflP.h185 struct dwfl_cu *first_cu, **cu; member in struct:Dwfl_Module
225 struct dwfl_cu *cu; member in struct:Dwfl_Lines
245 return lines->cu;
297 struct dwfl_cu *cu; member in struct:dwfl_arange
347 struct dwfl_cu **cu) internal_function;
351 struct dwfl_cu **cu) internal_function;
353 /* Ensure that CU->lines (and CU->cu->lines) is set up. */
354 extern Dwfl_Error __libdwfl_cu_getsrclines (struct dwfl_cu *cu)
/external/lldb/source/Breakpoint/
H A DBreakpointResolverFileRegex.cpp60 CompileUnit *cu = context.comp_unit; local
61 FileSpec cu_file_spec = *(static_cast<FileSpec *>(cu));
74 start_idx = cu->FindLineEntry (start_idx, line_matches[i], NULL, exact, &line_entry);
/external/lldb/source/Core/
H A DAddressResolverFileLine.cpp53 CompileUnit *cu = context.comp_unit; local
57 sc_list_size = cu->ResolveSymbolContext (m_file_spec, m_line_number, m_inlines, false, eSymbolContextEverything,
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dxmlreport.py88 def xml_file(self, cu, analysis):
93 dirname, fname = os.path.split(cu.name)
105 ext = os.path.splitext(cu.filename)[1]
106 xclass.setAttribute("filename", cu.name + ext)
H A Dhtml.py105 def file_hash(self, source, cu):
109 self.coverage.data.add_to_hash(cu.filename, m)
112 def html_file(self, cu, analysis):
114 source_file = cu.source_file()
121 flat_rootname = cu.flat_rootname()
122 this_hash = self.file_hash(source, cu)
205 'name': cu.name,
/external/lldb/include/lldb/Symbol/
H A DLineEntry.h92 CompileUnit* cu,
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dutf8tst.c1050 UChar32 cu, cs, cl; local
1057 U8_NEXT_UNSAFE(b, j, cu);
1068 if(cu!=cp[k]) {
1069 log_err("U8_NEXT_UNSAFE(b[%ld])=U+%04lX != U+%04lX\n", (long)i, (long)cu, (long)cp[k]);
1073 if(U_IS_SURROGATE(cu) ? cs>=0 : cs!=cu) {
1074 log_err("U8_NEXT(b[%ld])=U+%04lX != U+%04lX\n", (long)i, (long)cs, (long)cu);
1078 if(cl!=cu) {
1079 log_err("L8_NEXT(b[%ld])=U+%04lX != U+%04lX\n", (long)i, (long)cl, (long)cu);
1094 U8_PREV_UNSAFE(b, j, cu);
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dutf8tst.c1050 UChar32 cu, cs, cl; local
1057 U8_NEXT_UNSAFE(b, j, cu);
1068 if(cu!=cp[k]) {
1069 log_err("U8_NEXT_UNSAFE(b[%ld])=U+%04lX != U+%04lX\n", (long)i, (long)cu, (long)cp[k]);
1073 if(U_IS_SURROGATE(cu) ? cs>=0 : cs!=cu) {
1074 log_err("U8_NEXT(b[%ld])=U+%04lX != U+%04lX\n", (long)i, (long)cs, (long)cu);
1078 if(cl!=cu) {
1079 log_err("L8_NEXT(b[%ld])=U+%04lX != U+%04lX\n", (long)i, (long)cl, (long)cu);
1094 U8_PREV_UNSAFE(b, j, cu);
[all...]
/external/lldb/test/python_api/module_section/
H A DTestModuleAndSection.py131 for cu in exe_module.compile_unit_iter():
132 print cu

Completed in 327 milliseconds

123456