Home
last modified time | relevance | path

Searched refs:SBTarget (Results 1 – 25 of 97) sorted by relevance

1234

/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBTarget.cpp96 SBTarget::SBTarget() { LLDB_INSTRUMENT_VA(this); } in SBTarget() function in SBTarget
98 SBTarget::SBTarget(const SBTarget &rhs) : m_opaque_sp(rhs.m_opaque_sp) { in SBTarget() function in SBTarget
102 SBTarget::SBTarget(const TargetSP &target_sp) : m_opaque_sp(target_sp) { in SBTarget() function in SBTarget
106 const SBTarget &SBTarget::operator=(const SBTarget &rhs) { in operator =()
115 SBTarget::~SBTarget() = default;
117 bool SBTarget::EventIsTargetEvent(const SBEvent &event) { in EventIsTargetEvent()
123 SBTarget SBTarget::GetTargetFromEvent(const SBEvent &event) { in GetTargetFromEvent()
129 uint32_t SBTarget::GetNumModulesFromEvent(const SBEvent &event) { in GetNumModulesFromEvent()
137 SBModule SBTarget::GetModuleAtIndexFromEvent(const uint32_t idx, in GetModuleAtIndexFromEvent()
146 const char *SBTarget::GetBroadcasterClassName() { in GetBroadcasterClassName()
[all …]
H A DSBDebugger.cpp808 lldb::SBTarget SBDebugger::CreateTarget(const char *filename, in CreateTarget()
816 SBTarget sb_target; in CreateTarget()
846 SBTarget
851 SBTarget sb_target; in CreateTargetWithFileAndTargetTriple()
872 SBTarget SBDebugger::CreateTargetWithFileAndArch(const char *filename, in CreateTargetWithFileAndArch()
878 SBTarget sb_target; in CreateTargetWithFileAndArch()
916 SBTarget SBDebugger::CreateTarget(const char *filename) { in CreateTarget()
919 SBTarget sb_target; in CreateTarget()
940 SBTarget SBDebugger::GetDummyTarget() { in GetDummyTarget()
943 SBTarget sb_target; in GetDummyTarget()
[all …]
H A DSBExecutionContext.cpp35 SBExecutionContext::SBExecutionContext(const lldb::SBTarget &target) in SBExecutionContext()
77 SBTarget SBExecutionContext::GetTarget() const { in GetTarget()
80 SBTarget sb_target; in GetTarget()
H A DSBInstruction.cpp110 const char *SBInstruction::GetMnemonic(SBTarget target) { in GetMnemonic()
129 const char *SBInstruction::GetOperands(SBTarget target) { in GetOperands()
148 const char *SBInstruction::GetComment(SBTarget target) { in GetComment()
167 lldb::InstructionControlFlowKind SBInstruction::GetControlFlowKind(lldb::SBTarget target) { in GetControlFlowKind()
195 SBData SBInstruction::GetData(SBTarget target) { in GetData()
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBDebugger.h195 lldb::SBTarget CreateTarget(const char *filename, const char *target_triple,
199 lldb::SBTarget CreateTargetWithFileAndTargetTriple(const char *filename,
202 lldb::SBTarget CreateTargetWithFileAndArch(const char *filename,
205 lldb::SBTarget CreateTarget(const char *filename);
207 lldb::SBTarget GetDummyTarget();
210 bool DeleteTarget(lldb::SBTarget &target);
212 lldb::SBTarget GetTargetAtIndex(uint32_t idx);
214 uint32_t GetIndexOfTarget(lldb::SBTarget target);
216 lldb::SBTarget FindTargetWithProcessID(pid_t pid);
218 lldb::SBTarget FindTargetWithFileAndArch(const char *filename,
[all …]
H A DSBInstruction.h40 const char *GetMnemonic(lldb::SBTarget target);
42 const char *GetOperands(lldb::SBTarget target);
44 const char *GetComment(lldb::SBTarget target);
46 lldb::InstructionControlFlowKind GetControlFlowKind(lldb::SBTarget target);
48 lldb::SBData GetData(lldb::SBTarget target);
H A DSBTarget.h29 class LLDB_API SBTarget {
41 SBTarget();
43 SBTarget(const lldb::SBTarget &rhs);
45 SBTarget(const lldb::TargetSP &target_sp);
48 ~SBTarget();
50 const lldb::SBTarget &operator=(const lldb::SBTarget &rhs);
58 static lldb::SBTarget GetTargetFromEvent(const lldb::SBEvent &event);
830 bool operator==(const lldb::SBTarget &rhs) const;
832 bool operator!=(const lldb::SBTarget &rhs) const;
H A DSBAddress.h26 SBAddress(lldb::addr_t load_addr, lldb::SBTarget &target);
44 addr_t GetLoadAddress(const lldb::SBTarget &target) const;
48 void SetLoadAddress(lldb::addr_t load_addr, lldb::SBTarget &target);
100 friend class SBTarget; variable
H A DSBBreakpoint.h45 lldb::SBTarget GetTarget() const;
152 friend class SBTarget; variable
161 SBBreakpointList(SBTarget &target);
180 friend class SBTarget;
H A DSBExecutionContext.h30 SBExecutionContext(const lldb::SBTarget &target);
44 SBTarget GetTarget() const;
H A DSBModule.h186 lldb::SBValueList FindGlobalVariables(lldb::SBTarget &target,
200 lldb::SBValue FindFirstGlobalVariable(lldb::SBTarget &target,
304 friend class SBTarget; variable
H A DSBFunction.h38 lldb::SBInstructionList GetInstructions(lldb::SBTarget target);
40 lldb::SBInstructionList GetInstructions(lldb::SBTarget target,
H A DSBSymbol.h39 lldb::SBInstructionList GetInstructions(lldb::SBTarget target);
41 lldb::SBInstructionList GetInstructions(lldb::SBTarget target,
H A DSBAttachInfo.h16 class SBTarget; variable
168 friend class SBTarget;
H A DSBSection.h43 lldb::addr_t GetLoadAddress(lldb::SBTarget &target);
94 friend class SBTarget; variable
H A DSBBreakpointName.h26 SBBreakpointName(SBTarget &target, const char *name);
112 friend class SBTarget;
/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBDebugger.i281 lldb::SBTarget
288 lldb::SBTarget
292 lldb::SBTarget
296 lldb::SBTarget
302 lldb::SBTarget GetDummyTarget();
308 DeleteTarget (lldb::SBTarget &target);
310 lldb::SBTarget
314 GetIndexOfTarget (lldb::SBTarget target);
316 lldb::SBTarget
319 lldb::SBTarget
[all …]
H A DSBInstruction.i39 GetMnemonic (lldb::SBTarget target);
42 GetOperands (lldb::SBTarget target);
45 GetComment (lldb::SBTarget target);
48 GetControlFlowKind(lldb::SBTarget target);
51 GetData (lldb::SBTarget target);
H A DSBTarget.i48 ) SBTarget;
49 class SBTarget
67 SBTarget ();
69 SBTarget (const lldb::SBTarget& rhs);
74 ~SBTarget();
87 static lldb::SBTarget
970 operator == (const lldb::SBTarget &rhs) const;
973 operator != (const lldb::SBTarget &rhs) const;
981 STRING_EXTENSION_LEVEL(SBTarget, lldb::eDescriptionLevelBrief)
H A DSBExecutionContext.i21 SBExecutionContext (const lldb::SBTarget &target);
31 SBTarget
H A DSBAddress.i58 SBAddress (lldb::addr_t load_addr, lldb::SBTarget &target);
85 GetLoadAddress (const lldb::SBTarget &target) const;
89 lldb::SBTarget &target);
H A DSBFunction.i69 GetInstructions (lldb::SBTarget target);
72 GetInstructions (lldb::SBTarget target, const char *flavor);
H A DSBSymbol.i41 GetInstructions (lldb::SBTarget target);
44 GetInstructions (lldb::SBTarget target, const char *flavor_string);
/openbsd-src/gnu/llvm/lldb/utils/lui/
H A Ddebuggerdriver.py35 lldb.SBTarget.GetBroadcasterClassName(),
36 lldb.SBTarget.eBroadcastBitBreakpointChanged
39 | lldb.SBTarget.eBroadcastBitWatchpointChanged
/openbsd-src/gnu/llvm/lldb/tools/intel-features/intel-mpx/
H A Dcli-wrapper-mpxtable.cpp77 lldb::SBTarget &target, llvm::Triple::ArchType arch, in GetBTEntryAddr()
152 static bool GetBTEntry(uint64_t bndcfgu, uint64_t ptr, lldb::SBTarget &target, in GetBTEntry()
216 lldb::addr_t ubound, lldb::SBTarget &target, in SetBTEntry()
250 static bool GetInitInfo(lldb::SBDebugger debugger, lldb::SBTarget &target, in GetInitInfo()
329 lldb::SBTarget target; in DoExecute()
373 lldb::SBTarget target; in DoExecute()

1234