Searched refs:dst_path (Results 1 – 8 of 8) sorted by relevance
| /llvm-project-15.0.7/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()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Platform/POSIX/ |
| H A D | PlatformPOSIX.cpp | 104 std::string dst_path(destination.GetPath()); in PutFile() local 105 if (dst_path.empty()) in PutFile() 116 if (chown_file(this, dst_path.c_str(), uid, gid) != 0) in PutFile() 124 std::string dst_path(destination.GetPath()); in PutFile() local 125 if (dst_path.empty()) in PutFile() 131 dst_path.c_str()); in PutFile() 137 GetHostname(), dst_path.c_str()); in PutFile() 165 std::string dst_path(destination.GetPath()); in GetFile() local 166 if (dst_path.empty()) in GetFile() 187 dst_path.c_str()); in GetFile() [all …]
|
| /llvm-project-15.0.7/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);
|
| /llvm-project-15.0.7/compiler-rt/test/sanitizer_common/android_commands/ |
| H A D | android_common.py | 43 dst_path = host_to_device_path(path) 44 adb(['push', path, dst_path], 5, 60)
|
| /llvm-project-15.0.7/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);
|
| /llvm-project-15.0.7/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:
|
| /llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/ |
| H A D | lldbtest.py | 441 dst_path = lldbutil.join_remote_paths( 444 dst_file_spec = lldb.SBFileSpec(dst_path, False) 450 (src_path, dst_path, err)) 452 dst_path = executable 471 (dst_path, args, err))
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationClient.cpp | 3293 std::string src_path{src.GetPath(false)}, dst_path{dst.GetPath(false)}; in CreateSymlink() local 3299 stream.PutStringAsRawHex8(dst_path); in CreateSymlink()
|