Searched refs:dst_path (Results 1 – 7 of 7) sorted by relevance
| /openbsd-src/gnu/llvm/lldb/source/API/ |
| H A D | SBFileSpec.cpp | 98 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()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/POSIX/ |
| H A D | PlatformPOSIX.cpp | 105 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 …]
|
| /openbsd-src/gnu/llvm/lldb/bindings/interface/ |
| H A D | SBFileSpec.i | 72 GetPath (char *dst_path, size_t dst_len) const; 75 ResolvePath (const char *src_path, char *dst_path, size_t dst_len);
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/API/ |
| H A D | SBFileSpec.h | 51 uint32_t GetPath(char *dst_path, size_t dst_len) const; 53 static int ResolvePath(const char *src_path, char *dst_path, size_t dst_len);
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/scripts/ |
| H A D | sancov.py | 175 dst_path = module_path + '.' + os.path.basename(path)[:-4] 176 sys.stderr.write("%s: writing %d PCs to %s\n" % (prog_name, len(pc_list), dst_path)) 179 with open(dst_path, 'ab+') as f2:
|
| /openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/ |
| H A D | lldbtest.py | 455 dst_path = lldbutil.join_remote_paths( 458 dst_file_spec = lldb.SBFileSpec(dst_path, False) 464 (src_path, dst_path, err)) 466 dst_path = executable 485 (dst_path, args, err))
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationClient.cpp | 3299 std::string src_path{src.GetPath(false)}, dst_path{dst.GetPath(false)}; in CreateSymlink() local 3305 stream.PutStringAsRawHex8(dst_path); in CreateSymlink()
|