Home
last modified time | relevance | path

Searched refs:new_path (Results 1 – 15 of 15) sorted by relevance

/llvm-project/lldb/source/Host/common/
H A DProcessLaunchInfo.cpp267 std::string new_path("PATH=\""); in ConvertArgumentsForLaunchingInShell() local
268 const size_t empty_path_len = new_path.size(); in ConvertArgumentsForLaunchingInShell()
271 new_path += working_dir.GetPath(); in ConvertArgumentsForLaunchingInShell()
275 new_path += cwd; in ConvertArgumentsForLaunchingInShell()
279 if (new_path.size() > empty_path_len) in ConvertArgumentsForLaunchingInShell()
280 new_path += ':'; in ConvertArgumentsForLaunchingInShell()
281 new_path += curr_path; in ConvertArgumentsForLaunchingInShell()
283 new_path += "\" "; in ConvertArgumentsForLaunchingInShell()
284 shell_command.PutCString(new_path); in ConvertArgumentsForLaunchingInShell()
/llvm-project/compiler-rt/test/asan/Unit/
H A Dlit.site.cfg.py.in11 push_ld_library_path(config, new_path) global() argument
/llvm-project/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.current_path/
H A Dcurrent_path.pass.cpp56 const path new_path = static_env.Dir; in current_path_after_change_test() local
57 current_path(new_path); in current_path_after_change_test()
58 assert(current_path() == new_path); in current_path_after_change_test()
/llvm-project/lldb/source/Utility/
H A DFileSpec.cpp434 llvm::SmallString<64> new_path(component); in PrependPathComponent() local
437 llvm::sys::path::append(new_path, in PrependPathComponent()
440 SetFile(new_path, m_style); in PrependPathComponent()
443 void FileSpec::PrependPathComponent(const FileSpec &new_path) { in PrependPathComponent() argument
444 return PrependPathComponent(new_path.GetPath(false)); in PrependPathComponent()
454 void FileSpec::AppendPathComponent(const FileSpec &new_path) { in AppendPathComponent() argument
455 return AppendPathComponent(new_path.GetPath(false)); in AppendPathComponent()
/llvm-project/lldb/source/Target/
H A DPathMappingList.cpp205 ConstString &new_path) const { in RemapPath()
207 new_path.SetString(remapped->GetPath()); in RemapPath()
293 bool PathMappingList::Replace(llvm::StringRef path, llvm::StringRef new_path, in FindIteratorForPath()
301 m_pairs[idx].second = ConstString(new_path); in FindIteratorForPath()
350 ConstString &new_path) const {
354 new_path = m_pairs[idx].second;
265 Replace(llvm::StringRef path,llvm::StringRef new_path,bool notify) Replace() argument
/llvm-project/lldb/include/lldb/Target/
H A DPathMappingList.h65 ConstString &new_path) const;
78 bool RemapPath(ConstString path, ConstString &new_path) const;
80 /// Remaps a source file given \a path into \a new_path.
/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_win.cpp286 char *new_path = (char *)InternalAlloc(kMaxPathLength); in ChooseSymbolizerTools()
287 SubstituteForFlagValue(user_path, new_path, kMaxPathLength); in ChooseSymbolizerTools()
288 user_path = new_path; in ChooseSymbolizerTools()
285 char *new_path = (char *)InternalAlloc(kMaxPathLength); ChooseSymbolizerTools() local
H A Dsanitizer_symbolizer_posix_libcdep.cpp413 char *new_path = (char *)InternalAlloc(kMaxPathLength); in ChooseExternalSymbolizer() local
414 SubstituteForFlagValue(path, new_path, kMaxPathLength); in ChooseExternalSymbolizer()
415 path = new_path; in ChooseExternalSymbolizer()
/llvm-project/lldb/include/lldb/Utility/
H A DFileSpec.h384 void PrependPathComponent(const FileSpec &new_path);
387 void AppendPathComponent(const FileSpec &new_path);
/llvm-project/clang/utils/analyzer/
H A DSATestBenchmark.py79 def compare(old_path: str, new_path: str, plot_file: str):
85 new = _load(new_path)
/llvm-project/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.cpp381 char new_path[PATH_MAX]; in GetSharedModule()
386 new_path, sizeof(new_path)); in GetSharedModule()
387 if (search_path_len < sizeof(new_path)) { in GetSharedModule()
388 snprintf(new_path + search_path_len, in GetSharedModule()
389 sizeof(new_path) - search_path_len, "/%s", in GetSharedModule()
391 FileSpec new_file_spec(new_path); in GetSharedModule()
375 char new_path[PATH_MAX]; GetSharedModule() local
/llvm-project/compiler-rt/test/
H A Dlit.common.cfg.py80 def push_dynamic_library_lookup_path(config, new_path): argument
91 (new_path, config.environment.get(dynamic_library_lookup_var, ""))
98 (new_path, config.environment.get(dynamic_library_lookup_var, ""))
105 (new_path, config.environment.get(dynamic_library_lookup_var, ""))
111 (new_path, config.environment.get(dynamic_library_lookup_var, ""))
/llvm-project/lldb/source/Commands/
H A DCommandObjectProcess.cpp372 char new_path[PATH_MAX]; DoExecute() local
H A DCommandObjectTarget.cpp1139 ConstString old_path, new_path; in HandleArgumentCompletion() local
1141 if (!list.GetPathsAtIndex(i, old_path, new_path)) in HandleArgumentCompletion()
1144 strm << old_path << " -> " << new_path; in HandleArgumentCompletion()
/llvm-project/lldb/source/Core/
H A DModule.cpp1383 std::string new_path(file.GetPath()); in SetSymbolFileFileSpec()
1385 if (llvm::StringRef(old_path).starts_with(new_path)) { in SetSymbolFileFileSpec()
1369 std::string new_path(file.GetPath()); SetSymbolFileFileSpec() local