Searched refs:SBAddress (Results 1 - 25 of 53) sorted by relevance

123

/external/lldb/source/API/
H A DSBAddress.cpp1 //===-- SBAddress.cpp -------------------------------------------*- C++ -*-===//
10 #include "lldb/API/SBAddress.h"
25 SBAddress::SBAddress () : function in class:SBAddress
30 SBAddress::SBAddress (const Address *lldb_object_ptr) : function in class:SBAddress
37 SBAddress::SBAddress (const SBAddress &rhs) : function in class:SBAddress
45 SBAddress function in class:SBAddress
51 SBAddress::SBAddress (lldb::addr_t load_addr, lldb::SBTarget &target) : function in class:SBAddress
[all...]
H A DSBFunction.cpp168 SBAddress
171 SBAddress addr;
177 SBAddress
180 SBAddress addr;
H A DSBSymbol.cpp165 SBAddress
168 SBAddress addr;
176 SBAddress
179 SBAddress addr;
H A DSBBlock.cpp11 #include "lldb/API/SBAddress.h"
213 lldb::SBAddress
216 lldb::SBAddress sb_addr;
228 lldb::SBAddress
231 lldb::SBAddress sb_addr;
245 SBBlock::GetRangeIndexForBlockAddress (lldb::SBAddress block_addr)
/external/lldb/include/lldb/API/
H A DSBAddress.h1 //===-- SBAddress.h ---------------------------------------------*- C++ -*-===//
18 class SBAddress class in namespace:lldb
22 SBAddress ();
24 SBAddress (const lldb::SBAddress &rhs);
26 SBAddress (lldb::SBSection section, lldb::addr_t offset);
29 SBAddress (lldb::addr_t load_addr, lldb::SBTarget &target);
31 ~SBAddress ();
33 const lldb::SBAddress &
34 operator = (const lldb::SBAddress
[all...]
H A DSBBlock.h63 lldb::SBAddress
66 lldb::SBAddress
70 GetRangeIndexForBlockAddress (lldb::SBAddress block_addr);
101 friend class SBAddress;
H A DSBFunction.h14 #include "lldb/API/SBAddress.h"
47 lldb::SBAddress
50 lldb::SBAddress
80 friend class SBAddress;
H A DSBLineEntry.h14 #include "lldb/API/SBAddress.h"
32 lldb::SBAddress
35 lldb::SBAddress
74 friend class SBAddress;
H A DSBSymbol.h14 #include "lldb/API/SBAddress.h"
49 SBAddress
52 SBAddress
93 friend class SBAddress;
H A DSBSymbolContext.h53 GetParentOfInlinedScope (const SBAddress &curr_frame_pc,
54 SBAddress &parent_frame_addr) const;
60 friend class SBAddress;
H A DSBModule.h103 lldb::SBAddress
107 ResolveSymbolContextForAddress (const lldb::SBAddress& addr,
267 friend class SBAddress;
H A DSBInstruction.h39 SBAddress
H A DSBBreakpointLocation.h37 lldb::SBAddress
H A DSBCompileUnit.h91 friend class SBAddress;
/external/lldb/scripts/Python/interface/
H A DSBAddress.i1 //===-- SWIG Interface for SBAddress ----------------------------*- C++ -*-===//
15 The SBAddress class allows addresses to be relative to a section
43 See docstring of SBFunction for example usage of SBAddress."
44 ) SBAddress;
45 class SBAddress
49 SBAddress ();
51 SBAddress (const lldb::SBAddress &rhs);
53 SBAddress (lldb::SBSection section,
58 ") SBAddress;
[all...]
H A DSBInstructionList.i68 '''Access instructions by integer index for array access or by lldb.SBAddress to find an instruction that matches a section offset address object.'''
73 elif type(key) is SBAddress:
74 # Find an instruction using a lldb.SBAddress object
H A DSBLineEntry.i50 lldb::SBAddress
53 lldb::SBAddress
97 if _newclass: addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this line entry.''')
100 if _newclass: end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object that represents the end address (lldb.SBAddress) for this line entry.''')
H A DSBBreakpointLocation.i38 lldb::SBAddress
H A DSBFunction.i71 lldb::SBAddress
74 lldb::SBAddress
100 if _newclass: addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this function.''')
103 if _newclass: end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object that represents the end address (lldb.SBAddress) for this function.''')
H A DSBSymbol.i44 SBAddress
47 SBAddress
85 if _newclass: addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this symbol.''')
88 if _newclass: end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object that represents the end address (lldb.SBAddress) for this symbol.''')
H A DSBSymbolContext.i76 GetParentOfInlinedScope (const lldb::SBAddress &curr_frame_pc,
77 lldb::SBAddress &parent_frame_addr) const;
H A DSBBlock.i81 lldb::SBAddress
84 lldb::SBAddress
88 GetRangeIndexForBlockAddress (lldb::SBAddress block_addr);
113 '''A helper object that will lazily hand out an array of lldb.SBAddress that represent address ranges for a block.'''
126 if isinstance(key, SBAddress):
168 if _newclass: range = property(get_ranges_access_object, None, doc='''A read only property that allows item access to the address ranges for a block by integer (range = block.range[0]) and by lldb.SBAdddress (find the range that contains the specified lldb.SBAddress like "pc_range = lldb.frame.block.range[frame.addr]").''')
/external/lldb/test/python_api/disassemble-raw-data/
H A DTestDisassemble_VST1_64.py33 insts = target.GetInstructions(lldb.SBAddress(), raw_bytes)
48 insts = target.GetInstructions(lldb.SBAddress(), raw_bytes)
H A DTestDisassembleRawData.py29 insts = target.GetInstructions(lldb.SBAddress(), raw_bytes)
/external/lldb/test/python_api/default-constructor/
H A Dsb_module.py14 obj.ResolveSymbolContextForAddress(lldb.SBAddress(), 0)

Completed in 523 milliseconds

123