Home
last modified time | relevance | path

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

/external/lldb/source/Plugins/Platform/MacOSX/
DPlatformMacOSX.cpp68 const bool is_host = false; in CreateInstance() local
114 return new PlatformMacOSX (is_host); in CreateInstance()
119 PlatformMacOSX::GetPluginNameStatic (bool is_host) in GetPluginNameStatic() argument
121 if (is_host) in GetPluginNameStatic()
134 PlatformMacOSX::GetDescriptionStatic (bool is_host) in GetDescriptionStatic() argument
136 if (is_host) in GetDescriptionStatic()
145 PlatformMacOSX::PlatformMacOSX (bool is_host) : in PlatformMacOSX() argument
146 PlatformDarwin (is_host) in PlatformMacOSX()
DPlatformMacOSX.h36 GetPluginNameStatic (bool is_host);
39 GetDescriptionStatic(bool is_host);
44 PlatformMacOSX (bool is_host);
DPlatformDarwin.h22 PlatformDarwin (bool is_host);
DPlatformDarwin.cpp38 PlatformDarwin::PlatformDarwin (bool is_host) : in PlatformDarwin() argument
39 Platform(is_host), // This is the local host platform in PlatformDarwin()
/external/lldb/source/Plugins/Platform/FreeBSD/
DPlatformFreeBSD.cpp36 const bool is_host = false; in CreateInstance() local
83 return new PlatformFreeBSD (is_host); in CreateInstance()
89 PlatformFreeBSD::GetPluginNameStatic (bool is_host) in GetPluginNameStatic() argument
91 if (is_host) in GetPluginNameStatic()
104 PlatformFreeBSD::GetDescriptionStatic (bool is_host) in GetDescriptionStatic() argument
106 if (is_host) in GetDescriptionStatic()
141 PlatformFreeBSD::PlatformFreeBSD (bool is_host) : in PlatformFreeBSD() argument
142 Platform(is_host) in PlatformFreeBSD()
DPlatformFreeBSD.h37 GetPluginNameStatic (bool is_host);
40 GetDescriptionStatic (bool is_host);
45 PlatformFreeBSD (bool is_host);
/external/lldb/source/Plugins/Platform/Linux/
DPlatformLinux.h31 PlatformLinux (bool is_host);
43 GetPluginNameStatic (bool is_host);
46 GetPluginDescriptionStatic (bool is_host);
DPlatformLinux.cpp91 PlatformLinux::GetPluginNameStatic (bool is_host) in GetPluginNameStatic() argument
93 if (is_host) in GetPluginNameStatic()
106 PlatformLinux::GetPluginDescriptionStatic (bool is_host) in GetPluginDescriptionStatic() argument
108 if (is_host) in GetPluginDescriptionStatic()
303 PlatformLinux::PlatformLinux (bool is_host) : in PlatformLinux() argument
304 Platform(is_host), // This is the local host platform in PlatformLinux()
/external/lldb/source/Target/
DPlatform.cpp233 Platform::Platform (bool is_host) : in Platform() argument
234 m_is_host (is_host), in Platform()