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

1 2 34 5 6 7 8 91011>>

  /external/lldb/source/Plugins/Process/Utility/
UnwindMacOSXFrameBackchain.cpp 57 UnwindMacOSXFrameBackchain::DoGetFrameInfoAtIndex (uint32_t idx, addr_t& cfa, addr_t& pc)
97 std::pair<lldb::addr_t, lldb::addr_t> fp_pc_pair;
132 lldb::addr_t first_frame_pc = m_cursors.front().pc;
158 lldb::addr_t first_frame_sp = reg_ctx->GetSP (0);
196 std::pair<lldb::addr_t, lldb::addr_t> fp_pc_pair;
231 lldb::addr_t first_frame_pc = m_cursors.front().pc;
257 lldb::addr_t first_frame_sp = reg_ctx->GetSP (0)
    [all...]
InferiorCallPOSIX.cpp 26 bool lldb_private::InferiorCallMmap(Process *process, addr_t &allocated_addr,
27 addr_t addr, addr_t length, unsigned prot,
28 unsigned flags, addr_t fd, addr_t offset) {
57 addr_t prot_arg, flags_arg = 0;
139 bool lldb_private::InferiorCallMunmap(Process *process, addr_t addr,
140 addr_t length) {
213 bool lldb_private::InferiorCall(Process *process, const Address *address, addr_t &returned_func) {
  /external/lldb/source/Plugins/Process/gdb-remote/
ProcessGDBRemote.h 162 virtual lldb::addr_t
169 DoReadMemory (lldb::addr_t addr, void *buf, size_t size, lldb_private::Error &error);
172 DoWriteMemory (lldb::addr_t addr, const void *buf, size_t size, lldb_private::Error &error);
174 virtual lldb::addr_t
178 GetMemoryRegionInfo (lldb::addr_t load_addr,
182 DoDeallocateMemory (lldb::addr_t ptr);
323 typedef std::map<lldb::addr_t, lldb::addr_t> MMapMap;
329 lldb::addr_t m_dispatch_queue_offsets_addr;
369 GetDispatchQueueNameForThread (lldb::addr_t thread_dispatch_qaddr
    [all...]
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCRuntimeV2.cpp 312 lldb::addr_t symbol_load_addr = symbol->GetAddress().GetLoadAddress(&process->GetTarget());
380 const addr_t object_ptr = in_value.GetPointerValue();
562 addr_t ivar_offset_address = ivar_offset_symbol.symbol->GetAddress().GetLoadAddress (&target);
578 AppleObjCRuntimeV2::IsTaggedPointer(addr_t ptr)
611 ParseHeader (Process* process, lldb::addr_t load_addr)
630 lldb::addr_t cursor = load_addr + m_process->GetAddressByteSize();
712 lldb::addr_t pairs_ptr = m_parent.m_buckets_ptr;
714 lldb::addr_t pair_ptr = pairs_ptr + (m_index * map_pair_size);
718 lldb::addr_t key = m_parent.m_process->ReadPointerFromMemory(pair_ptr, err);
721 lldb::addr_t value = m_parent.m_process->ReadPointerFromMemory(pair_ptr + m_parent.m_process->GetAddressByteSiz (…)
    [all...]
  /external/lldb/source/Core/
Section.cpp 23 addr_t file_addr,
24 addr_t byte_size,
54 addr_t file_addr,
55 addr_t byte_size,
86 addr_t
101 lldb::addr_t
113 addr_t
116 addr_t load_base_addr = LLDB_INVALID_ADDRESS;
132 Section::ResolveContainedAddress (addr_t offset, Address &so_addr) const
141 addr_t child_offset = child_section->GetOffset()
    [all...]
ValueObjectConstResult.cpp 36 lldb::addr_t address)
47 lldb::addr_t address) :
67 lldb::addr_t address
81 lldb::addr_t address) :
111 lldb::addr_t address)
136 lldb::addr_t address) :
159 lldb::addr_t address,
174 lldb::addr_t address,
314 lldb::addr_t
  /external/lldb/scripts/Python/interface/
SBSection.i 68 lldb::addr_t
71 lldb::addr_t
74 lldb::addr_t
SBBreakpointLocation.i 41 lldb::addr_t
  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
ProcessKDP.h 111 lldb::addr_t
160 DoReadMemory (lldb::addr_t addr, void *buf, size_t size, lldb_private::Error &error);
163 DoWriteMemory (lldb::addr_t addr, const void *buf, size_t size, lldb_private::Error &error);
165 virtual lldb::addr_t
169 DoDeallocateMemory (lldb::addr_t ptr);
252 lldb::addr_t m_kernel_load_addr;
  /external/lldb/include/lldb/Symbol/
DWARFCallFrameInfo.h 57 typedef RangeVector<lldb::addr_t, uint32_t> FunctionAddressAndSizeVector;
108 typedef RangeDataVector<lldb::addr_t, uint32_t, dw_offset_t> FDEEntryMap;
114 GetFDEEntryByFileAddress (lldb::addr_t file_offset, FDEEntryMap::Entry& fde_entry);
Symbol.h 39 lldb::addr_t value,
40 lldb::addr_t size,
219 lldb::addr_t
223 SetByteSize (lldb::addr_t size)
254 // SetValue (lldb::addr_t value);
UnwindTable.h 51 typedef std::map<lldb::addr_t, lldb::FuncUnwindersSP> collection;
LineTable.h 78 InsertLineEntry (lldb::addr_t file_addr,
96 lldb::addr_t file_addr,
235 typedef lldb_private::RangeArray<lldb::addr_t, lldb::addr_t, 32> FileAddressRanges;
266 typedef RangeDataVector<lldb::addr_t, lldb::addr_t, lldb::addr_t> FileRangeMap;
288 Entry ( lldb::addr_t _file_addr,
364 lldb::addr_t file_addr; ///< The file address for this line entry
ObjectFile.h 99 lldb::addr_t header_addr,
178 lldb::addr_t header_addr,
252 GetAddressClass (lldb::addr_t file_addr);
297 virtual lldb::addr_t
301 virtual lldb::addr_t
641 lldb::addr_t addr,
676 lldb::addr_t m_file_offset; ///< The offset in bytes into the file, or the address in memory
677 lldb::addr_t m_length; ///< The length of this object file if it is known (can be zero if length is unknown or can't be determined).
681 const lldb::addr_t m_memory_addr;
  /external/lldb/include/lldb/API/
SBFrame.h 39 lldb::addr_t
43 SetPC (lldb::addr_t new_pc);
45 lldb::addr_t
48 lldb::addr_t
  /external/lldb/include/lldb/Target/
RegisterContext.h 88 SetHardwareBreakpoint (lldb::addr_t addr, size_t size);
97 SetHardwareWatchpoint (lldb::addr_t addr, size_t size, bool read, bool write);
106 ReadRegisterValueFromMemory (const lldb_private::RegisterInfo *reg_info, lldb::addr_t src_addr, uint32_t src_len, RegisterValue &reg_value);
109 WriteRegisterValueToMemory (const lldb_private::RegisterInfo *reg_info, lldb::addr_t dst_addr, uint32_t dst_len, const RegisterValue &reg_value);
ThreadPlanStepInstruction.h 49 lldb::addr_t m_instruction_addr;
ThreadPlanStepOverBreakpoint.h 46 lldb::addr_t m_breakpoint_addr;
ThreadPlanStepOut.h 57 lldb::addr_t m_step_from_insn;
61 lldb::addr_t m_return_addr;
  /external/lldb/source/Target/
SectionLoadList.cpp 43 addr_t
47 addr_t section_load_addr = LLDB_INVALID_ADDRESS;
60 SectionLoadList::SetSectionLoadAddress (const lldb::SectionSP &section, addr_t load_addr, bool warn_multiple)
155 addr_t load_addr = sta_pos->second;
167 SectionLoadList::SetSectionUnloaded (const lldb::SectionSP &section_sp, addr_t load_addr)
202 SectionLoadList::ResolveLoadAddress (addr_t load_addr, Address &so_addr) const
213 const addr_t pos_load_addr = pos->first;
216 addr_t offset = load_addr - pos_load_addr;
232 addr_t offset = load_addr - rpos->first;
ThreadPlanCallFunction.cpp 42 lldb::addr_t &start_load_addr,
43 lldb::addr_t &function_load_addr)
131 addr_t arg,
135 addr_t *this_arg,
136 addr_t *cmd_arg) :
148 lldb::addr_t start_load_addr;
150 lldb::addr_t function_load_addr;
197 addr_t *arg1_ptr,
198 addr_t *arg2_ptr,
199 addr_t *arg3_ptr
    [all...]
  /external/lldb/source/Expression/
IRMemoryMap.cpp 49 lldb::addr_t
55 lldb::addr_t ret = LLDB_INVALID_ADDRESS;
71 lldb::addr_t candidate = LLDB_INVALID_ADDRESS;
106 IRMemoryMap::FindAllocation (lldb::addr_t addr, size_t size)
128 IRMemoryMap::IntersectsAllocation (lldb::addr_t addr, size_t size)
203 IRMemoryMap::Allocation::Allocation (lldb::addr_t process_alloc,
204 lldb::addr_t process_start,
234 lldb::addr_t
240 lldb::addr_t allocation_address = LLDB_INVALID_ADDRESS;
241 lldb::addr_t aligned_address = LLDB_INVALID_ADDRESS
    [all...]
ClangFunction.cpp 284 ClangFunction::WriteFunctionArguments (ExecutionContext &exe_ctx, lldb::addr_t &args_addr_ref, Stream &errors)
293 lldb::addr_t &args_addr_ref,
378 ClangFunction::InsertFunction (ExecutionContext &exe_ctx, lldb::addr_t &args_addr_ref, Stream &errors)
398 lldb::addr_t func_addr,
399 lldb::addr_t &args_addr,
404 lldb::addr_t *this_arg,
405 lldb::addr_t *cmd_arg)
438 ClangFunction::FetchFunctionResults (ExecutionContext &exe_ctx, lldb::addr_t args_addr, Value &ret_value)
472 ClangFunction::DeallocateFunctionResults (ExecutionContext &exe_ctx, lldb::addr_t args_addr)
474 std::list<lldb::addr_t>::iterator pos
    [all...]
  /external/lldb/source/Plugins/Process/mach-core/
ProcessMachCore.cpp 143 ProcessMachCore::GetDynamicLoaderAddress (lldb::addr_t addr)
246 addr_t vm_addr = 0;
252 lldb::addr_t section_vm_addr = section->GetFileAddress();
316 lldb::addr_t section_vm_addr_start = entry->GetRangeBase();
317 lldb::addr_t section_vm_addr_end = entry->GetRangeEnd();
318 for (lldb::addr_t section_vm_addr = section_vm_addr_start + 0x1000;
403 ProcessMachCore::ReadMemory (addr_t addr, void *buf, size_t size, Error &error)
411 ProcessMachCore::DoReadMemory (addr_t addr, void *buf, size_t size, Error &error)
420 const addr_t offset = addr - core_memory_entry->GetRangeBase();
421 const addr_t bytes_left = core_memory_entry->GetRangeEnd() - addr
    [all...]
  /external/lldb/include/lldb/Expression/
ClangExpressionParser.h 113 PrepareForExecution (lldb::addr_t &func_addr,
114 lldb::addr_t &func_end,

Completed in 298 milliseconds

1 2 34 5 6 7 8 91011>>