Searched refs:HostInfo (Results 1 - 25 of 43) sorted by relevance

12

/freebsd-current/usr.sbin/rpc.statd/
H A Dstatd.h82 } HostInfo; typedef in typeref:struct:__anon6791
92 HostInfo hosts[1]; /* vector of monitored hosts */
95 #define HEADER_LEN (sizeof(FileLayout) - sizeof(HostInfo))
107 extern HostInfo *find_host(char * /*hostname*/, int /*create*/);
H A Dfile.c77 HostInfo *find_host(char *hostname, int create)
79 HostInfo *hp;
80 HostInfo *spare_slot = NULL;
81 HostInfo *result = NULL;
136 desired_size = ((char*)spare_slot - (char*)status_info) + sizeof(HostInfo);
154 memset(spare_slot, 0, sizeof(HostInfo));
203 < (off_t)(HEADER_LEN + sizeof(HostInfo) * status_info->noOfHosts)) )
231 HostInfo *this_host = &status_info->hosts[i];
305 HostInfo *hp;
H A Dprocs.c156 HostInfo *hp;
223 static int do_unmon(HostInfo *hp, my_id *idp)
264 HostInfo *hp;
302 HostInfo *hp;
340 HostInfo *hp;
373 Note that the main HostInfo structure is in a mmap()
375 monList pointed to by the HostInfo is in normal memory.
388 HostInfo *hp;
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Initialization/
H A DSystemInitializerCommon.h13 #include "lldb/Host/HostInfo.h"
26 SystemInitializerCommon(HostInfo::SharedLibraryDirectoryHelper *helper);
33 HostInfo::SharedLibraryDirectoryHelper *m_shlib_dir_helper;
/freebsd-current/contrib/llvm-project/lldb/source/API/
H A DSBHostOS.cpp14 #include "lldb/Host/HostInfo.h"
36 sb_filespec.SetFileSpec(HostInfo::GetProgramFileSpec());
52 fspec = HostInfo::GetShlibDir();
55 fspec = HostInfo::GetSupportExeDir();
58 fspec = HostInfo::GetHeaderDir();
66 fspec = HostInfo::GetSystemPluginDir();
69 fspec = HostInfo::GetUserPluginDir();
72 fspec = HostInfo::GetProcessTempDir();
75 fspec = HostInfo::GetGlobalTempDir();
H A DSystemInitializerFull.cpp35 constexpr lldb_private::HostInfo::SharedLibraryDirectoryHelper
40 constexpr lldb_private::HostInfo::SharedLibraryDirectoryHelper
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Host/
H A DHostInfo.h1 //===-- HostInfo.h ----------------------------------------------*- C++ -*-===//
12 /// \class HostInfo HostInfo.h "lldb/Host/HostInfo.h"
15 /// HostInfo is a class that answers information about the host operating
16 /// system. Note that HostInfo is NOT intended to be used to manipulate or
19 /// HostInfo is implemented in an OS-specific class (for example
20 /// HostInfoWindows) in a separate file, and then typedefed to HostInfo here.
21 /// Users of the class reference it as HostInfo::method().
29 /// HostInfoBase with a default implementation. This way, users of HostInfo
64 typedef HOST_INFO_TYPE HostInfo; typedef in namespace:lldb_private
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Initialization/
H A DSystemInitializerCommon.cpp39 HostInfo::SharedLibraryDirectoryHelper *helper)
71 HostInfo::Initialize(m_shlib_dir_helper);
100 HostInfo::Terminate();
/freebsd-current/contrib/llvm-project/lldb/source/Host/common/
H A DHostInfoBase.cpp13 #include "lldb/Host/HostInfo.h"
89 g_fields->m_host_triple = HostInfo::GetArchitecture().GetTriple();
96 HostInfo::ComputeHostArchitectureSupport(g_fields->m_host_arch_32,
122 if (!HostInfo::ComputeSharedLibraryDirectory(g_fields->m_lldb_so_dir))
132 if (!HostInfo::ComputeSupportExeDirectory(g_fields->m_lldb_support_exe_dir))
142 if (!HostInfo::ComputeHeaderDirectory(g_fields->m_lldb_headers_dir))
152 if (!HostInfo::ComputeSystemPluginsDirectory(
164 if (!HostInfo::ComputeUserPluginsDirectory(
175 if (!HostInfo::ComputeProcessTempFileDirectory(
187 if (!HostInfo
[all...]
H A DHost.cpp52 #include "lldb/Host/HostInfo.h"
410 launch_info.SetArchitecture(HostInfo::GetArchitecture());
413 FileSpec shell = HostInfo::GetDefaultShell();
439 if (FileSpec tmpdir_file_spec = HostInfo::GetProcessTempDir()) {
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.cpp21 #include "lldb/Host/HostInfo.h"
92 default_platform_sp->SetSystemArchitecture(HostInfo::GetArchitecture());
117 ArchSpec hostArch = HostInfo::GetArchitecture(HostInfo::eArchKindDefault);
121 HostInfo::GetArchitecture(HostInfo::eArchKind32));
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Platform/OpenBSD/
H A DPlatformOpenBSD.cpp19 #include "lldb/Host/HostInfo.h"
87 default_platform_sp->SetSystemArchitecture(HostInfo::GetArchitecture());
112 m_supported_architectures.push_back(HostInfo::GetArchitecture());
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Platform/QemuUser/
H A DPlatformQemuUser.h13 #include "lldb/Host/HostInfo.h"
32 return HostInfo::GetUserIDResolver();
H A DPlatformQemuUser.cpp109 llvm::Triple triple = HostInfo::GetArchitecture().GetTriple();
180 HostInfo::GetProcessTempDir().GetPath(socket_model);
/freebsd-current/contrib/llvm-project/lldb/source/Host/netbsd/
H A DHostNetBSD.cpp24 #include "lldb/Host/HostInfo.h"
120 HostInfo::GetArchitecture(HostInfo::eArchKind32);
124 HostInfo::GetArchitecture(HostInfo::eArchKind64);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Platform/NetBSD/
H A DPlatformNetBSD.cpp19 #include "lldb/Host/HostInfo.h"
81 default_platform_sp->SetSystemArchitecture(HostInfo::GetArchitecture());
106 ArchSpec hostArch = HostInfo::GetArchitecture(HostInfo::eArchKindDefault);
110 HostInfo::GetArchitecture(HostInfo::eArchKind32));
/freebsd-current/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanCallUserExpression.cpp17 #include "lldb/Host/HostInfo.h"
80 function_stack_bottom = function_stack_pointer - HostInfo::GetPageSize();
H A DRemoteAwarePlatform.cpp15 #include "lldb/Host/HostInfo.h"
109 HostInfo::GetArchitecture(HostInfo::eArchKindDefault).GetTriple();
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.cpp27 #include "lldb/Host/HostInfo.h"
184 ArchSpec host_arch(HostInfo::GetArchitecture());
190 llvm::StringRef distribution_id = HostInfo::GetDistributionId();
255 llvm::VersionTuple version = HostInfo::GetOSVersion();
262 llvm::VersionTuple maccatalyst_version = HostInfo::GetMacCatalystVersion();
270 if (std::optional<std::string> s = HostInfo::GetOSBuildString()) {
275 if (std::optional<std::string> s = HostInfo::GetOSKernelDescription()) {
292 if (HostInfo::GetHostname(s)) {
300 if (HostInfo::GetHostname(s)) {
395 HostInfo
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Commands/
H A DCommandOptionsProcessLaunch.cpp12 #include "lldb/Host/HostInfo.h"
134 launch_info.SetShell(HostInfo::GetDefaultShell());
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeRegisterContextFreeBSD_powerpc.cpp13 #include "lldb/Host/HostInfo.h"
76 if (HostInfo::GetArchitecture().GetAddressByteSize() == 4) {
79 assert((HostInfo::GetArchitecture().GetAddressByteSize() == 8) &&
H A DNativeRegisterContextFreeBSD_x86_64.cpp19 #include "lldb/Host/HostInfo.h"
248 if (HostInfo::GetArchitecture().GetAddressByteSize() == 4) {
252 assert((HostInfo::GetArchitecture().GetAddressByteSize() == 8) &&
/freebsd-current/contrib/llvm-project/lldb/source/Host/freebsd/
H A DHost.cpp24 #include "lldb/Host/HostInfo.h"
110 HostInfo::GetArchitecture(HostInfo::eArchKindDefault);
/freebsd-current/contrib/llvm-project/lldb/source/Host/openbsd/
H A DHost.cpp21 #include "lldb/Host/HostInfo.h"
108 HostInfo::GetArchitecture(HostInfo::eArchKindDefault);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangHost.cpp22 #include "lldb/Host/HostInfo.h"
163 if (FileSpec lldb_file_spec = HostInfo::GetShlibDir())

Completed in 167 milliseconds

12