HomeSort by relevance Sort by last modified time
    Searched refs:addr_t (Results 1 - 25 of 319) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /hardware/samsung_slsi/exynos5/mobicore/daemon/Common/
McTypes.h 36 typedef void *addr_t; typedef
CWsm.h 44 addr_t virtAddr;
47 addr_t physAddr;
49 CWsm(addr_t virtAddr,
53 addr_t physAddr = NULL) :
  /external/lldb/source/Plugins/Process/Utility/
InferiorCallPOSIX.h 33 bool InferiorCallMmap(Process *proc, lldb::addr_t &allocated_addr,
34 lldb::addr_t addr, lldb::addr_t length, unsigned prot,
35 unsigned flags, lldb::addr_t fd, lldb::addr_t offset);
37 bool InferiorCallMunmap(Process *proc, lldb::addr_t addr, lldb::addr_t length);
39 bool InferiorCall(Process *proc, const Address *address, lldb::addr_t &returned_func);
UnwindMacOSXFrameBackchain.h 45 lldb::addr_t& cfa,
46 lldb::addr_t& pc);
55 lldb::addr_t pc; // Program counter
56 lldb::addr_t fp; // Frame pointer for us with backchain
  /external/lldb/include/lldb/Target/
ABI.h 35 lldb::addr_t sp,
36 lldb::addr_t functionAddress,
37 lldb::addr_t returnAddress,
38 lldb::addr_t *arg1_ptr = NULL,
39 lldb::addr_t *arg2_ptr = NULL,
40 lldb::addr_t *arg3_ptr = NULL,
41 lldb::addr_t *arg4_ptr = NULL,
42 lldb::addr_t *arg5_ptr = NULL,
43 lldb::addr_t *arg6_ptr = NULL) const = 0;
87 CallFrameAddressIsValid (lldb::addr_t cfa) = 0
    [all...]
ThreadPlanCallFunction.h 32 lldb::addr_t arg,
36 lldb::addr_t *this_arg = 0,
37 lldb::addr_t *cmd_arg = 0);
45 lldb::addr_t *arg1_ptr = NULL,
46 lldb::addr_t *arg2_ptr = NULL,
47 lldb::addr_t *arg3_ptr = NULL,
48 lldb::addr_t *arg4_ptr = NULL,
49 lldb::addr_t *arg5_ptr = NULL,
50 lldb::addr_t *arg6_ptr = NULL);
104 lldb::addr_t
    [all...]
Memory.h 44 Flush (lldb::addr_t addr, size_t size);
47 Read (lldb::addr_t addr,
59 AddInvalidRange (lldb::addr_t base_addr, lldb::addr_t byte_size);
62 RemoveInvalidRange (lldb::addr_t base_addr, lldb::addr_t byte_size);
65 typedef std::map<lldb::addr_t, lldb::DataBufferSP> BlockMap;
66 typedef RangeArray<lldb::addr_t, lldb::addr_t, 4> InvalidRanges;
83 AllocatedBlock (lldb::addr_t addr,
    [all...]
SectionLoadList.h 52 lldb::addr_t
56 ResolveLoadAddress (lldb::addr_t load_addr, Address &so_addr) const;
59 SetSectionLoadAddress (const lldb::SectionSP &section_sp, lldb::addr_t load_addr, bool warn_multiple = false);
65 SetSectionUnloaded (const lldb::SectionSP &section_sp, lldb::addr_t load_addr);
77 typedef std::map<lldb::addr_t, lldb::SectionSP> addr_to_sect_collection;
78 typedef llvm::DenseMap<const Section *, lldb::addr_t> sect_to_addr_collection;
StackID.h 36 StackID (lldb::addr_t pc, lldb::addr_t cfa, SymbolContextScope *symbol_scope) :
54 lldb::addr_t
60 lldb::addr_t
115 SetPC (lldb::addr_t pc)
124 lldb::addr_t m_pc; // The pc value for the function/symbol for this frame. This will
128 lldb::addr_t m_cfa; // The call frame address (stack pointer) value
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Kernel/Platforms/Generic/
CMcKMod.h 62 addr_t *pVirtAddr,
63 addr_t *pPhysAddr);
80 addr_t *pVirtAddr,
81 addr_t *pPhysAddr,
90 addr_t *pVirtAddr,
91 addr_t *pPhysAddr);
93 int read(addr_t buffer, uint32_t len);
111 mcResult_t free(uint32_t handle, addr_t buffer, uint32_t len);
114 addr_t buffer,
118 addr_t *pPhysWsmL2)
    [all...]
  /external/lldb/include/lldb/Core/
