Home
last modified time | relevance | path

Searched refs:dst_path (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBFileSpec.cpp98 int SBFileSpec::ResolvePath(const char *src_path, char *dst_path, in ResolvePath() argument
100 LLDB_INSTRUMENT_VA(src_path, dst_path, dst_len); in ResolvePath()
104 ::snprintf(dst_path, dst_len, "%s", result.c_str()); in ResolvePath()
140 uint32_t SBFileSpec::GetPath(char *dst_path, size_t dst_len) const { in GetPath() argument
141 LLDB_INSTRUMENT_VA(this, dst_path, dst_len); in GetPath()
143 uint32_t result = m_opaque_up->GetPath(dst_path, dst_len); in GetPath()
145 if (result == 0 && dst_path && dst_len > 0) in GetPath()
146 *dst_path = '\0'; in GetPath()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp105 std::string dst_path(destination.GetPath()); in PutFile() local
106 if (dst_path.empty()) in PutFile()
109 command.Printf("cp %s %s", src_path.c_str(), dst_path.c_str()); in PutFile()
117 if (chown_file(this, dst_path.c_str(), uid, gid) != 0) in PutFile()
125 std::string dst_path(destination.GetPath()); in PutFile() local
126 if (dst_path.empty()) in PutFile()
132 dst_path.c_str()); in PutFile()
135 GetRSyncPrefix(), dst_path.c_str()); in PutFile()
138 GetHostname(), dst_path.c_str()); in PutFile()
166 std::string dst_path(destination.GetPath()); in GetFile() local
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBFileSpec.h54 uint32_t GetPath(char *dst_path, size_t dst_len) const;
56 static int ResolvePath(const char *src_path, char *dst_path, size_t dst_len);
/freebsd/sys/dev/usb/
H A Dusb_dev.h46 char dst_path[32]; /* Destination path - including member
H A Dusb_dev.c2320 strlcpy(ps->dst_path, target, sizeof(ps->dst_path)); in usb_alloc_symlink()
2321 ps->dst_len = strlen(ps->dst_path); in usb_alloc_symlink()
2415 error = copyout(ps->dst_path, in usb_read_symlink()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp3325 std::string src_path{src.GetPath(false)}, dst_path{dst.GetPath(false)}; in CreateSymlink() local
3331 stream.PutStringAsRawHex8(dst_path); in CreateSymlink()