HomeSort by relevance Sort by last modified time
    Searched full:file_addr (Results 1 - 25 of 39) sorted by null

1 2

  /external/lldb/source/Core/
AddressRange.cpp 25 AddressRange::AddressRange (addr_t file_addr, addr_t byte_size, const SectionList *section_list) :
26 m_base_addr(file_addr, section_list),
72 addr_t file_addr = addr.GetFileAddress();
73 if (file_addr == LLDB_INVALID_ADDRESS)
76 if (file_base_addr <= file_addr)
77 return (file_addr - file_base_addr) < GetByteSize();
83 AddressRange::ContainsFileAddress (addr_t file_addr) const
85 if (file_addr == LLDB_INVALID_ADDRESS)
92 if (file_base_addr <= file_addr)
93 return (file_addr - file_base_addr) < GetByteSize()
    [all...]
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...]
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());
  /external/lldb/source/Symbol/
LineTable.cpp 40 lldb::addr_t file_addr,
51 Entry entry(file_addr, line, column, file_idx, is_start_of_statement, is_start_of_basic_block, is_prologue_end, is_epilogue_begin, is_terminal_entry);
85 lldb::addr_t file_addr,
98 Entry entry(file_addr, line, column, file_idx, is_start_of_statement, is_start_of_basic_block, is_prologue_end, is_epilogue_begin, is_terminal_entry);
148 LT_COMPARE (a.file_addr, b.file_addr);
194 search_entry.file_addr = so_addr.GetFileAddress();
195 if (search_entry.file_addr != LLDB_INVALID_ADDRESS)
204 if (pos->file_addr != search_entry.file_addr)
    [all...]
Symtab.cpp 863 const addr_t file_addr; member in struct:__anon29121
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...]
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...]
  /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/examples/python/
lldb_module_utils.py 38 start_file_addr = line_entry.addr.file_addr
39 end_file_addr = line_entry.end_addr.file_addr
globals.py 48 print 'file_addr = 0x%x' % global_variable.addr.file_addr # Returns the file virtual address for this global
  /external/lldb/scripts/Python/interface/
SBInstructionList.i 75 lookup_file_addr = key.file_addr
79 inst_file_addr = inst.addr.file_addr
SBFunction.i 28 file_addr = addr.GetFileAddress()
31 symbol_offset = file_addr - start_addr
SBSection.i 112 __swig_getmethods__["file_addr"] = GetFileAddress
113 if _newclass: file_addr = property(GetFileAddress, None, doc='''A read only property that returns an integer that represents the starting "file" address for this section, or the address of the section in the object file in which it is defined.''')
SBAddress.i 190 __swig_getmethods__["file_addr"] = GetFileAddress
191 if _newclass: file_addr = property(GetFileAddress, None, doc='''A read only property that returns file address for the section as an integer. This is the address that represents the address as it is found in the object file that defines it.''')
SBFrame.i 27 file_addr = addrs[i].GetFileAddress()
29 symbol_offset = file_addr - start_addr
  /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...]
Symtab.h 73 Symbol * FindSymbolContainingFileAddress (lldb::addr_t file_addr, const uint32_t* indexes, uint32_t num_indexes);
74 Symbol * FindSymbolContainingFileAddress (lldb::addr_t file_addr);
  /external/lldb/include/lldb/Core/
AddressRange.h 54 /// address \a file_addr, and byte size \a byte_size.
56 /// @param[in] file_addr
65 AddressRange (lldb::addr_t file_addr, lldb::addr_t byte_size, const SectionList *section_list = NULL);
139 /// Check if the resolved file address \a file_addr is contained
151 ContainsFileAddress (lldb::addr_t file_addr) const;
Address.h 148 /// address \a file_addr.
150 /// @param[in] file_addr
154 /// A list of sections, one of which may contain the \a file_addr.
156 Address (lldb::addr_t file_addr, const SectionList * section_list);
  /external/lldb/source/Plugins/ObjectFile/PECOFF/
ObjectFilePECOFF.h 86 // GetAddressClass (lldb::addr_t file_addr);
  /external/lldb/www/python_reference/
identifier-index-F.html 149 <td width="33%" class="link-index"><a href="lldb.SBAddress-class.html#file_addr">file_addr</a><br />
157 <td width="33%" class="link-index"><a href="lldb.SBSection-class.html#file_addr">file_addr</a><br />
  /external/lldb/include/lldb/Expression/
DWARFExpression.h 136 /// file_addr. If file_addr is LLDB_INVALID_ADDRESS, the this
158 Update_DW_OP_addr (lldb::addr_t file_addr);
  /external/lldb/source/Plugins/ObjectFile/Mach-O/
ObjectFileMachO.h 102 GetAddressClass (lldb::addr_t file_addr);

Completed in 330 milliseconds

1 2