Home
last modified time | relevance | path

Searched refs:Platform (Results 1 – 25 of 70) sorted by relevance

123

/NextBSD/contrib/llvm/tools/lldb/source/Target/
HDPlatform.cpp65 Platform::GetHostPlatformName () in GetHostPlatformName()
148 Platform::GetHostPlatform () in GetHostPlatform()
168 Platform::Initialize () in Initialize()
174 Platform::Terminate () in Terminate()
187 Platform::GetGlobalPlatformProperties () in GetGlobalPlatformProperties()
194 Platform::SetHostPlatform (const lldb::PlatformSP &platform_sp) in SetHostPlatform()
208 Platform::GetFileWithUUID (const FileSpec &platform_file, in GetFileWithUUID()
218 Platform::LocateExecutableScriptingResources (Target *target, Module &module, Stream* feedback_stre… in LocateExecutableScriptingResources()
255 Platform::GetSharedModule (const ModuleSpec &module_spec, in GetSharedModule()
282 Platform::GetModuleSpec (const FileSpec& module_file_spec, in GetModuleSpec()
[all …]
HDTargetList.cpp215 PlatformSP host_platform_sp = Platform::GetHostPlatform(); in CreateTargetInternal()
243 … platforms.push_back(Platform::GetPlatformForArchitecture(module_spec.GetArchitecture(), nullptr)); in CreateTargetInternal()
247 Platform *platform_ptr = NULL; in CreateTargetInternal()
273 std::set<Platform *> platform_set; in CreateTargetInternal()
300 platform_sp = Platform::GetPlatformForArchitecture(arch, &platform_arch); in CreateTargetInternal()
312 platform_sp = Platform::GetPlatformForArchitecture(platform_arch, &fixed_platform_arch); in CreateTargetInternal()
353 PlatformSP host_platform_sp(Platform::GetHostPlatform()); in CreateDummyTarget()
384 platform_sp = Platform::GetPlatformForArchitecture(specified_arch, &arch); in CreateTargetInternal()
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/
HDPlatformPOSIX.cpp38 Platform(is_host), // This is the local host platform in PlatformPOSIX()
61 return Platform::GetModuleSpec (module_file_spec, arch, module_spec); in GetModuleSpec()
112 return Platform::MakeDirectory(file_spec ,file_permissions); in MakeDirectory()
121 return Platform::GetFilePermissions(file_spec ,file_permissions); in GetFilePermissions()
130 return Platform::SetFilePermissions(file_spec, file_permissions); in SetFilePermissions()
144 return Platform::OpenFile(file_spec, flags, mode, error); in OpenFile()
155 return Platform::CloseFile(fd, error); in CloseFile()
170 return Platform::ReadFile(fd, offset, dst, dst_len, error); in ReadFile()
185 return Platform::WriteFile(fd, offset, src, src_len, error); in WriteFile()
189 chown_file(Platform *platform, in chown_file()
[all …]
HDPlatformPOSIX.h23 class PlatformPOSIX : public lldb_private::Platform
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/
HDPlatformFreeBSD.cpp77 static ConstString g_host_name(Platform::GetHostPlatformName ()); in GetPluginNameStatic()
101 Platform::Initialize (); in Initialize()
109 Platform::SetHostPlatform (default_platform_sp); in Initialize()
123 Platform::Terminate (); in Terminate()
134 return Platform::GetModuleSpec (module_file_spec, arch, module_spec); in GetModuleSpec()
298 Platform(is_host), in PlatformFreeBSD()
358 return Platform::GetHostname(); in GetHostname()
386 m_remote_platform_sp = Platform::Create (ConstString("remote-gdb-server"), error); in ConnectRemote()
437 success = Platform::GetProcessInfo (pid, process_info); in GetProcessInfo()
454 match_count = Platform::FindProcesses (match_info, process_infos); in FindProcesses()
[all …]
HDPlatformFreeBSD.h22 class PlatformFreeBSD : public Platform
/NextBSD/contrib/llvm/tools/lldb/
HDFREEBSD-Xlist141 source/Plugins/Platform/Android/
142 source/Plugins/Platform/CMakeLists.txt
143 source/Plugins/Platform/FreeBSD/CMakeLists.txt
144 source/Plugins/Platform/FreeBSD/Makefile
145 source/Plugins/Platform/Kalimba/
146 source/Plugins/Platform/Linux/
147 source/Plugins/Platform/MacOSX/
148 source/Plugins/Platform/Makefile
149 source/Plugins/Platform/POSIX/CMakeLists.txt
150 source/Plugins/Platform/POSIX/Makefile
[all …]
/NextBSD/contrib/llvm/tools/lldb/tools/lldb-server/
HDlldb-gdbserver.cpp160 if ( Platform::GetHostPlatform () ) in dump_available_platforms()
165 …fprintf (output_file, "%s\tDefault platform for this host.\n", Platform::GetHostPlatform ()->GetPl… in dump_available_platforms()
177 platform_sp = Platform::GetHostPlatform (); in setup_platform()
183 platform_sp = Platform::Create (lldb_private::ConstString(platform_name), error); in setup_platform()
189 …if ( Platform::GetHostPlatform () && ( Platform::GetHostPlatform ()->GetPluginName () == ConstStri… in setup_platform()
191 platform_sp = Platform::GetHostPlatform (); in setup_platform()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Interpreter/
HDCommandOptionValidators.h17 class Platform; variable
22 virtual bool IsValid(Platform &platform, const ExecutionContext &target) const;
HDOptionGroupArchitecture.h51 GetArchitecture (Platform *platform, ArchSpec &arch);
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/
HDPlatformRemoteGDBServer.cpp63 Platform::Initialize (); in Initialize()
83 Platform::Terminate (); in Terminate()
250 Platform (false), // This is a remote platform in PlatformRemoteGDBServer()
338 return Platform::GetRemoteWorkingDirectory(); in GetRemoteWorkingDirectory()
356 return Platform::SetRemoteWorkingDirectory(working_dir); in SetRemoteWorkingDirectory()
436 const char *cached_user_name = Platform::GetUserName(uid); in GetUserName()
450 const char *cached_group_name = Platform::GetGroupName(gid); in GetGroupName()
833 return Platform::PutFile(source,destination,uid,gid); in PutFile()
886 return Platform::GetRemoteUnixSignals(); in GetRemoteUnixSignals()
HDPlatformRemoteGDBServer.h26 class PlatformRemoteGDBServer : public Platform
/NextBSD/contrib/llvm/tools/lldb/include/lldb/
HDlldb-private-types.h27 class Platform; variable
84 virtual bool IsValid(Platform &platform, const ExecutionContext &target) const = 0;
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Target/
HDPlatform.h80 class Platform :
136 Platform (bool is_host_platform);
145 ~Platform();
1088 Platform &remote_platform);
1118 Platform &remote_platform);
1123 DISALLOW_COPY_AND_ASSIGN (Platform);
HDProcessInfo.h134 Dump (Stream &s, Platform *platform) const;
/NextBSD/contrib/llvm/tools/lldb/source/Interpreter/
HDOptionGroupPlatform.cpp34 platform_sp = Platform::Create (ConstString(m_platform_name.c_str()), error); in CreatePlatformWithOptions()
49 platform_sp = Platform::Create (arch, &platform_arch, error); in CreatePlatformWithOptions()
HDCommandOptionValidators.cpp18 bool PosixPlatformCommandOptionValidator::IsValid(Platform &platform, const ExecutionContext &targe… in IsValid()
HDOptionGroupArchitecture.cpp49 OptionGroupArchitecture::GetArchitecture (Platform *platform, ArchSpec &arch) in GetArchitecture()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Core/
HDArchSpec.h235 ArchSpec (const char *triple_cstr, Platform *platform);
503 Platform *platform);
/NextBSD/lib/clang/liblldbPluginPlatformFreeBSD/
HDMakefile7 SRCDIR= tools/lldb/source/Plugins/Platform/FreeBSD
/NextBSD/lib/clang/liblldbPluginPlatformGDB/
HDMakefile7 SRCDIR= tools/lldb/source/Plugins/Platform/gdb-server
/NextBSD/contrib/llvm/tools/lldb/source/Host/common/
HDMonitoringProcessLauncher.cpp36 PlatformSP host_platform_sp(Platform::GetHostPlatform()); in LaunchProcess()
/NextBSD/lib/clang/liblldbTarget/
HDMakefile24 Platform.cpp \
/NextBSD/usr.bin/clang/lldb/
HDMakefile14 Platform.cpp
/NextBSD/sys/arm/conf/
HDVERSATILEPB2 # VERSATILEPB - Configuration for QEMU version of Versatile Platform Board

123