Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DRemoteAwarePlatform.cpp277 bool RemoteAwarePlatform::GetFileExists(const FileSpec &file_spec) { in GetFileExists() function in RemoteAwarePlatform
281 return m_remote_platform_sp->GetFileExists(file_spec); in GetFileExists()
282 return Platform::GetFileExists(file_spec); in GetFileExists()
H A DPlatform.cpp1295 bool Platform::GetFileExists(const lldb_private::FileSpec &file_spec) { in GetFileExists() function in Platform
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DRemoteAwarePlatform.h44 bool GetFileExists(const FileSpec &file_spec) override;
H A DPlatform.h579 virtual bool GetFileExists(const lldb_private::FileSpec &file_spec);
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.h138 bool GetFileExists(const FileSpec &file_spec) override;
H A DPlatformRemoteGDBServer.cpp709 bool PlatformRemoteGDBServer::GetFileExists(const FileSpec &file_spec) { in GetFileExists() function in PlatformRemoteGDBServer
710 return m_gdb_client.GetFileExists(file_spec); in GetFileExists()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h417 bool GetFileExists(const FileSpec &file_spec);
H A DGDBRemoteCommunicationClient.cpp3248 bool GDBRemoteCommunicationClient::GetFileExists( in GetFileExists() function in GDBRemoteCommunicationClient
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp340 if (!platform_sp->GetFileExists(remote_file)) { in DoExecute()