Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DRemoteAwarePlatform.cpp257 bool RemoteAwarePlatform::GetFileExists(const FileSpec &file_spec) { in GetFileExists() function in RemoteAwarePlatform
259 return m_remote_platform_sp->GetFileExists(file_spec); in GetFileExists()
260 return Platform::GetFileExists(file_spec); in GetFileExists()
H A DPlatform.cpp1258 bool Platform::GetFileExists(const lldb_private::FileSpec &file_spec) { in GetFileExists() function in Platform
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DRemoteAwarePlatform.h45 bool GetFileExists(const FileSpec &file_spec) override;
H A DPlatform.h579 virtual bool GetFileExists(const lldb_private::FileSpec &file_spec);
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.h132 bool GetFileExists(const FileSpec &file_spec) override;
H A DPlatformRemoteGDBServer.cpp665 bool PlatformRemoteGDBServer::GetFileExists(const FileSpec &file_spec) { in GetFileExists() function in PlatformRemoteGDBServer
667 return m_gdb_client_up->GetFileExists(file_spec); in GetFileExists()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h380 bool GetFileExists(const FileSpec &file_spec);
H A DGDBRemoteCommunicationClient.cpp3360 bool GDBRemoteCommunicationClient::GetFileExists( in GetFileExists() function in GDBRemoteCommunicationClient
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectPlatform.cpp1053 bool exists = platform_sp->GetFileExists(FileSpec(remote_file_path)); in DoExecute()
H A DCommandObjectTarget.cpp354 if (!platform_sp->GetFileExists(remote_file)) { in DoExecute()
388 if (platform_sp->IsConnected() && !platform_sp->GetFileExists(remote_file)) { in DoExecute()