Lines Matching refs:SBTarget
100 SBTarget::SBTarget() : m_opaque_sp() { in SBTarget() function in SBTarget
101 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBTarget); in SBTarget()
104 SBTarget::SBTarget(const SBTarget &rhs) : m_opaque_sp(rhs.m_opaque_sp) { in SBTarget() function in SBTarget
105 LLDB_RECORD_CONSTRUCTOR(SBTarget, (const lldb::SBTarget &), rhs); in SBTarget()
108 SBTarget::SBTarget(const TargetSP &target_sp) : m_opaque_sp(target_sp) { in SBTarget() function in SBTarget
109 LLDB_RECORD_CONSTRUCTOR(SBTarget, (const lldb::TargetSP &), target_sp); in SBTarget()
112 const SBTarget &SBTarget::operator=(const SBTarget &rhs) { in operator =()
113 LLDB_RECORD_METHOD(const lldb::SBTarget &, in operator =()
114 SBTarget, operator=,(const lldb::SBTarget &), rhs); in operator =()
122 SBTarget::~SBTarget() = default;
124 bool SBTarget::EventIsTargetEvent(const SBEvent &event) { in EventIsTargetEvent()
125 LLDB_RECORD_STATIC_METHOD(bool, SBTarget, EventIsTargetEvent, in EventIsTargetEvent()
131 SBTarget SBTarget::GetTargetFromEvent(const SBEvent &event) { in GetTargetFromEvent()
132 LLDB_RECORD_STATIC_METHOD(lldb::SBTarget, SBTarget, GetTargetFromEvent, in GetTargetFromEvent()
139 uint32_t SBTarget::GetNumModulesFromEvent(const SBEvent &event) { in GetNumModulesFromEvent()
140 LLDB_RECORD_STATIC_METHOD(uint32_t, SBTarget, GetNumModulesFromEvent, in GetNumModulesFromEvent()
148 SBModule SBTarget::GetModuleAtIndexFromEvent(const uint32_t idx, in GetModuleAtIndexFromEvent()
150 LLDB_RECORD_STATIC_METHOD(lldb::SBModule, SBTarget, GetModuleAtIndexFromEvent, in GetModuleAtIndexFromEvent()
159 const char *SBTarget::GetBroadcasterClassName() { in GetBroadcasterClassName()
160 LLDB_RECORD_STATIC_METHOD_NO_ARGS(const char *, SBTarget, in GetBroadcasterClassName()
166 bool SBTarget::IsValid() const { in IsValid()
167 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBTarget, IsValid); in IsValid()
170 SBTarget::operator bool() const { in operator bool()
171 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBTarget, operator bool); in operator bool()
176 SBProcess SBTarget::GetProcess() { in GetProcess()
177 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBProcess, SBTarget, GetProcess); in GetProcess()
190 SBPlatform SBTarget::GetPlatform() { in GetPlatform()
191 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBPlatform, SBTarget, GetPlatform); in GetPlatform()
203 SBDebugger SBTarget::GetDebugger() const { in GetDebugger()
204 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBDebugger, SBTarget, GetDebugger); in GetDebugger()
213 SBStructuredData SBTarget::GetStatistics() { in GetStatistics()
214 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBStructuredData, SBTarget, GetStatistics); in GetStatistics()
234 void SBTarget::SetCollectingStats(bool v) { in SetCollectingStats()
235 LLDB_RECORD_METHOD(void, SBTarget, SetCollectingStats, (bool), v); in SetCollectingStats()
243 bool SBTarget::GetCollectingStats() { in GetCollectingStats()
244 LLDB_RECORD_METHOD_NO_ARGS(bool, SBTarget, GetCollectingStats); in GetCollectingStats()
252 SBProcess SBTarget::LoadCore(const char *core_file) { in LoadCore()
253 LLDB_RECORD_METHOD(lldb::SBProcess, SBTarget, LoadCore, (const char *), in LoadCore()
260 SBProcess SBTarget::LoadCore(const char *core_file, lldb::SBError &error) { in LoadCore()
261 LLDB_RECORD_METHOD(lldb::SBProcess, SBTarget, LoadCore, in LoadCore()
284 SBProcess SBTarget::LaunchSimple(char const **argv, char const **envp, in LaunchSimple()
286 LLDB_RECORD_METHOD(lldb::SBProcess, SBTarget, LaunchSimple, in LaunchSimple()
310 SBError SBTarget::Install() { in Install()
311 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBError, SBTarget, Install); in Install()
322 SBProcess SBTarget::Launch(SBListener &listener, char const **argv, in Launch()
328 LLDB_RECORD_METHOD(lldb::SBProcess, SBTarget, Launch, in Launch()
410 SBProcess SBTarget::Launch(SBLaunchInfo &sb_launch_info, SBError &error) { in Launch()
411 LLDB_RECORD_METHOD(lldb::SBProcess, SBTarget, Launch, in Launch()
459 lldb::SBProcess SBTarget::Attach(SBAttachInfo &sb_attach_info, SBError &error) { in Attach()
460 LLDB_RECORD_METHOD(lldb::SBProcess, SBTarget, Attach, in Attach()
494 lldb::SBProcess SBTarget::AttachToProcessWithID( in AttachToProcessWithID()
499 LLDB_RECORD_METHOD(lldb::SBProcess, SBTarget, AttachToProcessWithID, in AttachToProcessWithID()
525 lldb::SBProcess SBTarget::AttachToProcessWithName( in AttachToProcessWithName()
531 LLDB_RECORD_METHOD(lldb::SBProcess, SBTarget, AttachToProcessWithName, in AttachToProcessWithName()
554 lldb::SBProcess SBTarget::ConnectRemote(SBListener &listener, const char *url, in ConnectRemote()
558 lldb::SBProcess, SBTarget, ConnectRemote, in ConnectRemote()
589 SBFileSpec SBTarget::GetExecutable() { in GetExecutable()
590 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBFileSpec, SBTarget, GetExecutable); in GetExecutable()
603 bool SBTarget::operator==(const SBTarget &rhs) const { in operator ==()
604 LLDB_RECORD_METHOD_CONST(bool, SBTarget, operator==,(const lldb::SBTarget &), in operator ==()
610 bool SBTarget::operator!=(const SBTarget &rhs) const { in operator !=()
611 LLDB_RECORD_METHOD_CONST(bool, SBTarget, operator!=,(const lldb::SBTarget &), in operator !=()
617 lldb::TargetSP SBTarget::GetSP() const { return m_opaque_sp; } in GetSP()
619 void SBTarget::SetSP(const lldb::TargetSP &target_sp) { in SetSP()
623 lldb::SBAddress SBTarget::ResolveLoadAddress(lldb::addr_t vm_addr) { in ResolveLoadAddress()
624 LLDB_RECORD_METHOD(lldb::SBAddress, SBTarget, ResolveLoadAddress, in ResolveLoadAddress()
642 lldb::SBAddress SBTarget::ResolveFileAddress(lldb::addr_t file_addr) { in ResolveFileAddress()
643 LLDB_RECORD_METHOD(lldb::SBAddress, SBTarget, ResolveFileAddress, in ResolveFileAddress()
659 lldb::SBAddress SBTarget::ResolvePastLoadAddress(uint32_t stop_id, in ResolvePastLoadAddress()
661 LLDB_RECORD_METHOD(lldb::SBAddress, SBTarget, ResolvePastLoadAddress, in ResolvePastLoadAddress()
680 SBTarget::ResolveSymbolContextForAddress(const SBAddress &addr, in ResolveSymbolContextForAddress()
682 LLDB_RECORD_METHOD(lldb::SBSymbolContext, SBTarget, in ResolveSymbolContextForAddress()
697 size_t SBTarget::ReadMemory(const SBAddress addr, void *buf, size_t size, in ReadMemory()
699 LLDB_RECORD_METHOD(size_t, SBTarget, ReadMemory, in ReadMemory()
717 SBBreakpoint SBTarget::BreakpointCreateByLocation(const char *file, in BreakpointCreateByLocation()
719 LLDB_RECORD_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByLocation, in BreakpointCreateByLocation()
727 SBTarget::BreakpointCreateByLocation(const SBFileSpec &sb_file_spec, in BreakpointCreateByLocation()
729 LLDB_RECORD_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByLocation, in BreakpointCreateByLocation()
736 SBTarget::BreakpointCreateByLocation(const SBFileSpec &sb_file_spec, in BreakpointCreateByLocation()
738 LLDB_RECORD_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByLocation, in BreakpointCreateByLocation()
748 SBTarget::BreakpointCreateByLocation(const SBFileSpec &sb_file_spec, in BreakpointCreateByLocation()
751 LLDB_RECORD_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByLocation, in BreakpointCreateByLocation()
760 SBBreakpoint SBTarget::BreakpointCreateByLocation( in BreakpointCreateByLocation()
763 LLDB_RECORD_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByLocation, in BreakpointCreateByLocation()
790 SBBreakpoint SBTarget::BreakpointCreateByLocation( in BreakpointCreateByLocation()
794 LLDB_RECORD_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByLocation, in BreakpointCreateByLocation()
822 SBBreakpoint SBTarget::BreakpointCreateByName(const char *symbol_name, in BreakpointCreateByName()
824 LLDB_RECORD_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByName, in BreakpointCreateByName()
853 SBTarget::BreakpointCreateByName(const char *symbol_name, in BreakpointCreateByName()
856 LLDB_RECORD_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByName, in BreakpointCreateByName()
867 lldb::SBBreakpoint SBTarget::BreakpointCreateByName( in BreakpointCreateByName()
870 LLDB_RECORD_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByName, in BreakpointCreateByName()
880 lldb::SBBreakpoint SBTarget::BreakpointCreateByName( in BreakpointCreateByName()
884 LLDB_RECORD_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByName, in BreakpointCreateByName()
907 lldb::SBBreakpoint SBTarget::BreakpointCreateByNames( in BreakpointCreateByNames()
911 lldb::SBBreakpoint, SBTarget, BreakpointCreateByNames, in BreakpointCreateByNames()
921 lldb::SBBreakpoint SBTarget::BreakpointCreateByNames( in BreakpointCreateByNames()
925 LLDB_RECORD_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByNames, in BreakpointCreateByNames()
937 lldb::SBBreakpoint SBTarget::BreakpointCreateByNames( in BreakpointCreateByNames()
941 LLDB_RECORD_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByNames, in BreakpointCreateByNames()
964 SBBreakpoint SBTarget::BreakpointCreateByRegex(const char *symbol_name_regex, in BreakpointCreateByRegex()
966 LLDB_RECORD_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByRegex, in BreakpointCreateByRegex()
981 SBTarget::BreakpointCreateByRegex(const char *symbol_name_regex, in BreakpointCreateByRegex()
984 LLDB_RECORD_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByRegex, in BreakpointCreateByRegex()
993 lldb::SBBreakpoint SBTarget::BreakpointCreateByRegex( in BreakpointCreateByRegex()
997 lldb::SBBreakpoint, SBTarget, BreakpointCreateByRegex, in BreakpointCreateByRegex()
1020 SBBreakpoint SBTarget::BreakpointCreateByAddress(addr_t address) { in BreakpointCreateByAddress()
1021 LLDB_RECORD_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByAddress, in BreakpointCreateByAddress()
1035 SBBreakpoint SBTarget::BreakpointCreateBySBAddress(SBAddress &sb_address) { in BreakpointCreateBySBAddress()
1036 LLDB_RECORD_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateBySBAddress, in BreakpointCreateBySBAddress()
1055 SBTarget::BreakpointCreateBySourceRegex(const char *source_regex, in BreakpointCreateBySourceRegex()
1058 LLDB_RECORD_METHOD(lldb::SBBreakpoint, SBTarget, in BreakpointCreateBySourceRegex()
1078 lldb::SBBreakpoint SBTarget::BreakpointCreateBySourceRegex( in BreakpointCreateBySourceRegex()
1081 LLDB_RECORD_METHOD(lldb::SBBreakpoint, SBTarget, in BreakpointCreateBySourceRegex()
1091 lldb::SBBreakpoint SBTarget::BreakpointCreateBySourceRegex( in BreakpointCreateBySourceRegex()
1095 LLDB_RECORD_METHOD(lldb::SBBreakpoint, SBTarget, in BreakpointCreateBySourceRegex()
1122 SBTarget::BreakpointCreateForException(lldb::LanguageType language, in BreakpointCreateForException()
1124 LLDB_RECORD_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateForException, in BreakpointCreateForException()
1140 lldb::SBBreakpoint SBTarget::BreakpointCreateFromScript( in BreakpointCreateFromScript()
1145 lldb::SBBreakpoint, SBTarget, BreakpointCreateFromScript, in BreakpointCreateFromScript()
1170 uint32_t SBTarget::GetNumBreakpoints() const { in GetNumBreakpoints()
1171 LLDB_RECORD_METHOD_CONST_NO_ARGS(uint32_t, SBTarget, GetNumBreakpoints); in GetNumBreakpoints()
1181 SBBreakpoint SBTarget::GetBreakpointAtIndex(uint32_t idx) const { in GetBreakpointAtIndex()
1182 LLDB_RECORD_METHOD_CONST(lldb::SBBreakpoint, SBTarget, GetBreakpointAtIndex, in GetBreakpointAtIndex()
1194 bool SBTarget::BreakpointDelete(break_id_t bp_id) { in BreakpointDelete()
1195 LLDB_RECORD_METHOD(bool, SBTarget, BreakpointDelete, (lldb::break_id_t), in BreakpointDelete()
1208 SBBreakpoint SBTarget::FindBreakpointByID(break_id_t bp_id) { in FindBreakpointByID()
1209 LLDB_RECORD_METHOD(lldb::SBBreakpoint, SBTarget, FindBreakpointByID, in FindBreakpointByID()
1222 bool SBTarget::FindBreakpointsByName(const char *name, in FindBreakpointsByName()
1224 LLDB_RECORD_METHOD(bool, SBTarget, FindBreakpointsByName, in FindBreakpointsByName()
1245 void SBTarget::GetBreakpointNames(SBStringList &names) { in GetBreakpointNames()
1246 LLDB_RECORD_METHOD(void, SBTarget, GetBreakpointNames, (lldb::SBStringList &), in GetBreakpointNames()
1262 void SBTarget::DeleteBreakpointName(const char *name) { in DeleteBreakpointName()
1263 LLDB_RECORD_METHOD(void, SBTarget, DeleteBreakpointName, (const char *), in DeleteBreakpointName()
1273 bool SBTarget::EnableAllBreakpoints() { in EnableAllBreakpoints()
1274 LLDB_RECORD_METHOD_NO_ARGS(bool, SBTarget, EnableAllBreakpoints); in EnableAllBreakpoints()
1285 bool SBTarget::DisableAllBreakpoints() { in DisableAllBreakpoints()
1286 LLDB_RECORD_METHOD_NO_ARGS(bool, SBTarget, DisableAllBreakpoints); in DisableAllBreakpoints()
1297 bool SBTarget::DeleteAllBreakpoints() { in DeleteAllBreakpoints()
1298 LLDB_RECORD_METHOD_NO_ARGS(bool, SBTarget, DeleteAllBreakpoints); in DeleteAllBreakpoints()
1309 lldb::SBError SBTarget::BreakpointsCreateFromFile(SBFileSpec &source_file, in BreakpointsCreateFromFile()
1311 LLDB_RECORD_METHOD(lldb::SBError, SBTarget, BreakpointsCreateFromFile, in BreakpointsCreateFromFile()
1320 lldb::SBError SBTarget::BreakpointsCreateFromFile(SBFileSpec &source_file, in BreakpointsCreateFromFile()
1324 lldb::SBError, SBTarget, BreakpointsCreateFromFile, in BreakpointsCreateFromFile()
1357 lldb::SBError SBTarget::BreakpointsWriteToFile(SBFileSpec &dest_file) { in BreakpointsWriteToFile()
1358 LLDB_RECORD_METHOD(lldb::SBError, SBTarget, BreakpointsWriteToFile, in BreakpointsWriteToFile()
1371 lldb::SBError SBTarget::BreakpointsWriteToFile(SBFileSpec &dest_file, in BreakpointsWriteToFile()
1374 LLDB_RECORD_METHOD(lldb::SBError, SBTarget, BreakpointsWriteToFile, in BreakpointsWriteToFile()
1393 uint32_t SBTarget::GetNumWatchpoints() const { in GetNumWatchpoints()
1394 LLDB_RECORD_METHOD_CONST_NO_ARGS(uint32_t, SBTarget, GetNumWatchpoints); in GetNumWatchpoints()
1404 SBWatchpoint SBTarget::GetWatchpointAtIndex(uint32_t idx) const { in GetWatchpointAtIndex()
1405 LLDB_RECORD_METHOD_CONST(lldb::SBWatchpoint, SBTarget, GetWatchpointAtIndex, in GetWatchpointAtIndex()
1417 bool SBTarget::DeleteWatchpoint(watch_id_t wp_id) { in DeleteWatchpoint()
1418 LLDB_RECORD_METHOD(bool, SBTarget, DeleteWatchpoint, (lldb::watch_id_t), in DeleteWatchpoint()
1434 SBWatchpoint SBTarget::FindWatchpointByID(lldb::watch_id_t wp_id) { in FindWatchpointByID()
1435 LLDB_RECORD_METHOD(lldb::SBWatchpoint, SBTarget, FindWatchpointByID, in FindWatchpointByID()
1453 lldb::SBWatchpoint SBTarget::WatchAddress(lldb::addr_t addr, size_t size, in WatchAddress()
1456 LLDB_RECORD_METHOD(lldb::SBWatchpoint, SBTarget, WatchAddress, in WatchAddress()
1490 bool SBTarget::EnableAllWatchpoints() { in EnableAllWatchpoints()
1491 LLDB_RECORD_METHOD_NO_ARGS(bool, SBTarget, EnableAllWatchpoints); in EnableAllWatchpoints()
1504 bool SBTarget::DisableAllWatchpoints() { in DisableAllWatchpoints()
1505 LLDB_RECORD_METHOD_NO_ARGS(bool, SBTarget, DisableAllWatchpoints); in DisableAllWatchpoints()
1518 SBValue SBTarget::CreateValueFromAddress(const char *name, SBAddress addr, in CreateValueFromAddress()
1520 LLDB_RECORD_METHOD(lldb::SBValue, SBTarget, CreateValueFromAddress, in CreateValueFromAddress()
1538 lldb::SBValue SBTarget::CreateValueFromData(const char *name, lldb::SBData data, in CreateValueFromData()
1540 LLDB_RECORD_METHOD(lldb::SBValue, SBTarget, CreateValueFromData, in CreateValueFromData()
1558 lldb::SBValue SBTarget::CreateValueFromExpression(const char *name, in CreateValueFromExpression()
1560 LLDB_RECORD_METHOD(lldb::SBValue, SBTarget, CreateValueFromExpression, in CreateValueFromExpression()
1575 bool SBTarget::DeleteAllWatchpoints() { in DeleteAllWatchpoints()
1576 LLDB_RECORD_METHOD_NO_ARGS(bool, SBTarget, DeleteAllWatchpoints); in DeleteAllWatchpoints()
1589 void SBTarget::AppendImageSearchPath(const char *from, const char *to, in AppendImageSearchPath()
1591 LLDB_RECORD_METHOD(void, SBTarget, AppendImageSearchPath, in AppendImageSearchPath()
1608 lldb::SBModule SBTarget::AddModule(const char *path, const char *triple, in AddModule()
1610 LLDB_RECORD_METHOD(lldb::SBModule, SBTarget, AddModule, in AddModule()
1617 lldb::SBModule SBTarget::AddModule(const char *path, const char *triple, in AddModule()
1619 LLDB_RECORD_METHOD(lldb::SBModule, SBTarget, AddModule, in AddModule()
1647 lldb::SBModule SBTarget::AddModule(const SBModuleSpec &module_spec) { in AddModule()
1648 LLDB_RECORD_METHOD(lldb::SBModule, SBTarget, AddModule, in AddModule()
1659 bool SBTarget::AddModule(lldb::SBModule &module) { in AddModule()
1660 LLDB_RECORD_METHOD(bool, SBTarget, AddModule, (lldb::SBModule &), module); in AddModule()
1670 uint32_t SBTarget::GetNumModules() const { in GetNumModules()
1671 LLDB_RECORD_METHOD_CONST_NO_ARGS(uint32_t, SBTarget, GetNumModules); in GetNumModules()
1683 void SBTarget::Clear() { in Clear()
1684 LLDB_RECORD_METHOD_NO_ARGS(void, SBTarget, Clear); in Clear()
1689 SBModule SBTarget::FindModule(const SBFileSpec &sb_file_spec) { in FindModule()
1690 LLDB_RECORD_METHOD(lldb::SBModule, SBTarget, FindModule, in FindModule()
1703 SBSymbolContextList SBTarget::FindCompileUnits(const SBFileSpec &sb_file_spec) { in FindCompileUnits()
1704 LLDB_RECORD_METHOD(lldb::SBSymbolContextList, SBTarget, FindCompileUnits, in FindCompileUnits()
1714 lldb::ByteOrder SBTarget::GetByteOrder() { in GetByteOrder()
1715 LLDB_RECORD_METHOD_NO_ARGS(lldb::ByteOrder, SBTarget, GetByteOrder); in GetByteOrder()
1723 const char *SBTarget::GetTriple() { in GetTriple()
1724 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBTarget, GetTriple); in GetTriple()
1738 uint32_t SBTarget::GetDataByteSize() { in GetDataByteSize()
1739 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBTarget, GetDataByteSize); in GetDataByteSize()
1748 uint32_t SBTarget::GetCodeByteSize() { in GetCodeByteSize()
1749 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBTarget, GetCodeByteSize); in GetCodeByteSize()
1758 uint32_t SBTarget::GetAddressByteSize() { in GetAddressByteSize()
1759 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBTarget, GetAddressByteSize); in GetAddressByteSize()
1767 SBModule SBTarget::GetModuleAtIndex(uint32_t idx) { in GetModuleAtIndex()
1768 LLDB_RECORD_METHOD(lldb::SBModule, SBTarget, GetModuleAtIndex, (uint32_t), in GetModuleAtIndex()
1783 bool SBTarget::RemoveModule(lldb::SBModule module) { in RemoveModule()
1784 LLDB_RECORD_METHOD(bool, SBTarget, RemoveModule, (lldb::SBModule), module); in RemoveModule()
1792 SBBroadcaster SBTarget::GetBroadcaster() const { in GetBroadcaster()
1793 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBBroadcaster, SBTarget, in GetBroadcaster()
1804 bool SBTarget::GetDescription(SBStream &description, in GetDescription()
1806 LLDB_RECORD_METHOD(bool, SBTarget, GetDescription, in GetDescription()
1821 lldb::SBSymbolContextList SBTarget::FindFunctions(const char *name, in FindFunctions()
1823 LLDB_RECORD_METHOD(lldb::SBSymbolContextList, SBTarget, FindFunctions, in FindFunctions()
1842 lldb::SBSymbolContextList SBTarget::FindGlobalFunctions(const char *name, in FindGlobalFunctions()
1845 LLDB_RECORD_METHOD(lldb::SBSymbolContextList, SBTarget, FindGlobalFunctions, in FindGlobalFunctions()
1875 lldb::SBType SBTarget::FindFirstType(const char *typename_cstr) { in FindFirstType()
1876 LLDB_RECORD_METHOD(lldb::SBType, SBTarget, FindFirstType, (const char *), in FindFirstType()
1917 SBType SBTarget::GetBasicType(lldb::BasicType type) { in GetBasicType()
1918 LLDB_RECORD_METHOD(lldb::SBType, SBTarget, GetBasicType, (lldb::BasicType), in GetBasicType()
1930 lldb::SBTypeList SBTarget::FindTypes(const char *typename_cstr) { in FindTypes()
1931 LLDB_RECORD_METHOD(lldb::SBTypeList, SBTarget, FindTypes, (const char *), in FindTypes()
1974 SBValueList SBTarget::FindGlobalVariables(const char *name, in FindGlobalVariables()
1976 LLDB_RECORD_METHOD(lldb::SBValueList, SBTarget, FindGlobalVariables, in FindGlobalVariables()
2002 SBValueList SBTarget::FindGlobalVariables(const char *name, in FindGlobalVariables()
2005 LLDB_RECORD_METHOD(lldb::SBValueList, SBTarget, FindGlobalVariables, in FindGlobalVariables()
2048 lldb::SBValue SBTarget::FindFirstGlobalVariable(const char *name) { in FindFirstGlobalVariable()
2049 LLDB_RECORD_METHOD(lldb::SBValue, SBTarget, FindFirstGlobalVariable, in FindFirstGlobalVariable()
2058 SBSourceManager SBTarget::GetSourceManager() { in GetSourceManager()
2059 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBSourceManager, SBTarget, GetSourceManager); in GetSourceManager()
2065 lldb::SBInstructionList SBTarget::ReadInstructions(lldb::SBAddress base_addr, in ReadInstructions()
2067 LLDB_RECORD_METHOD(lldb::SBInstructionList, SBTarget, ReadInstructions, in ReadInstructions()
2073 lldb::SBInstructionList SBTarget::ReadInstructions(lldb::SBAddress base_addr, in ReadInstructions()
2076 LLDB_RECORD_METHOD(lldb::SBInstructionList, SBTarget, ReadInstructions, in ReadInstructions()
2105 lldb::SBInstructionList SBTarget::GetInstructions(lldb::SBAddress base_addr, in GetInstructions()
2108 LLDB_RECORD_METHOD(lldb::SBInstructionList, SBTarget, GetInstructions, in GetInstructions()
2117 SBTarget::GetInstructionsWithFlavor(lldb::SBAddress base_addr, in GetInstructionsWithFlavor()
2120 LLDB_RECORD_METHOD(lldb::SBInstructionList, SBTarget, in GetInstructionsWithFlavor()
2144 lldb::SBInstructionList SBTarget::GetInstructions(lldb::addr_t base_addr, in GetInstructions()
2147 LLDB_RECORD_METHOD(lldb::SBInstructionList, SBTarget, GetInstructions, in GetInstructions()
2156 SBTarget::GetInstructionsWithFlavor(lldb::addr_t base_addr, in GetInstructionsWithFlavor()
2159 LLDB_RECORD_METHOD(lldb::SBInstructionList, SBTarget, in GetInstructionsWithFlavor()
2168 SBError SBTarget::SetSectionLoadAddress(lldb::SBSection section, in SetSectionLoadAddress()
2170 LLDB_RECORD_METHOD(lldb::SBError, SBTarget, SetSectionLoadAddress, in SetSectionLoadAddress()
2207 SBError SBTarget::ClearSectionLoadAddress(lldb::SBSection section) { in ClearSectionLoadAddress()
2208 LLDB_RECORD_METHOD(lldb::SBError, SBTarget, ClearSectionLoadAddress, in ClearSectionLoadAddress()
2242 SBError SBTarget::SetModuleLoadAddress(lldb::SBModule module, in SetModuleLoadAddress()
2244 LLDB_RECORD_METHOD(lldb::SBError, SBTarget, SetModuleLoadAddress, in SetModuleLoadAddress()
2277 SBError SBTarget::ClearModuleLoadAddress(lldb::SBModule module) { in ClearModuleLoadAddress()
2278 LLDB_RECORD_METHOD(lldb::SBError, SBTarget, ClearModuleLoadAddress, in ClearModuleLoadAddress()
2329 lldb::SBSymbolContextList SBTarget::FindSymbols(const char *name, in FindSymbols()
2331 LLDB_RECORD_METHOD(lldb::SBSymbolContextList, SBTarget, FindSymbols, in FindSymbols()
2344 lldb::SBValue SBTarget::EvaluateExpression(const char *expr) { in EvaluateExpression()
2345 LLDB_RECORD_METHOD(lldb::SBValue, SBTarget, EvaluateExpression, in EvaluateExpression()
2360 lldb::SBValue SBTarget::EvaluateExpression(const char *expr, in EvaluateExpression()
2362 LLDB_RECORD_METHOD(lldb::SBValue, SBTarget, EvaluateExpression, in EvaluateExpression()
2396 lldb::addr_t SBTarget::GetStackRedZoneSize() { in GetStackRedZoneSize()
2397 LLDB_RECORD_METHOD_NO_ARGS(lldb::addr_t, SBTarget, GetStackRedZoneSize); in GetStackRedZoneSize()
2413 bool SBTarget::IsLoaded(const SBModule &module) const { in IsLoaded()
2414 LLDB_RECORD_METHOD_CONST(bool, SBTarget, IsLoaded, (const lldb::SBModule &), in IsLoaded()
2428 lldb::SBLaunchInfo SBTarget::GetLaunchInfo() const { in GetLaunchInfo()
2429 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBLaunchInfo, SBTarget, GetLaunchInfo); in GetLaunchInfo()
2438 void SBTarget::SetLaunchInfo(const lldb::SBLaunchInfo &launch_info) { in SetLaunchInfo()
2439 LLDB_RECORD_METHOD(void, SBTarget, SetLaunchInfo, in SetLaunchInfo()
2447 SBEnvironment SBTarget::GetEnvironment() { in GetEnvironment()
2448 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBEnvironment, SBTarget, GetEnvironment); in GetEnvironment()
2458 lldb::SBTrace SBTarget::GetTrace() { in GetTrace()
2459 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBTrace, SBTarget, GetTrace); in GetTrace()
2468 lldb::SBTrace SBTarget::CreateTrace(lldb::SBError &error) { in CreateTrace()
2469 LLDB_RECORD_METHOD(lldb::SBTrace, SBTarget, CreateTrace, (lldb::SBError &), in CreateTrace()
2490 void RegisterMethods<SBTarget>(Registry &R) { in RegisterMethods()
2491 LLDB_REGISTER_CONSTRUCTOR(SBTarget, ()); in RegisterMethods()
2492 LLDB_REGISTER_CONSTRUCTOR(SBTarget, (const lldb::SBTarget &)); in RegisterMethods()
2493 LLDB_REGISTER_CONSTRUCTOR(SBTarget, (const lldb::TargetSP &)); in RegisterMethods()
2494 LLDB_REGISTER_METHOD(const lldb::SBTarget &, in RegisterMethods()
2495 SBTarget, operator=,(const lldb::SBTarget &)); in RegisterMethods()
2496 LLDB_REGISTER_STATIC_METHOD(bool, SBTarget, EventIsTargetEvent, in RegisterMethods()
2498 LLDB_REGISTER_STATIC_METHOD(lldb::SBTarget, SBTarget, GetTargetFromEvent, in RegisterMethods()
2500 LLDB_REGISTER_STATIC_METHOD(uint32_t, SBTarget, GetNumModulesFromEvent, in RegisterMethods()
2502 LLDB_REGISTER_STATIC_METHOD(lldb::SBModule, SBTarget, in RegisterMethods()
2505 LLDB_REGISTER_STATIC_METHOD(const char *, SBTarget, GetBroadcasterClassName, in RegisterMethods()
2507 LLDB_REGISTER_METHOD_CONST(bool, SBTarget, IsValid, ()); in RegisterMethods()
2508 LLDB_REGISTER_METHOD_CONST(bool, SBTarget, operator bool, ()); in RegisterMethods()
2509 LLDB_REGISTER_METHOD(lldb::SBProcess, SBTarget, GetProcess, ()); in RegisterMethods()
2510 LLDB_REGISTER_METHOD(lldb::SBPlatform, SBTarget, GetPlatform, ()); in RegisterMethods()
2511 LLDB_REGISTER_METHOD_CONST(lldb::SBDebugger, SBTarget, GetDebugger, ()); in RegisterMethods()
2512 LLDB_REGISTER_METHOD(lldb::SBStructuredData, SBTarget, GetStatistics, ()); in RegisterMethods()
2513 LLDB_REGISTER_METHOD(void, SBTarget, SetCollectingStats, (bool)); in RegisterMethods()
2514 LLDB_REGISTER_METHOD(bool, SBTarget, GetCollectingStats, ()); in RegisterMethods()
2515 LLDB_REGISTER_METHOD(lldb::SBProcess, SBTarget, LoadCore, (const char *)); in RegisterMethods()
2516 LLDB_REGISTER_METHOD(lldb::SBProcess, SBTarget, LoadCore, in RegisterMethods()
2518 LLDB_REGISTER_METHOD(lldb::SBProcess, SBTarget, LaunchSimple, in RegisterMethods()
2520 LLDB_REGISTER_METHOD(lldb::SBError, SBTarget, Install, ()); in RegisterMethods()
2521 LLDB_REGISTER_METHOD(lldb::SBProcess, SBTarget, Launch, in RegisterMethods()
2525 LLDB_REGISTER_METHOD(lldb::SBProcess, SBTarget, Launch, in RegisterMethods()
2527 LLDB_REGISTER_METHOD(lldb::SBProcess, SBTarget, Attach, in RegisterMethods()
2529 LLDB_REGISTER_METHOD(lldb::SBProcess, SBTarget, AttachToProcessWithID, in RegisterMethods()
2532 lldb::SBProcess, SBTarget, AttachToProcessWithName, in RegisterMethods()
2535 lldb::SBProcess, SBTarget, ConnectRemote, in RegisterMethods()
2537 LLDB_REGISTER_METHOD(lldb::SBFileSpec, SBTarget, GetExecutable, ()); in RegisterMethods()
2539 SBTarget, operator==,(const lldb::SBTarget &)); in RegisterMethods()
2541 SBTarget, operator!=,(const lldb::SBTarget &)); in RegisterMethods()
2542 LLDB_REGISTER_METHOD(lldb::SBAddress, SBTarget, ResolveLoadAddress, in RegisterMethods()
2544 LLDB_REGISTER_METHOD(lldb::SBAddress, SBTarget, ResolveFileAddress, in RegisterMethods()
2546 LLDB_REGISTER_METHOD(lldb::SBAddress, SBTarget, ResolvePastLoadAddress, in RegisterMethods()
2548 LLDB_REGISTER_METHOD(lldb::SBSymbolContext, SBTarget, in RegisterMethods()
2551 LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, in RegisterMethods()
2553 LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, in RegisterMethods()
2556 LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, in RegisterMethods()
2559 LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, in RegisterMethods()
2563 LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, in RegisterMethods()
2567 LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByLocation, in RegisterMethods()
2570 LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByName, in RegisterMethods()
2572 LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByName, in RegisterMethods()
2575 LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByName, in RegisterMethods()
2578 LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByName, in RegisterMethods()
2582 LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByNames, in RegisterMethods()
2586 LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByNames, in RegisterMethods()
2590 LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByNames, in RegisterMethods()
2594 LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByRegex, in RegisterMethods()
2596 LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByRegex, in RegisterMethods()
2599 LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, BreakpointCreateByRegex, in RegisterMethods()
2603 LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, in RegisterMethods()
2605 LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, in RegisterMethods()
2608 lldb::SBBreakpoint, SBTarget, BreakpointCreateBySourceRegex, in RegisterMethods()
2610 LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, in RegisterMethods()
2615 lldb::SBBreakpoint, SBTarget, BreakpointCreateBySourceRegex, in RegisterMethods()
2618 LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, in RegisterMethods()
2622 lldb::SBBreakpoint, SBTarget, BreakpointCreateFromScript, in RegisterMethods()
2625 LLDB_REGISTER_METHOD_CONST(uint32_t, SBTarget, GetNumBreakpoints, ()); in RegisterMethods()
2626 LLDB_REGISTER_METHOD_CONST(lldb::SBBreakpoint, SBTarget, in RegisterMethods()
2628 LLDB_REGISTER_METHOD(bool, SBTarget, BreakpointDelete, (lldb::break_id_t)); in RegisterMethods()
2629 LLDB_REGISTER_METHOD(lldb::SBBreakpoint, SBTarget, FindBreakpointByID, in RegisterMethods()
2631 LLDB_REGISTER_METHOD(bool, SBTarget, FindBreakpointsByName, in RegisterMethods()
2633 LLDB_REGISTER_METHOD(void, SBTarget, GetBreakpointNames, in RegisterMethods()
2635 LLDB_REGISTER_METHOD(void, SBTarget, DeleteBreakpointName, (const char *)); in RegisterMethods()
2636 LLDB_REGISTER_METHOD(bool, SBTarget, EnableAllBreakpoints, ()); in RegisterMethods()
2637 LLDB_REGISTER_METHOD(bool, SBTarget, DisableAllBreakpoints, ()); in RegisterMethods()
2638 LLDB_REGISTER_METHOD(bool, SBTarget, DeleteAllBreakpoints, ()); in RegisterMethods()
2639 LLDB_REGISTER_METHOD(lldb::SBError, SBTarget, BreakpointsCreateFromFile, in RegisterMethods()
2642 lldb::SBError, SBTarget, BreakpointsCreateFromFile, in RegisterMethods()
2644 LLDB_REGISTER_METHOD(lldb::SBError, SBTarget, BreakpointsWriteToFile, in RegisterMethods()
2646 LLDB_REGISTER_METHOD(lldb::SBError, SBTarget, BreakpointsWriteToFile, in RegisterMethods()
2648 LLDB_REGISTER_METHOD_CONST(uint32_t, SBTarget, GetNumWatchpoints, ()); in RegisterMethods()
2649 LLDB_REGISTER_METHOD_CONST(lldb::SBWatchpoint, SBTarget, in RegisterMethods()
2651 LLDB_REGISTER_METHOD(bool, SBTarget, DeleteWatchpoint, (lldb::watch_id_t)); in RegisterMethods()
2652 LLDB_REGISTER_METHOD(lldb::SBWatchpoint, SBTarget, FindWatchpointByID, in RegisterMethods()
2654 LLDB_REGISTER_METHOD(lldb::SBWatchpoint, SBTarget, WatchAddress, in RegisterMethods()
2656 LLDB_REGISTER_METHOD(bool, SBTarget, EnableAllWatchpoints, ()); in RegisterMethods()
2657 LLDB_REGISTER_METHOD(bool, SBTarget, DisableAllWatchpoints, ()); in RegisterMethods()
2658 LLDB_REGISTER_METHOD(lldb::SBValue, SBTarget, CreateValueFromAddress, in RegisterMethods()
2660 LLDB_REGISTER_METHOD(lldb::SBValue, SBTarget, CreateValueFromData, in RegisterMethods()
2662 LLDB_REGISTER_METHOD(lldb::SBValue, SBTarget, CreateValueFromExpression, in RegisterMethods()
2664 LLDB_REGISTER_METHOD(bool, SBTarget, DeleteAllWatchpoints, ()); in RegisterMethods()
2665 LLDB_REGISTER_METHOD(void, SBTarget, AppendImageSearchPath, in RegisterMethods()
2667 LLDB_REGISTER_METHOD(lldb::SBModule, SBTarget, AddModule, in RegisterMethods()
2670 lldb::SBModule, SBTarget, AddModule, in RegisterMethods()
2672 LLDB_REGISTER_METHOD(lldb::SBModule, SBTarget, AddModule, in RegisterMethods()
2674 LLDB_REGISTER_METHOD(bool, SBTarget, AddModule, (lldb::SBModule &)); in RegisterMethods()
2675 LLDB_REGISTER_METHOD_CONST(uint32_t, SBTarget, GetNumModules, ()); in RegisterMethods()
2676 LLDB_REGISTER_METHOD(void, SBTarget, Clear, ()); in RegisterMethods()
2677 LLDB_REGISTER_METHOD(lldb::SBModule, SBTarget, FindModule, in RegisterMethods()
2679 LLDB_REGISTER_METHOD(lldb::SBSymbolContextList, SBTarget, FindCompileUnits, in RegisterMethods()
2681 LLDB_REGISTER_METHOD(lldb::ByteOrder, SBTarget, GetByteOrder, ()); in RegisterMethods()
2682 LLDB_REGISTER_METHOD(const char *, SBTarget, GetTriple, ()); in RegisterMethods()
2683 LLDB_REGISTER_METHOD(uint32_t, SBTarget, GetDataByteSize, ()); in RegisterMethods()
2684 LLDB_REGISTER_METHOD(uint32_t, SBTarget, GetCodeByteSize, ()); in RegisterMethods()
2685 LLDB_REGISTER_METHOD(uint32_t, SBTarget, GetAddressByteSize, ()); in RegisterMethods()
2686 LLDB_REGISTER_METHOD(lldb::SBModule, SBTarget, GetModuleAtIndex, in RegisterMethods()
2688 LLDB_REGISTER_METHOD(bool, SBTarget, RemoveModule, (lldb::SBModule)); in RegisterMethods()
2689 LLDB_REGISTER_METHOD_CONST(lldb::SBBroadcaster, SBTarget, GetBroadcaster, in RegisterMethods()
2691 LLDB_REGISTER_METHOD(bool, SBTarget, GetDescription, in RegisterMethods()
2693 LLDB_REGISTER_METHOD(lldb::SBSymbolContextList, SBTarget, FindFunctions, in RegisterMethods()
2695 LLDB_REGISTER_METHOD(lldb::SBSymbolContextList, SBTarget, in RegisterMethods()
2698 LLDB_REGISTER_METHOD(lldb::SBType, SBTarget, FindFirstType, (const char *)); in RegisterMethods()
2699 LLDB_REGISTER_METHOD(lldb::SBType, SBTarget, GetBasicType, in RegisterMethods()
2701 LLDB_REGISTER_METHOD(lldb::SBTypeList, SBTarget, FindTypes, (const char *)); in RegisterMethods()
2702 LLDB_REGISTER_METHOD(lldb::SBValueList, SBTarget, FindGlobalVariables, in RegisterMethods()
2704 LLDB_REGISTER_METHOD(lldb::SBValueList, SBTarget, FindGlobalVariables, in RegisterMethods()
2706 LLDB_REGISTER_METHOD(lldb::SBValue, SBTarget, FindFirstGlobalVariable, in RegisterMethods()
2708 LLDB_REGISTER_METHOD(lldb::SBSourceManager, SBTarget, GetSourceManager, ()); in RegisterMethods()
2709 LLDB_REGISTER_METHOD(lldb::SBInstructionList, SBTarget, ReadInstructions, in RegisterMethods()
2711 LLDB_REGISTER_METHOD(lldb::SBInstructionList, SBTarget, ReadInstructions, in RegisterMethods()
2713 LLDB_REGISTER_METHOD(lldb::SBError, SBTarget, SetSectionLoadAddress, in RegisterMethods()
2715 LLDB_REGISTER_METHOD(lldb::SBError, SBTarget, ClearSectionLoadAddress, in RegisterMethods()
2717 LLDB_REGISTER_METHOD(lldb::SBError, SBTarget, SetModuleLoadAddress, in RegisterMethods()
2719 LLDB_REGISTER_METHOD(lldb::SBError, SBTarget, ClearModuleLoadAddress, in RegisterMethods()
2721 LLDB_REGISTER_METHOD(lldb::SBSymbolContextList, SBTarget, FindSymbols, in RegisterMethods()
2723 LLDB_REGISTER_METHOD(lldb::SBValue, SBTarget, EvaluateExpression, in RegisterMethods()
2725 LLDB_REGISTER_METHOD(lldb::SBValue, SBTarget, EvaluateExpression, in RegisterMethods()
2727 LLDB_REGISTER_METHOD(lldb::addr_t, SBTarget, GetStackRedZoneSize, ()); in RegisterMethods()
2728 LLDB_REGISTER_METHOD_CONST(bool, SBTarget, IsLoaded, in RegisterMethods()
2730 LLDB_REGISTER_METHOD_CONST(lldb::SBLaunchInfo, SBTarget, GetLaunchInfo, ()); in RegisterMethods()
2731 LLDB_REGISTER_METHOD(void, SBTarget, SetLaunchInfo, in RegisterMethods()
2734 size_t, SBTarget, ReadMemory, in RegisterMethods()
2736 LLDB_REGISTER_METHOD(lldb::SBInstructionList, SBTarget, GetInstructions, in RegisterMethods()
2738 LLDB_REGISTER_METHOD(lldb::SBInstructionList, SBTarget, in RegisterMethods()
2741 LLDB_REGISTER_METHOD(lldb::SBInstructionList, SBTarget, GetInstructions, in RegisterMethods()
2743 LLDB_REGISTER_METHOD(lldb::SBInstructionList, SBTarget, in RegisterMethods()
2746 LLDB_REGISTER_METHOD(lldb::SBEnvironment, SBTarget, GetEnvironment, ()); in RegisterMethods()
2747 LLDB_REGISTER_METHOD(lldb::SBTrace, SBTarget, GetTrace, ()); in RegisterMethods()
2748 LLDB_REGISTER_METHOD(lldb::SBTrace, SBTarget, CreateTrace, (lldb::SBError &)); in RegisterMethods()