Lines Matching refs:PlatformWindows

39 LLDB_PLUGIN_DEFINE(PlatformWindows)
43 PlatformSP PlatformWindows::CreateInstance(bool force, in CreateInstance()
81 return PlatformSP(new PlatformWindows(is_host)); in CreateInstance()
85 llvm::StringRef PlatformWindows::GetPluginDescriptionStatic(bool is_host) { in GetPluginDescriptionStatic()
90 void PlatformWindows::Initialize() { in Initialize()
96 PlatformSP default_platform_sp(new PlatformWindows(true)); in Initialize()
101 PlatformWindows::GetPluginNameStatic(false), in Initialize()
102 PlatformWindows::GetPluginDescriptionStatic(false), in Initialize()
103 PlatformWindows::CreateInstance); in Initialize()
107 void PlatformWindows::Terminate() { in Terminate()
110 PluginManager::UnregisterPlugin(PlatformWindows::CreateInstance); in Terminate()
118 PlatformWindows::PlatformWindows(bool is_host) : RemoteAwarePlatform(is_host) { in PlatformWindows() function in PlatformWindows
132 Status PlatformWindows::ConnectRemote(Args &args) { in ConnectRemote()
163 uint32_t PlatformWindows::DoLoadImage(Process *process, in DoLoadImage()
413 Status PlatformWindows::UnloadImage(Process *process, uint32_t image_token) { in UnloadImage()
440 Status PlatformWindows::DisconnectRemote() { in DisconnectRemote()
456 ProcessSP PlatformWindows::DebugProcess(ProcessLaunchInfo &launch_info, in DebugProcess()
506 lldb::ProcessSP PlatformWindows::Attach(ProcessAttachInfo &attach_info, in Attach()
544 void PlatformWindows::GetStatus(Stream &strm) { in GetStatus()
553 bool PlatformWindows::CanDebugProcess() { return true; } in CanDebugProcess()
555 ConstString PlatformWindows::GetFullNameForDylib(ConstString basename) { in GetFullNameForDylib()
565 PlatformWindows::GetSoftwareBreakpointTrapOpcode(Target &target, in GetSoftwareBreakpointTrapOpcode()
600 PlatformWindows::MakeLoadImageUtilityFunction(ExecutionContext &context, in MakeLoadImageUtilityFunction()
722 Status PlatformWindows::EvaluateLoaderExpression(Process *process, in EvaluateLoaderExpression()