Home
last modified time | relevance | path

Searched refs:GetPluginName (Results 1 – 25 of 148) sorted by relevance

123456

/llvm-project-15.0.7/lldb/unittests/Language/CLanguages/
H A DCLanguagesTest.cpp22 static llvm::StringRef GetPluginName(lldb::LanguageType language) { in GetPluginName() function
25 return language_plugin->GetPluginName(); in GetPluginName()
38 EXPECT_EQ(GetPluginName(lldb::eLanguageTypeC_plus_plus), "cplusplus"); in TEST()
39 EXPECT_EQ(GetPluginName(lldb::eLanguageTypeC_plus_plus_03), "cplusplus"); in TEST()
40 EXPECT_EQ(GetPluginName(lldb::eLanguageTypeC_plus_plus_11), "cplusplus"); in TEST()
41 EXPECT_EQ(GetPluginName(lldb::eLanguageTypeC_plus_plus_14), "cplusplus"); in TEST()
43 EXPECT_EQ(GetPluginName(lldb::eLanguageTypeObjC), "objc"); in TEST()
45 EXPECT_EQ(GetPluginName(lldb::eLanguageTypeObjC_plus_plus), "objcplusplus"); in TEST()
/llvm-project-15.0.7/lldb/unittests/Platform/
H A DPlatformTest.cpp35 llvm::StringRef GetPluginName() override { return "arm"; } in GetPluginName() function in PlatformArm
48 llvm::StringRef GetPluginName() override { return "intel"; } in GetPluginName() function in PlatformIntel
71 llvm::StringRef GetPluginName() override { return "thumb"; } in GetPluginName() function in PlatformThumb
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DProcessTrace.h43 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); } in GetPluginName() function
52 "error: {0} does not support resuming processes", GetPluginName()); in WillResume()
H A DProcess.h609 "error: {0} does not support loading core files.", GetPluginName()); in DoLoadCore()
943 GetPluginName()); in DoAttachToProcessWithID()
1027 "error: {0} does not support launching processes", GetPluginName()); in DoLaunch()
1062 "error: {0} does not support resuming processes", GetPluginName()); in DoResume()
1097 "error: {0} does not support halting processes", GetPluginName()); in DoHalt()
1124 GetPluginName()); in DoDetach()
1155 GetPluginName()); in DoSignal()
1637 GetPluginName()); in DoAllocateMemory()
1890 GetPluginName()); in DoDeallocateMemory()
2769 GetPluginName())); in DoReadMemoryTags()
[all …]
/llvm-project-15.0.7/lldb/unittests/Target/
H A DRemoteAwarePlatformTest.cpp28 MOCK_METHOD0(GetPluginName, llvm::StringRef());
57 MOCK_METHOD0(GetPluginName, llvm::StringRef());
/llvm-project-15.0.7/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.h58 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); } in GetPluginName() function
86 "error: {0} does not support resuming processes", GetPluginName()); in WillResume()
/llvm-project-15.0.7/lldb/source/Target/
H A DTrace.cpp166 return m_live_process->TraceStop(TraceStopRequest(GetPluginName())); in Stop()
174 return m_live_process->TraceStop(TraceStopRequest(GetPluginName(), tids)); in Stop()
182 return m_live_process->TraceGetState(GetPluginName()); in GetLiveProcessState()
238 TraceGetBinaryDataRequest request{GetPluginName().str(), kind.str(), tid, in GetLiveThreadBinaryData()
256 TraceGetBinaryDataRequest request{GetPluginName().str(), kind.str(), in GetLiveCpuBinaryData()
269 TraceGetBinaryDataRequest request{GetPluginName().str(), kind.str(), in GetLiveProcessBinaryData()
H A DPlatform.cpp286 strm.Format(" Platform: {0}\n", GetPluginName()); in GetStatus()
641 GetPluginName(), LLVM_PRETTY_FUNCTION); in MakeDirectory()
656 GetPluginName(), LLVM_PRETTY_FUNCTION); in GetFilePermissions()
704 GetPluginName()); in ReadFile()
714 GetPluginName()); in WriteFile()
853 resolved_module_spec.GetFileSpec(), GetPluginName(), in ResolveRemoteExecutable()
953 GetPluginName()); in ConnectRemote()
966 GetPluginName()); in DisconnectRemote()
970 GetPluginName()); in DisconnectRemote()
1106 process_sp->GetPluginName()); in DebugProcess()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.h63 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); } in GetPluginName() function
73 "error: {0} does not support resuming processes", GetPluginName()); in WillResume()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DPluginInterface.h21 virtual llvm::StringRef GetPluginName() = 0;
/llvm-project-15.0.7/lldb/source/Plugins/TraceExporter/ctf/
H A DTraceExporterCTF.h27 llvm::StringRef GetPluginName() override { in GetPluginName() function
/llvm-project-15.0.7/lldb/source/Plugins/SymbolVendor/ELF/
H A DSymbolVendorELF.h34 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); } in GetPluginName() function
/llvm-project-15.0.7/lldb/source/Plugins/SymbolVendor/PECOFF/
H A DSymbolVendorPECOFF.h34 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); } in GetPluginName() function
/llvm-project-15.0.7/lldb/source/Plugins/SymbolVendor/MacOSX/
H A DSymbolVendorMacOSX.h34 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); } in GetPluginName() function
/llvm-project-15.0.7/lldb/source/Plugins/Architecture/AArch64/
H A DArchitectureAArch64.h23 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); } in GetPluginName() function
/llvm-project-15.0.7/lldb/source/Plugins/SymbolVendor/wasm/
H A DSymbolVendorWasm.h33 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); } in GetPluginName() function
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DSymbolVendor.h44 llvm::StringRef GetPluginName() override { return "vendor-default"; } in GetPluginName() function
/llvm-project-15.0.7/lldb/source/Plugins/MemoryHistory/asan/
H A DMemoryHistoryASan.h32 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); } in GetPluginName() function
/llvm-project-15.0.7/lldb/source/Plugins/Architecture/PPC64/
H A DArchitecturePPC64.h22 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); } in GetPluginName() function
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/None/
H A DScriptInterpreterNone.h40 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); } in GetPluginName() function
/llvm-project-15.0.7/lldb/source/Plugins/Architecture/Arm/
H A DArchitectureArm.h22 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); } in GetPluginName() function
/llvm-project-15.0.7/lldb/source/Plugins/Language/ObjCPlusPlus/
H A DObjCPlusPlusLanguage.h46 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); } in GetPluginName() function
/llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/Static/
H A DDynamicLoaderStatic.h47 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); } in GetPluginName() function
/llvm-project-15.0.7/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformRemoteAppleWatch.h37 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); } in GetPluginName() function
H A DPlatformRemoteAppleBridge.h37 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); } in GetPluginName() function

123456