Searched refs:is_host (Results 1 – 10 of 10) sorted by relevance
19 PlatformOpenBSD(bool is_host);28 static llvm::StringRef GetPluginNameStatic(bool is_host) { in GetPluginNameStatic() argument29 return is_host ? Platform::GetHostPlatformName() : "remote-openbsd"; in GetPluginNameStatic()32 static llvm::StringRef GetPluginDescriptionStatic(bool is_host);
75 llvm::StringRef PlatformOpenBSD::GetPluginDescriptionStatic(bool is_host) { in GetPluginDescriptionStatic() argument76 if (is_host) in GetPluginDescriptionStatic()108 PlatformOpenBSD::PlatformOpenBSD(bool is_host) in PlatformOpenBSD() argument109 : PlatformPOSIX(is_host) // This is the local host platform in PlatformOpenBSD()111 if (is_host) { in PlatformOpenBSD()
20 PlatformFreeBSD(bool is_host);29 static llvm::StringRef GetPluginNameStatic(bool is_host) { in GetPluginNameStatic() argument30 return is_host ? Platform::GetHostPlatformName() : "remote-freebsd"; in GetPluginNameStatic()33 static llvm::StringRef GetPluginDescriptionStatic(bool is_host);
80 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()
20 PlatformNetBSD(bool is_host);29 static llvm::StringRef GetPluginNameStatic(bool is_host) { in GetPluginNameStatic() argument30 return is_host ? Platform::GetHostPlatformName() : "remote-netbsd"; in GetPluginNameStatic()33 static llvm::StringRef GetPluginDescriptionStatic(bool is_host);
69 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()
20 PlatformPOSIX(bool is_host);
42 PlatformPOSIX::PlatformPOSIX(bool is_host) in PlatformPOSIX() argument43 : RemoteAwarePlatform(is_host), // This is the local host platform in PlatformPOSIX()
3128 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()
234 Platform::Platform(bool is_host) in Platform() argument235 : m_is_host(is_host), m_os_version_set_while_connected(false), in Platform()