VMRange.h 36 VMRange(lldb::addr_t start_addr, lldb::addr_t end_addr) :
55 Reset (lldb::addr_t start_addr, lldb::addr_t end_addr)
63 SetBaseAddress (lldb::addr_t base_addr)
69 SetEndAddress (lldb::addr_t end_addr)
71 const lldb::addr_t base_addr = GetBaseAddress();
78 lldb::addr_t
85 SetByteSize (lldb::addr_t byte_size)
90 lldb::addr_t
    [all...]
AddressRange.h 48 AddressRange (const lldb::SectionSP &section, lldb::addr_t offset, lldb::addr_t byte_size);
65 AddressRange (lldb::addr_t file_addr, lldb::addr_t byte_size, const SectionList *section_list = NULL);
79 AddressRange (const Address& so_addr, lldb::addr_t byte_size);
151 ContainsFileAddress (lldb::addr_t file_addr) const;
181 ContainsLoadAddress (lldb::addr_t load_addr, Target *target) const;
247 lldb::addr_t
270 SetByteSize (lldb::addr_t byte_size) { m_byte_size = byte_size; }
277 lldb::addr_t m_byte_size; ///< The size in bytes of this address range
    [all...]
  /external/lldb/include/lldb/Expression/
IRMemoryMap.h 52 lldb::addr_t Malloc (size_t size, uint8_t alignment, uint32_t permissions, AllocationPolicy policy, Error &error);
53 void Leak (lldb::addr_t process_address, Error &error);
54 void Free (lldb::addr_t process_address, Error &error);
56 void WriteMemory (lldb::addr_t process_address, const uint8_t *bytes, size_t size, Error &error);
57 void WriteScalarToMemory (lldb::addr_t process_address, Scalar &scalar, size_t size, Error &error);
58 void WritePointerToMemory (lldb::addr_t process_address, lldb::addr_t address, Error &error);
59 void ReadMemory (uint8_t *bytes, lldb::addr_t process_address, size_t size, Error &error);
60 void ReadScalarFromMemory (Scalar &scalar, lldb::addr_t process_address, size_t size, Error &error);
61 void ReadPointerFromMemory (lldb::addr_t *address, lldb::addr_t process_address, Error &error)
    [all...]
DWARFExpression.h 99 lldb::addr_t location_list_base_addr,
131 LocationListContainsAddress (lldb::addr_t loclist_base_addr, lldb::addr_t addr) const;
154 lldb::addr_t
158 Update_DW_OP_addr (lldb::addr_t file_addr);
229 SetLocationListSlide (lldb::addr_t slide);
255 lldb::addr_t loclist_base_load_addr,
269 lldb::addr_t loclist_base_load_addr,
373 lldb::addr_t loclist_base_load_addr,
374 lldb::addr_t address
    [all...]
ClangExpression.h 137 lldb::addr_t
146 lldb::addr_t m_jit_start_addr; ///< The address of the JITted function within the JIT allocation. LLDB_INVALID_ADDRESS if invalid.
147 lldb::addr_t m_jit_end_addr; ///< The address of the JITted function within the JIT allocation. LLDB_INVALID_ADDRESS if invalid.
IRInterpreter.h 52 llvm::ArrayRef<lldb::addr_t> args,
55 lldb::addr_t stack_frame_bottom,
56 lldb::addr_t stack_frame_top);
  /external/lldb/source/Plugins/ABI/MacOSX-arm/
ABIMacOSX_arm.h 30 lldb::addr_t sp,
31 lldb::addr_t func_addr,
32 lldb::addr_t returnAddress,
33 lldb::addr_t *arg1_ptr = NULL,
34 lldb::addr_t *arg2_ptr = NULL,
35 lldb::addr_t *arg3_ptr = NULL,
36 lldb::addr_t *arg4_ptr = NULL,
37 lldb::addr_t *arg5_ptr = NULL,
38 lldb::addr_t *arg6_ptr = NULL) const;
69 CallFrameAddressIsValid (lldb::addr_t cfa
    [all...]
  /external/lldb/source/Plugins/ABI/MacOSX-i386/
ABIMacOSX_i386.h 33 lldb::addr_t sp,
34 lldb::addr_t func_addr,
35 lldb::addr_t return_addr,
36 lldb::addr_t *arg1_ptr = NULL,
37 lldb::addr_t *arg2_ptr = NULL,
38 lldb::addr_t *arg3_ptr = NULL,
39 lldb::addr_t *arg4_ptr = NULL,
40 lldb::addr_t *arg5_ptr = NULL,
41 lldb::addr_t *arg6_ptr = NULL) const;
45 lldb::addr_t sp
    [all...]
  /external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DYLDRendezvous.h 41 lldb::addr_t map_addr;
