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

  /external/lldb/source/Symbol/
UnwindTable.cpp 79 addr_t file_addr = addr.GetFileAddress(); local
84 insert_pos = m_unwinds.lower_bound (file_addr);
Variable.cpp 496 const addr_t file_addr = address.GetFileAddress(); local
507 file_addr,
514 file_addr,
    [all...]
Symtab.cpp 863 const addr_t file_addr; member in struct:__anon29962
876 const addr_t info_file_addr = info->file_addr;
902 const addr_t info_file_addr = info->file_addr;
910 // to 'info->file_addr' we set the symbol here. This will get se
    [all...]
  /external/lldb/examples/lookup/
main.cpp 182 lldb::addr_t file_addr = strtoull (addr_cstr, NULL, 0); local
196 printf ("%sLooking up 0x%llx in '%s':\n", (arg_idx > 1) ? "\n" : "", file_addr, exe_file_path);
206 SBAddress addr = module.ResolveFileAddress (file_addr);
228 printf ("error: 0x%llx does not resolve to a valid file address in '%s'\n", file_addr, exe_file_path);
  /external/lldb/include/lldb/Symbol/
LineTable.h 78 InsertLineEntry (lldb::addr_t file_addr,
96 lldb::addr_t file_addr,
276 file_addr (LLDB_INVALID_ADDRESS),
297 file_addr (_file_addr),
315 file_addr = LLDB_INVALID_ADDRESS;
331 SCALAR_COMPARE (lhs.file_addr, rhs.file_addr);
358 return lhs.file_addr < rhs.file_addr;
364 lldb::addr_t file_addr; ///< The file address for this line entr member in struct:lldb_private::LineTable::Entry
    [all...]
  /external/lldb/source/API/
SBSection.cpp 137 lldb::addr_t file_addr = LLDB_INVALID_ADDRESS; local
141 return file_addr;
280 const addr_t file_addr = section_sp->GetFileAddress(); local
281 strm.Printf ("[0x%16.16" PRIx64 "-0x%16.16" PRIx64 ") ", file_addr, file_addr + section_sp->GetByteSize());
  /external/lldb/source/Core/
ValueObjectVariable.cpp 202 lldb::addr_t file_addr = m_value.GetScalar().ULongLong(LLDB_INVALID_ADDRESS); local
203 if (file_addr != LLDB_INVALID_ADDRESS)
212 Address so_addr(file_addr, objfile->GetSectionList());
Section.cpp 23 addr_t file_addr,
35 m_file_addr (file_addr),
45 // this, module_sp.get(), sect_id, file_addr, file_addr + byte_size, file_offset, file_offset + file_size, flags, name.GetCString());
54 addr_t file_addr,
66 m_file_addr (file_addr),
76 // this, module_sp.get(), sect_id, file_addr, file_addr + byte_size, file_offset, file_offset + file_size, flags, parent_section_sp->GetName().GetCString(), name.GetCString());
159 const addr_t file_addr = GetFileAddress(); local
160 if (file_addr != LLDB_INVALID_ADDRESS
    [all...]
Address.cpp 241 Address::ResolveAddressUsingFileSections (addr_t file_addr, const SectionList *section_list)
245 SectionSP section_sp (section_list->FindSectionContainingFileAddress(file_addr));
249 assert( section_sp->ContainsFileAddress(file_addr) );
250 m_offset = file_addr - section_sp->GetFileAddress();
254 m_offset = file_addr;
414 addr_t file_addr = GetFileAddress(); local
415 if (file_addr == LLDB_INVALID_ADDRESS)
421 s->Address (file_addr, addr_size);
466 const addr_t file_Addr = GetFileAddress();
467 Symbol *symbol = symtab->FindSymbolContainingFileAddress (file_Addr);
    [all...]
  /external/lldb/source/Expression/
ClangExpressionDeclMap.cpp 1862 lldb::addr_t file_addr = fun_address->GetFileAddress(); local
    [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
SymbolFileDWARFDebugMap.cpp 385 lldb::addr_t file_addr = symbol->GetAddress().GetFileAddress(); local
387 DebugMap::Entry debug_map_entry(file_addr, byte_size, OSOEntry(sym_idx, LLDB_INVALID_ADDRESS));
393 lldb::addr_t file_addr = symbol->GetAddress().GetFileAddress(); local
395 DebugMap::Entry debug_map_entry(file_addr, byte_size, OSOEntry(sym_idx, LLDB_INVALID_ADDRESS));
    [all...]
  /external/lldb/source/Target/
Target.cpp 1282 addr_t file_addr = LLDB_INVALID_ADDRESS; local
    [all...]

Completed in 126 milliseconds