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.cpp682 const lldb_private::FileSpec &remote_file, in DoLoadImage() argument
690 path = remote_file.GetPath(false); in DoLoadImage()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1806 const lldb_private::FileSpec &remote_file, in LoadImage() argument
1808 if (local_file && remote_file) { in LoadImage()
1811 if (IsRemote() || local_file != remote_file) { in LoadImage()
1812 error = Install(local_file, remote_file); in LoadImage()
1816 return DoLoadImage(process, remote_file, nullptr, error); in LoadImage()
1832 if (remote_file) { in LoadImage()
1834 return DoLoadImage(process, remote_file, nullptr, error); in LoadImage()
1843 const lldb_private::FileSpec &remote_file, in DoLoadImage() argument
H A DTarget.cpp124 FileSpec remote_file = module->GetRemoteInstallFileSpec(); in getRemoteFileSpec() local
125 if (remote_file || !target->GetAutoInstallMainExecutable()) in getRemoteFileSpec()
126 return remote_file; in getRemoteFileSpec()
131 remote_file = platform->GetRemoteWorkingDirectory(); in getRemoteFileSpec()
132 remote_file.AppendPathComponent(local_file.GetFilename().GetCString()); in getRemoteFileSpec()
134 return remote_file; in getRemoteFileSpec()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp254 FileSpec remote_file(m_remote_file.GetOptionValue().GetCurrentValue()); in DoExecute() local
268 if (argc == 1 || core_file || remote_file) { in DoExecute()
332 if (remote_file) { in DoExecute()
337 if (!platform_sp->GetFileExists(remote_file)) { in DoExecute()
338 Status err = platform_sp->PutFile(file_spec, remote_file); in DoExecute()
352 Status err = platform_sp->GetFile(remote_file, file_spec); in DoExecute()
371 if (platform_sp->IsConnected() && !platform_sp->GetFileExists(remote_file)) { in DoExecute()
379 launch_info.SetExecutableFile(FileSpec(remote_file), true); in DoExecute()
389 if (symfile || remote_file) { in DoExecute()
394 if (remote_file) { in DoExecute()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DPlatform.h849 const lldb_private::FileSpec &remote_file,
889 const lldb_private::FileSpec &remote_file,