HomeSort by relevance Sort by last modified time
    Searched refs:addr_t (Results 101 - 125 of 300) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/lldb/scripts/Python/interface/
SBWatchpoint.i 48 lldb::addr_t
  /external/lldb/source/Plugins/OperatingSystem/Python/
OperatingSystemPython.h 74 lldb::addr_t reg_data_addr);
83 CreateThread (lldb::tid_t tid, lldb::addr_t context);
  /external/lldb/source/Plugins/Process/POSIX/
POSIXStopInfo.h 73 lldb::addr_t fault_addr)
89 lldb::addr_t m_fault_addr;
  /external/lldb/source/Plugins/Process/Utility/
ThreadMemory.h 28 lldb::addr_t register_data_addr);
144 lldb::addr_t m_register_data_addr;
RegisterContextThreadMemory.cpp 22 lldb::addr_t register_data_addr) :
188 RegisterContextThreadMemory::SetHardwareBreakpoint (lldb::addr_t addr, size_t size)
215 RegisterContextThreadMemory::SetHardwareWatchpoint (lldb::addr_t addr, size_t size, bool read, bool write)
242 RegisterContextThreadMemory::ReadRegisterValueFromMemory (const lldb_private::RegisterInfo *reg_info, lldb::addr_t src_addr, uint32_t src_len, RegisterValue &reg_value)
253 RegisterContextThreadMemory::WriteRegisterValueToMemory (const lldb_private::RegisterInfo *reg_info, lldb::addr_t dst_addr, uint32_t dst_len, const RegisterValue &reg_value)
  /external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DynamicLoaderPOSIXDYLD.cpp 115 addr_t load_offset;
136 addr_t load_offset;
212 DynamicLoaderPOSIXDYLD::UpdateLoadedSections(ModuleSP module, addr_t base_addr)
222 lldb::addr_t new_load_addr = section_sp->GetFileAddress() + base_addr;
223 lldb::addr_t old_load_addr = load_list.GetSectionLoadAddress(section_sp);
240 addr_t entry;
273 addr_t break_addr = m_rendezvous.GetBreakAddress();
371 typedef std::vector<lldb::addr_t> AddressVector;
380 lldb::addr_t addr = range.GetBaseAddress().GetLoadAddress(&target);
421 DynamicLoaderPOSIXDYLD::LoadModuleAtAddress(const FileSpec &file, addr_t base_addr
    [all...]
  /external/lldb/source/Plugins/ObjectFile/Mach-O/
ObjectFileMachO.h 56 lldb::addr_t header_addr);
68 lldb::addr_t offset,
69 lldb::addr_t length);
84 lldb::addr_t header_addr);
102 GetAddressClass (lldb::addr_t file_addr);
  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
CommunicationKDP.h 170 SendRequestReadMemory (lldb::addr_t addr,
176 SendRequestWriteMemory (lldb::addr_t addr,
239 lldb::addr_t
249 SendRequestBreakpoint (bool set, lldb::addr_t addr);
348 lldb::addr_t m_last_read_memory_addr; // Last memory read address for logging
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCRuntimeV1.cpp 61 const addr_t object_ptr = in_value.GetPointerValue();
191 // addr_t isa_pointer = valobj.GetPointerValue();
263 lldb::addr_t name_ptr = process_sp->ReadPointerFromMemory(m_isa + 2 * ptr_size,error);
312 std::function <bool (const char *, const char *, lldb::addr_t, uint64_t)> const &ivar_func)
317 lldb::addr_t
336 lldb::addr_t objc_debug_class_hash_addr = symbol->GetAddress().GetLoadAddress(&process->GetTarget());
341 lldb::addr_t objc_debug_class_hash_ptr = process->ReadPointerFromMemory(objc_debug_class_hash_addr, error);
377 lldb::addr_t hash_table_ptr = GetISAHashTablePointer ();
400 const addr_t buckets_ptr = data.GetPointer(&offset);
415 const lldb::addr_t bucket_data = data.GetU32 (&offset)
    [all...]
  /external/lldb/source/Breakpoint/
BreakpointSiteList.cpp 38 lldb::addr_t bp_site_load_addr = bp->GetLoadAddress();
69 BreakpointSiteList::FindIDByAddress (lldb::addr_t addr)
95 BreakpointSiteList::RemoveByAddress (lldb::addr_t address)
115 bool operator() (std::pair <lldb::addr_t, BreakpointSiteSP> val_pair) const
165 BreakpointSiteList::FindByAddress (lldb::addr_t addr)
209 BreakpointSiteList::FindInRange (lldb::addr_t lower_bound, lldb::addr_t upper_bound, BreakpointSiteList &bp_site_list) const
  /external/lldb/source/Core/
Address.cpp 107 addr_t deref_addr = ReadUIntMax64 (exe_scope, address, pointer_size, success);
216 Address::Address (lldb::addr_t abs_addr) :
222 Address::Address (addr_t address, const SectionList *section_list) :
241 Address::ResolveAddressUsingFileSections (addr_t file_addr, const SectionList *section_list)
268 addr_t
274 addr_t sect_file_addr = section_sp->GetFileAddress();
288 addr_t
300 addr_t sect_load_addr = section_sp->GetLoadBaseAddress (target);
314 addr_t
324 addr_t code_addr = GetLoadAddress (target)
    [all...]
VMRange.cpp 20 VMRange::ContainsValue(const VMRange::collection& coll, lldb::addr_t value)
44 VMRange::FindRangeIndexThatContainsValue (const VMRange::collection& coll, lldb::addr_t value)
56 VMRange::Dump(Stream *s, lldb::addr_t offset, uint32_t addr_width) const
ValueObjectConstResultImpl.cpp 41 lldb::addr_t live_address) :
55 lldb::addr_t tgt_address = m_impl_backend->GetPointerValue();
178 lldb::DataBufferSP buffer(new lldb_private::DataBufferHeap(&m_live_address,sizeof(lldb::addr_t)));
199 lldb::addr_t
  /external/lldb/source/Target/
