Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.h141 bool GetFileExists(const FileSpec &file_spec) override;
H A DPlatformRemoteGDBServer.cpp701 bool PlatformRemoteGDBServer::GetFileExists(const FileSpec &file_spec) { in GetFileExists() function in PlatformRemoteGDBServer
702 return m_gdb_client.GetFileExists(file_spec); in GetFileExists()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.h125 bool GetFileExists(const lldb_private::FileSpec &file_spec) override;
H A DPlatformPOSIX.cpp464 bool PlatformPOSIX::GetFileExists(const FileSpec &file_spec) { in GetFileExists() function in PlatformPOSIX
468 return m_remote_platform_sp->GetFileExists(file_spec); in GetFileExists()
470 return Platform::GetFileExists(file_spec); in GetFileExists()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h394 bool GetFileExists(const FileSpec &file_spec);
H A DGDBRemoteCommunicationClient.cpp3106 bool GDBRemoteCommunicationClient::GetFileExists( in GetFileExists() function in GDBRemoteCommunicationClient
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DPlatform.h624 virtual bool GetFileExists(const lldb_private::FileSpec &file_spec);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DPlatform.cpp1342 bool Platform::GetFileExists(const lldb_private::FileSpec &file_spec) { in GetFileExists() function in Platform
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectTarget.cpp340 if (!platform_sp->GetFileExists(remote_file)) { in DoExecute()