| /llvm-project-15.0.7/lldb/source/Plugins/Platform/Android/ |
| H A D | AdbClient.h | 41 Status PullFile(const FileSpec &remote_file, const FileSpec &local_file); 43 Status PushFile(const FileSpec &local_file, const FileSpec &remote_file); 45 Status Stat(const FileSpec &remote_file, uint32_t &mode, uint32_t &size, 62 Status internalPullFile(const FileSpec &remote_file, 66 const FileSpec &remote_file); 68 Status internalStat(const FileSpec &remote_file, uint32_t &mode,
|
| H A D | AdbClient.cpp | 436 const auto remote_file_path = remote_file.GetPath(false); in internalPullFile() 508 Status AdbClient::SyncService::internalStat(const FileSpec &remote_file, in internalStat() argument 511 const std::string remote_file_path(remote_file.GetPath(false)); in internalStat() 542 Status AdbClient::SyncService::PullFile(const FileSpec &remote_file, in PullFile() argument 544 return executeCommand([this, &remote_file, &local_file]() { in PullFile() 545 return internalPullFile(remote_file, local_file); in PullFile() 550 const FileSpec &remote_file) { in PushFile() argument 551 return executeCommand([this, &local_file, &remote_file]() { in PushFile() 552 return internalPushFile(local_file, remote_file); in PushFile() 558 return executeCommand([this, &remote_file, &mode, &size, &mtime]() { in Stat() [all …]
|
| /llvm-project-15.0.7/lldb/source/Plugins/Platform/Windows/ |
| H A D | PlatformWindows.h | 48 const lldb_private::FileSpec &remote_file,
|
| H A D | PlatformWindows.cpp | 164 const FileSpec &remote_file, in DoLoadImage() argument 197 if (!llvm::convertUTF8ToUTF16String(remote_file.GetPath(), name)) { in DoLoadImage()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Platform/POSIX/ |
| H A D | PlatformPOSIX.h | 62 const lldb_private::FileSpec &remote_file,
|
| H A D | PlatformPOSIX.cpp | 670 const lldb_private::FileSpec &remote_file, in DoLoadImage() argument 678 path = remote_file.GetPath(); in DoLoadImage()
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | Platform.cpp | 1687 const lldb_private::FileSpec &remote_file, in LoadImage() argument 1689 if (local_file && remote_file) { in LoadImage() 1692 if (IsRemote() || local_file != remote_file) { in LoadImage() 1693 error = Install(local_file, remote_file); in LoadImage() 1697 return DoLoadImage(process, remote_file, nullptr, error); in LoadImage() 1713 if (remote_file) { in LoadImage() 1715 return DoLoadImage(process, remote_file, nullptr, error); in LoadImage() 1723 const lldb_private::FileSpec &remote_file, in DoLoadImage() argument
|
| H A D | Target.cpp | 2876 FileSpec remote_file(module_sp->GetRemoteInstallFileSpec()); in Install() local 2877 if (!remote_file) { in Install() 2880 remote_file = platform_sp->GetRemoteWorkingDirectory(); in Install() 2881 remote_file.AppendPathComponent( in Install() 2885 if (remote_file) { in Install() 2886 error = platform_sp->Install(local_file, remote_file); in Install() 2888 module_sp->SetPlatformFileSpec(remote_file); in Install() 2890 platform_sp->SetFilePermissions(remote_file, 0700); in Install() 2892 launch_info->SetExecutableFile(remote_file, false); in Install()
|
| /llvm-project-15.0.7/lldb/source/Commands/ |
| H A D | CommandObjectTarget.cpp | 273 if (argc == 1 || core_file || remote_file) { in DoExecute() 329 if (remote_file) { in DoExecute() 334 if (!platform_sp->GetFileExists(remote_file)) { in DoExecute() 335 Status err = platform_sp->PutFile(file_spec, remote_file); in DoExecute() 349 Status err = platform_sp->GetFile(remote_file, file_spec); in DoExecute() 376 launch_info.SetExecutableFile(FileSpec(remote_file), true); in DoExecute() 386 if (symfile || remote_file) { in DoExecute() 391 if (remote_file) { in DoExecute() 392 std::string remote_path = remote_file.GetPath(); in DoExecute() 394 module_sp->SetPlatformFileSpec(remote_file); in DoExecute() [all …]
|
| /llvm-project-15.0.7/lldb/include/lldb/Target/ |
| H A D | Platform.h | 764 const lldb_private::FileSpec &remote_file, 804 const lldb_private::FileSpec &remote_file,
|