Home
last modified time | relevance | path

Searched refs:GetHostname (Results 1 – 21 of 21) sorted by relevance

/external/llvm-project/lldb/unittests/Host/
DHostInfoTest.cpp48 TEST_F(HostInfoTest, GetHostname) { in TEST_F() argument
51 EXPECT_TRUE(HostInfo::GetHostname(s)); in TEST_F()
/external/llvm-project/lldb/include/lldb/Host/posix/
DHostInfoPosix.h24 static bool GetHostname(std::string &s);
/external/llvm-project/lldb/include/lldb/Host/windows/
DHostInfoWindows.h37 static bool GetHostname(std::string &s);
/external/llvm-project/lldb/source/Plugins/Platform/gdb-server/
DPlatformRemoteGDBServer.cpp290 GetHostname()); in ConnectRemote()
351 const char *PlatformRemoteGDBServer::GetHostname() { in GetHostname() function in PlatformRemoteGDBServer
352 m_gdb_client.GetHostname(m_name); in GetHostname()
486 GetHostname()); in DebugProcess()
572 GetHostname()); in Attach()
DPlatformRemoteGDBServer.h98 const char *GetHostname() override;
/external/llvm-project/lldb/source/Target/
DRemoteAwarePlatform.cpp355 const char *RemoteAwarePlatform::GetHostname() { in GetHostname() function in RemoteAwarePlatform
357 return Platform::GetHostname(); in GetHostname()
359 return m_remote_platform_sp->GetHostname(); in GetHostname()
DPlatform.cpp431 strm.Printf(" Hostname: %s\n", GetHostname()); in GetStatus()
435 strm.Printf(" Hostname: %s\n", GetHostname()); in GetStatus()
811 const char *Platform::GetHostname() { in GetHostname() function in Platform
1712 const char *Platform::GetCacheHostname() { return GetHostname(); } in GetCacheHostname()
/external/webrtc/rtc_base/
Dssl_adapter_unittest.cc167 ssl_identity_ = rtc::SSLIdentity::Create(GetHostname(), key_params); in SSLAdapterTestDummyServer()
187 std::string GetHostname() const { in GetHostname() function in SSLAdapterTestDummyServer
340 rv = client_->Connect(server_->GetHostname(), server_->GetAddress()); in TestHandshake()
/external/llvm-project/lldb/bindings/interface/
DSBPlatform.i157 GetHostname ();
/external/llvm-project/lldb/source/API/
DSBPlatform.cpp491 const char *SBPlatform::GetHostname() { in GetHostname() function in SBPlatform
492 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBPlatform, GetHostname); in GetHostname()
496 return platform_sp->GetHostname(); in GetHostname()
774 LLDB_REGISTER_METHOD(const char *, SBPlatform, GetHostname, ()); in RegisterMethods()
/external/llvm-project/lldb/include/lldb/API/
DSBPlatform.h128 const char *GetHostname();
/external/llvm-project/lldb/source/Host/windows/
DHostInfoWindows.cpp92 bool HostInfoWindows::GetHostname(std::string &s) { in GetHostname() function in HostInfoWindows
/external/llvm-project/lldb/source/Host/posix/
DHostInfoPosix.cpp30 bool HostInfoPosix::GetHostname(std::string &s) { in GetHostname() function in HostInfoPosix
/external/llvm-project/lldb/include/lldb/Target/
DRemoteAwarePlatform.h81 const char *GetHostname() override;
DPlatform.h225 virtual const char *GetHostname();
/external/llvm-project/lldb/source/Plugins/Platform/POSIX/
DPlatformPOSIX.cpp135 GetHostname(), dst_path.c_str()); in PutFile()
191 m_remote_platform_sp->GetHostname(), src_path.c_str(), in GetFile()
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunicationClient.h278 bool GetHostname(std::string &s);
DGDBRemoteCommunicationServerCommon.cpp295 if (HostInfo::GetHostname(s)) { in Handle_qHostInfo()
303 if (HostInfo::GetHostname(s)) { in Handle_qHostInfo()
DGDBRemoteCommunicationClient.cpp972 bool GDBRemoteCommunicationClient::GetHostname(std::string &s) { in GetHostname() function in GDBRemoteCommunicationClient
2524 if (HostInfo::GetHostname(hostname)) { in LaunchGDBServer()
/external/ImageMagick/MagickCore/
Ddistribute-cache.c269 static char *GetHostname(int *port,ExceptionInfo *exception) in GetHostname() function
344 hostname=GetHostname(&server_info->port,exception); in AcquireDistributeCacheInfo()
/external/llvm-project/lldb/source/Commands/
DCommandObjectPlatform.cpp347 const char *hostname_cstr = platform_sp->GetHostname(); in DoExecute()