Home
last modified time | relevance | path

Searched refs:is_host (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/OpenBSD/
H A DPlatformOpenBSD.h19 PlatformOpenBSD(bool is_host);
28 static llvm::StringRef GetPluginNameStatic(bool is_host) { in GetPluginNameStatic() argument
29 return is_host ? Platform::GetHostPlatformName() : "remote-openbsd"; in GetPluginNameStatic()
32 static llvm::StringRef GetPluginDescriptionStatic(bool is_host);
H A DPlatformOpenBSD.cpp75 llvm::StringRef PlatformOpenBSD::GetPluginDescriptionStatic(bool is_host) { in GetPluginDescriptionStatic() argument
76 if (is_host) in GetPluginDescriptionStatic()
108 PlatformOpenBSD::PlatformOpenBSD(bool is_host) in PlatformOpenBSD() argument
109 : PlatformPOSIX(is_host) // This is the local host platform in PlatformOpenBSD()
111 if (is_host) { in PlatformOpenBSD()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.h20 PlatformFreeBSD(bool is_host);
29 static llvm::StringRef GetPluginNameStatic(bool is_host) { in GetPluginNameStatic() argument
30 return is_host ? Platform::GetHostPlatformName() : "remote-freebsd"; in GetPluginNameStatic()
33 static llvm::StringRef GetPluginDescriptionStatic(bool is_host);
H A DPlatformFreeBSD.cpp80 llvm::StringRef PlatformFreeBSD::GetPluginDescriptionStatic(bool is_host) { in GetPluginDescriptionStatic() argument
81 if (is_host) in GetPluginDescriptionStatic()
113 PlatformFreeBSD::PlatformFreeBSD(bool is_host) in PlatformFreeBSD() argument
114 : PlatformPOSIX(is_host) // This is the local host platform in PlatformFreeBSD()
116 if (is_host) { in PlatformFreeBSD()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/NetBSD/
H A DPlatformNetBSD.h20 PlatformNetBSD(bool is_host);
29 static llvm::StringRef GetPluginNameStatic(bool is_host) { in GetPluginNameStatic() argument
30 return is_host ? Platform::GetHostPlatformName() : "remote-netbsd"; in GetPluginNameStatic()
33 static llvm::StringRef GetPluginDescriptionStatic(bool is_host);
H A DPlatformNetBSD.cpp69 llvm::StringRef PlatformNetBSD::GetPluginDescriptionStatic(bool is_host) { in GetPluginDescriptionStatic() argument
70 if (is_host) in GetPluginDescriptionStatic()
102 PlatformNetBSD::PlatformNetBSD(bool is_host) in PlatformNetBSD() argument
103 : PlatformPOSIX(is_host) // This is the local host platform in PlatformNetBSD()
105 if (is_host) { in PlatformNetBSD()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.h20 PlatformPOSIX(bool is_host);
H A DPlatformPOSIX.cpp42 PlatformPOSIX::PlatformPOSIX(bool is_host) in PlatformPOSIX() argument
43 : RemoteAwarePlatform(is_host), // This is the local host platform in PlatformPOSIX()
/freebsd/sys/dev/usb/controller/
H A Ddwc_otg.c3128 uint8_t is_host; in dwc_otg_setup_standard_chain() local
3150 is_host = (xfer->xroot->udev->flags.usb_mode == USB_MODE_HOST); in dwc_otg_setup_standard_chain()
3156 if (is_host) in dwc_otg_setup_standard_chain()
3181 if (is_host) { in dwc_otg_setup_standard_chain()
3189 if (is_host) { in dwc_otg_setup_standard_chain()
3261 if (is_host) { in dwc_otg_setup_standard_chain()
3269 if (is_host) { in dwc_otg_setup_standard_chain()
3308 if (is_host) { in dwc_otg_setup_standard_chain()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp234 Platform::Platform(bool is_host) in Platform() argument
235 : m_is_host(is_host), m_os_version_set_while_connected(false), in Platform()