| /freebsd-11-stable/contrib/llvm-project/lldb/source/API/ |
| HD | SBTarget.cpp | 99 SBTarget::SBTarget() : m_opaque_sp() { in SBTarget() function in SBTarget 100 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBTarget); in SBTarget() 103 SBTarget::SBTarget(const SBTarget &rhs) : m_opaque_sp(rhs.m_opaque_sp) { in SBTarget() function in SBTarget 104 LLDB_RECORD_CONSTRUCTOR(SBTarget, (const lldb::SBTarget &), rhs); in SBTarget() 107 SBTarget::SBTarget(const TargetSP &target_sp) : m_opaque_sp(target_sp) { in SBTarget() function in SBTarget 108 LLDB_RECORD_CONSTRUCTOR(SBTarget, (const lldb::TargetSP &), target_sp); in SBTarget() 111 const SBTarget &SBTarget::operator=(const SBTarget &rhs) { in operator =() 112 LLDB_RECORD_METHOD(const lldb::SBTarget &, in operator =() 113 SBTarget, operator=,(const lldb::SBTarget &), rhs); in operator =() 121 SBTarget::~SBTarget() {} in ~SBTarget() [all …]
|
| HD | SBExecutionContext.cpp | 40 SBExecutionContext::SBExecutionContext(const lldb::SBTarget &target) in SBExecutionContext() 42 LLDB_RECORD_CONSTRUCTOR(SBExecutionContext, (const lldb::SBTarget &), target); in SBExecutionContext() 85 SBTarget SBExecutionContext::GetTarget() const { in GetTarget() 86 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBTarget, SBExecutionContext, in GetTarget() 89 SBTarget sb_target; in GetTarget() 146 LLDB_REGISTER_CONSTRUCTOR(SBExecutionContext, (const lldb::SBTarget &)); in RegisterMethods() 153 LLDB_REGISTER_METHOD_CONST(lldb::SBTarget, SBExecutionContext, GetTarget, in RegisterMethods()
|
| HD | SBDebugger.cpp | 726 lldb::SBTarget SBDebugger::CreateTarget(const char *filename, in CreateTarget() 732 lldb::SBTarget, SBDebugger, CreateTarget, in CreateTarget() 736 SBTarget sb_target; in CreateTarget() 766 SBTarget 769 LLDB_RECORD_METHOD(lldb::SBTarget, SBDebugger, in CreateTargetWithFileAndTargetTriple() 773 SBTarget sb_target; in CreateTargetWithFileAndTargetTriple() 794 SBTarget SBDebugger::CreateTargetWithFileAndArch(const char *filename, in CreateTargetWithFileAndArch() 796 LLDB_RECORD_METHOD(lldb::SBTarget, SBDebugger, CreateTargetWithFileAndArch, in CreateTargetWithFileAndArch() 801 SBTarget sb_target; in CreateTargetWithFileAndArch() 827 SBTarget SBDebugger::CreateTarget(const char *filename) { in CreateTarget() [all …]
|
| HD | SBInstruction.cpp | 114 const char *SBInstruction::GetMnemonic(SBTarget target) { in GetMnemonic() 115 LLDB_RECORD_METHOD(const char *, SBInstruction, GetMnemonic, (lldb::SBTarget), in GetMnemonic() 134 const char *SBInstruction::GetOperands(SBTarget target) { in GetOperands() 135 LLDB_RECORD_METHOD(const char *, SBInstruction, GetOperands, (lldb::SBTarget), in GetOperands() 154 const char *SBInstruction::GetComment(SBTarget target) { in GetComment() 155 LLDB_RECORD_METHOD(const char *, SBInstruction, GetComment, (lldb::SBTarget), in GetComment() 183 SBData SBInstruction::GetData(SBTarget target) { in GetData() 184 LLDB_RECORD_METHOD(lldb::SBData, SBInstruction, GetData, (lldb::SBTarget), in GetData() 359 (lldb::SBTarget)); in RegisterMethods() 361 (lldb::SBTarget)); in RegisterMethods() [all …]
|
| HD | SBAddress.cpp | 47 SBAddress::SBAddress(lldb::addr_t load_addr, lldb::SBTarget &target) in SBAddress() 49 LLDB_RECORD_CONSTRUCTOR(SBAddress, (lldb::addr_t, lldb::SBTarget &), in SBAddress() 120 lldb::addr_t SBAddress::GetLoadAddress(const SBTarget &target) const { in GetLoadAddress() 122 (const lldb::SBTarget &), target); in GetLoadAddress() 136 void SBAddress::SetLoadAddress(lldb::addr_t load_addr, lldb::SBTarget &target) { in SetLoadAddress() 138 (lldb::addr_t, lldb::SBTarget &), load_addr, target); in SetLoadAddress() 295 LLDB_REGISTER_CONSTRUCTOR(SBAddress, (lldb::addr_t, lldb::SBTarget &)); in RegisterMethods() 307 (const lldb::SBTarget &)); in RegisterMethods() 309 (lldb::addr_t, lldb::SBTarget &)); in RegisterMethods()
|
| HD | SBSymbol.cpp | 115 SBInstructionList SBSymbol::GetInstructions(SBTarget target) { in GetInstructions() 117 (lldb::SBTarget), target); in GetInstructions() 122 SBInstructionList SBSymbol::GetInstructions(SBTarget target, in GetInstructions() 125 (lldb::SBTarget, const char *), target, flavor_string); in GetInstructions() 232 (lldb::SBTarget)); in RegisterMethods() 234 (lldb::SBTarget, const char *)); in RegisterMethods()
|
| HD | SBFunction.cpp | 117 SBInstructionList SBFunction::GetInstructions(SBTarget target) { in GetInstructions() 119 (lldb::SBTarget), target); in GetInstructions() 124 SBInstructionList SBFunction::GetInstructions(SBTarget target, in GetInstructions() 127 (lldb::SBTarget, const char *), target, flavor); in GetInstructions() 268 (lldb::SBTarget)); in RegisterMethods() 270 (lldb::SBTarget, const char *)); in RegisterMethods()
|
| HD | SBSourceManager.cpp | 81 SBSourceManager::SBSourceManager(const SBTarget &target) { in SBSourceManager() 82 LLDB_RECORD_CONSTRUCTOR(SBSourceManager, (const lldb::SBTarget &), target); in SBSourceManager() 148 LLDB_REGISTER_CONSTRUCTOR(SBSourceManager, (const lldb::SBTarget &)); in RegisterMethods()
|
| /freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/ |
| HD | SBDebugger.h | 129 lldb::SBTarget CreateTarget(const char *filename, const char *target_triple, 133 lldb::SBTarget CreateTargetWithFileAndTargetTriple(const char *filename, 136 lldb::SBTarget CreateTargetWithFileAndArch(const char *filename, 139 lldb::SBTarget CreateTarget(const char *filename); 141 lldb::SBTarget GetDummyTarget(); 144 bool DeleteTarget(lldb::SBTarget &target); 146 lldb::SBTarget GetTargetAtIndex(uint32_t idx); 148 uint32_t GetIndexOfTarget(lldb::SBTarget target); 150 lldb::SBTarget FindTargetWithProcessID(pid_t pid); 152 lldb::SBTarget FindTargetWithFileAndArch(const char *filename, [all …]
|
| HD | SBInstruction.h | 40 const char *GetMnemonic(lldb::SBTarget target); 42 const char *GetOperands(lldb::SBTarget target); 44 const char *GetComment(lldb::SBTarget target); 46 lldb::SBData GetData(lldb::SBTarget target);
|
| HD | SBTarget.h | 29 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); 804 bool operator==(const lldb::SBTarget &rhs) const; 806 bool operator!=(const lldb::SBTarget &rhs) const;
|
| HD | SBAddress.h | 26 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
|
| HD | SBModule.h | 184 lldb::SBValueList FindGlobalVariables(lldb::SBTarget &target, 198 lldb::SBValue FindFirstGlobalVariable(lldb::SBTarget &target, 296 friend class SBTarget; variable
|
| HD | SBBreakpoint.h | 146 friend class SBTarget; variable 155 SBBreakpointList(SBTarget &target); 174 friend class SBTarget;
|
| HD | SBExecutionContext.h | 30 SBExecutionContext(const lldb::SBTarget &target); 44 SBTarget GetTarget() const;
|
| HD | SBSymbol.h | 39 lldb::SBInstructionList GetInstructions(lldb::SBTarget target); 41 lldb::SBInstructionList GetInstructions(lldb::SBTarget target,
|
| HD | SBFunction.h | 38 lldb::SBInstructionList GetInstructions(lldb::SBTarget target); 40 lldb::SBInstructionList GetInstructions(lldb::SBTarget target,
|
| HD | SBAttachInfo.h | 16 class SBTarget; variable 168 friend class SBTarget;
|
| HD | SBSection.h | 43 lldb::addr_t GetLoadAddress(lldb::SBTarget &target); 88 friend class SBTarget; variable
|
| /freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/ |
| HD | SBDebugger.i | 257 lldb::SBTarget 264 lldb::SBTarget 268 lldb::SBTarget 272 lldb::SBTarget 278 lldb::SBTarget GetDummyTarget(); 284 DeleteTarget (lldb::SBTarget &target); 286 lldb::SBTarget 290 GetIndexOfTarget (lldb::SBTarget target); 292 lldb::SBTarget 295 lldb::SBTarget [all …]
|
| HD | SBInstruction.i | 36 GetMnemonic (lldb::SBTarget target); 39 GetOperands (lldb::SBTarget target); 42 GetComment (lldb::SBTarget target); 45 GetData (lldb::SBTarget target);
|
| HD | SBTarget.i | 48 ) SBTarget; 49 class SBTarget 67 SBTarget (); 69 SBTarget (const lldb::SBTarget& rhs); 74 ~SBTarget(); 87 static lldb::SBTarget 959 operator == (const lldb::SBTarget &rhs) const; 962 operator != (const lldb::SBTarget &rhs) const; 970 STRING_EXTENSION_LEVEL(SBTarget, lldb::eDescriptionLevelBrief)
|
| HD | SBAddress.i | 57 SBAddress (lldb::addr_t load_addr, lldb::SBTarget &target); 84 GetLoadAddress (const lldb::SBTarget &target) const; 88 lldb::SBTarget &target);
|
| HD | SBExecutionContext.i | 18 SBExecutionContext (const lldb::SBTarget &target); 28 SBTarget
|
| HD | SBSymbol.i | 43 GetInstructions (lldb::SBTarget target); 46 GetInstructions (lldb::SBTarget target, const char *flavor_string);
|