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.cpp144 bool RemoteAwarePlatform::GetFileExists(const FileSpec &file_spec) { in GetFileExists() function in RemoteAwarePlatform
146 return m_remote_platform_sp->GetFileExists(file_spec); in GetFileExists()
147 return Platform::GetFileExists(file_spec); in GetFileExists()
H A DPlatform.cpp1214 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.h46 bool GetFileExists(const FileSpec &file_spec) override;
H A DPlatform.h566 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.h382 bool GetFileExists(const FileSpec &file_spec);
H A DGDBRemoteCommunicationClient.cpp3389 bool GDBRemoteCommunicationClient::GetFileExists( in GetFileExists() function in GDBRemoteCommunicationClient
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectPlatform.cpp971 bool exists = platform_sp->GetFileExists(FileSpec(remote_file_path)); in DoExecute()
H A DCommandObjectTarget.cpp336 if (!platform_sp->GetFileExists(remote_file)) { in DoExecute()
370 if (platform_sp->IsConnected() && !platform_sp->GetFileExists(remote_file)) { in DoExecute()