Home
last modified time | relevance | path

Searched refs:src_path (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/comp_dir_symlink/
H A DTestCompDirSymLink.py32 src_path = self.getBuildArtifact(_SRC_FILE)
33 lldbutil.run_break_set_by_file_and_line(self, src_path, self.line)
40 src_path = self.getBuildArtifact(_SRC_FILE)
42 src_path = os.path.realpath(src_path)
43 lldbutil.run_break_set_by_file_and_line(self, src_path, self.line)
49 src_path = self.getBuildArtifact(_SRC_FILE)
54 src_path,
61 src_path = self.getBuildArtifact(_SRC_FILE)
66 src_path,
/llvm-project-15.0.7/lldb/test/API/functionalities/source-map/
H A DTestTargetSourceMap.py13 def assertBreakpointWithSourceMap(src_path): argument
15 bp = target.BreakpointCreateByLocation(src_path, 2)
29 src_path = os.path.join(src_dir, "main.c")
39 bp = target.BreakpointCreateByLocation(src_path, 2)
65 assertBreakpointWithSourceMap(src_path)
83 assertBreakpointWithSourceMap(src_path)
132 assertBreakpointWithSourceMap(src_path)
/llvm-project-15.0.7/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp101 std::string src_path(source.GetPath()); in PutFile() local
102 if (src_path.empty()) in PutFile()
108 command.Printf("cp %s %s", src_path.c_str(), dst_path.c_str()); in PutFile()
121 std::string src_path(source.GetPath()); in PutFile() local
122 if (src_path.empty()) in PutFile()
130 command.Printf("rsync %s %s %s", GetRSyncOpts(), src_path.c_str(), in PutFile()
162 std::string src_path(source.GetPath()); in GetFile() local
163 if (src_path.empty()) in GetFile()
174 cp_command.Printf("cp %s %s", src_path.c_str(), dst_path.c_str()); in GetFile()
186 command.Printf("rsync %s %s %s", GetRSyncOpts(), src_path.c_str(), in GetFile()
[all …]
/llvm-project-15.0.7/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()
102 llvm::SmallString<64> result(src_path); in ResolvePath()
/llvm-project-15.0.7/utils/bazel/
H A Dconfigure.bzl36 src_path = repository_ctx.path(Label("//:WORKSPACE")).dirname
37 bazel_path = src_path.get_child("utils").get_child("bazel")
54 src_path,
/llvm-project-15.0.7/llvm/tools/sancov/
H A Dcoverage-report-server.py129 src_path = None variable in ServerHandler
154 filepath = os.path.join(self.src_path, filename)
194 ServerHandler.src_path = args.srcpath
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBFileSpec.i75 ResolvePath (const char *src_path, char *dst_path, size_t dst_len);
/llvm-project-15.0.7/lldb/scripts/
H A Danalyze-project-deps.py81 src_path = os.path.join(base, src) variable
82 scan_deps(norm_base_path, src_path)
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBFileSpec.h53 static int ResolvePath(const char *src_path, char *dst_path, size_t dst_len);
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Dlldbtest.py440 src_path = executable
446 lldb.SBFileSpec(src_path, True), dst_file_spec)
450 (src_path, dst_path, err))
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp3293 std::string src_path{src.GetPath(false)}, dst_path{dst.GetPath(false)}; in CreateSymlink() local
3301 stream.PutStringAsRawHex8(src_path); in CreateSymlink()