ThreadPlanRunToAddress.cpp 49 lldb::addr_t address,
64 const std::vector<lldb::addr_t> &addresses,
75 std::vector<lldb::addr_t>::iterator pos, end = m_addresses.end();
129 s->Address (m_addresses[i], sizeof (addr_t));
155 s->Address(m_addresses[i], sizeof (addr_t));
182 error->Address (m_addresses[i], sizeof (addr_t));
256 lldb::addr_t current_address = m_thread.GetRegisterContext()->GetPC();
ThreadPlanStepInstruction.cpp 74 s->Address(m_instruction_addr, sizeof (addr_t));
139 addr_t stop_addr = m_thread.GetStackFrameAtIndex(0)->GetRegisterContext()->GetPC();
142 addr_t return_addr = return_frame->GetRegisterContext()->GetPC();
ThreadPlanShouldStopHere.cpp 57 lldb::addr_t current_addr = m_owner->GetThread().GetRegisterContext()->GetPC(0);
  /external/lldb/include/lldb/API/
SBBreakpointLocation.h 40 lldb::addr_t
SBWatchpoint.h 45 lldb::addr_t
SBBreakpoint.h 53 FindLocationByAddress (lldb::addr_t vm_addr);
56 FindLocationIDByAddress (lldb::addr_t vm_addr);
  /external/lldb/include/lldb/Expression/
ClangUtilityFunction.h 86 ContainsAddress (lldb::addr_t address)
IRDynamicChecks.h 78 bool DoCheckersExplainStop (lldb::addr_t addr, Stream &message);
  /external/lldb/include/lldb/
lldb-types.h 72 typedef uint64_t addr_t; typedef in namespace:lldb
  /external/lldb/source/Symbol/
LineEntry.cpp 33 lldb::addr_t section_offset,
34 lldb::addr_t byte_size,
218 const lldb::addr_t a_byte_size = a.range.GetByteSize();
219 const lldb::addr_t b_byte_size = b.range.GetByteSize();
  /external/lldb/source/Plugins/Process/elf-core/
ProcessElfCore.cpp 124 lldb::addr_t
127 lldb::addr_t addr = header->p_vaddr;
179 lldb::addr_t vm_addr = 0;
197 lldb::addr_t last_addr = AddAddressRangeFromLoadSegment(header);
265 ProcessElfCore::ReadMemory (lldb::addr_t addr, void *buf, size_t size, Error &error)
273 ProcessElfCore::DoReadMemory (lldb::addr_t addr, void *buf, size_t size, Error &error)
289 const lldb::addr_t offset = addr - address_range->GetRangeBase();
290 const lldb::addr_t file_start = address_range->data.GetRangeBase();
291 const lldb::addr_t file_end = address_range->data.GetRangeEnd();
295 lldb::addr_t bytes_left = 0; // Number of bytes available in the core file from the given addres
    [all...]
  /external/lldb/include/lldb/Breakpoint/
WatchpointList.h 88 FindByAddress (lldb::addr_t addr) const;
131 FindIDByAddress (lldb::addr_t addr);

Completed in 327 milliseconds

1 2 3 45 6 7 8 91011>>