Home
last modified time | relevance | path

Searched refs:remote_file (Results 1 – 7 of 7) sorted by relevance

/freebsd/usr.bin/tftp/tests/
H A Dtftp_test.sh44 local remote_file="${tftp_dir}/remote.bin"
45 dd if=/dev/urandom of="${remote_file}" bs=1m count=16 status=none
50 atf_check cmp -s "${local_file}" "${remote_file}"
63 local remote_file="${tftp_dir}/hello.txt"
64 echo "Hello, $$!" >"${remote_file}"
69 atf_check cmp -s "${local_file}" "${remote_file}"
82 local remote_file="${tftp_dir}/hello.txt"
83 echo "Hello, $$!" >"${remote_file}"
88 atf_check cmp -s "${local_file}" "${remote_file}"
102 local remote_file="${tftp_dir}/hello.txt"
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.h62 const lldb_private::FileSpec &remote_file,
H A DPlatformPOSIX.cpp673 const lldb_private::FileSpec &remote_file, in DoLoadImage() argument
681 path = remote_file.GetPath(false); in DoLoadImage()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1797 const lldb_private::FileSpec &remote_file, in LoadImage() argument
1799 if (local_file && remote_file) { in LoadImage()
1802 if (IsRemote() || local_file != remote_file) { in LoadImage()
1803 error = Install(local_file, remote_file); in LoadImage()
1807 return DoLoadImage(process, remote_file, nullptr, error); in LoadImage()
1823 if (remote_file) { in LoadImage()
1825 return DoLoadImage(process, remote_file, nullptr, error); in LoadImage()
1833 const lldb_private::FileSpec &remote_file, in DoLoadImage() argument
H A DTarget.cpp3074 FileSpec remote_file(module_sp->GetRemoteInstallFileSpec()); in Install() local
3075 if (!remote_file) { in Install()
3078 remote_file = platform_sp->GetRemoteWorkingDirectory(); in Install()
3079 remote_file.AppendPathComponent( in Install()
3083 if (remote_file) { in Install()
3084 error = platform_sp->Install(local_file, remote_file); in Install()
3086 module_sp->SetPlatformFileSpec(remote_file); in Install()
3088 platform_sp->SetFilePermissions(remote_file, 0700); in Install()
3090 launch_info->SetExecutableFile(remote_file, false); in Install()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp253 FileSpec remote_file(m_remote_file.GetOptionValue().GetCurrentValue()); in DoExecute() local
267 if (argc == 1 || core_file || remote_file) { in DoExecute()
331 if (remote_file) { in DoExecute()
336 if (!platform_sp->GetFileExists(remote_file)) { in DoExecute()
337 Status err = platform_sp->PutFile(file_spec, remote_file); in DoExecute()
351 Status err = platform_sp->GetFile(remote_file, file_spec); in DoExecute()
370 if (platform_sp->IsConnected() && !platform_sp->GetFileExists(remote_file)) { in DoExecute()
378 launch_info.SetExecutableFile(FileSpec(remote_file), true); in DoExecute()
388 if (symfile || remote_file) { in DoExecute()
393 if (remote_file) { in DoExecute()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DPlatform.h787 const lldb_private::FileSpec &remote_file,
827 const lldb_private::FileSpec &remote_file,