42 lldb::addr_t brk;
44 lldb::addr_t ldbase;
72 lldb::addr_t
81 lldb::addr_t
91 lldb::addr_t
100 lldb::addr_t
131 lldb::addr_t base_addr; ///< Base address of the loaded object.
132 lldb::addr_t path_addr; ///< String naming the shared object.
133 lldb::addr_t dyn_addr; ///< Dynamic section of shared object
    [all...]
  /hardware/samsung_slsi/exynos5/mobicore/daemon/ClientLib/
Session.h 45 addr_t virtAddr; /**< The virtual address of the Bulk buffer*/
46 addr_t sVirtualAddr; /**< The secure virtual address of the Bulk buffer*/
49 addr_t physAddrWsmL2; /**< The physical address of the L2 table of the Bulk buffer*/
52 addr_t virtAddr,
53 addr_t sVirtAddr,
56 addr_t physAddrWsmL2
120 mcResult_t addBulkBuf(addr_t buf, uint32_t len, BulkBufferDescriptor **blkBuf);
130 mcResult_t removeBulkBuf(addr_t buf);
139 uint32_t getBufHandle(addr_t sVirtualAddr);
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCTrampolineHandler.h 42 AddrIsMsgForward (lldb::addr_t addr) const
64 lldb::addr_t
87 VTableDescriptor(uint32_t in_flags, lldb::addr_t in_code_start) :
92 lldb::addr_t code_start;
108 VTableRegion(AppleObjCVTables *owner, lldb::addr_t header_addr);
112 lldb::addr_t GetNextRegionAddr ()
117 lldb::addr_t
123 lldb::addr_t
130 GetFlagsForVTableAtAddress (lldb::addr_t address)
142 AddressInRegion (lldb::addr_t addr, uint32_t &flags)
    [all...]
AppleThreadPlanStepThroughObjCTrampoline.h 35 lldb::addr_t isa_addr,
36 lldb::addr_t sel_addr,
91 lldb::addr_t m_args_addr; // Stores the address for our step through function result structure.
92 //lldb::addr_t m_object_addr; // This is only for Description.
94 lldb::addr_t m_isa_addr; // isa_addr and sel_addr are the keys we will use to cache the implementation.
95 lldb::addr_t m_sel_addr;
  /external/lldb/source/Plugins/ABI/SysV-x86_64/
ABISysV_x86_64.h 34 lldb::addr_t sp,
35 lldb::addr_t functionAddress,
36 lldb::addr_t returnAddress,
37 lldb::addr_t *arg1_ptr = NULL,
38 lldb::addr_t *arg2_ptr = NULL,
39 lldb::addr_t *arg3_ptr = NULL,
40 lldb::addr_t *arg4_ptr = NULL,
41 lldb::addr_t *arg5_ptr = NULL,
42 lldb::addr_t *arg6_ptr = NULL) const;
77 CallFrameAddressIsValid (lldb::addr_t cfa
    [all...]
  /external/lldb/include/lldb/Breakpoint/
StoppointLocation.h 30 lldb::addr_t m_addr,
34 lldb::addr_t m_addr,
48 virtual lldb::addr_t
55 SetLoadAddress (lldb::addr_t addr)
121 lldb::addr_t m_addr; // The load address of this stop point. The base Stoppoint doesn't
  /external/lldb/source/Plugins/Process/mach-core/
ProcessMachCore.h 106 ReadMemory (lldb::addr_t addr, void *buf, size_t size, lldb_private::Error &error);
109 DoReadMemory (lldb::addr_t addr, void *buf, size_t size, lldb_private::Error &error);
111 virtual lldb::addr_t
128 GetDynamicLoaderAddress (lldb::addr_t addr);
133 typedef lldb_private::Range<lldb::addr_t, lldb::addr_t> FileRange;
134 typedef lldb_private::RangeDataVector<lldb::addr_t, lldb::addr_t, FileRange> VMRangeToFileOffset;
139 lldb::addr_t m_dyld_addr;

Completed in 2212 milliseconds

1 2 3 4 5 6 7 8 91011>>