Home
last modified time | relevance | path

Searched refs:replace_path (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/lldb/source/Interpreter/
H A DOptionValuePathMappings.cpp63 const char *replace_path = args.GetArgumentAtIndex(i + 1); in SetValueFromString() local
64 if (VerifyPathExists(replace_path)) { in SetValueFromString()
67 m_path_mappings.Append(orginal_path, replace_path, in SetValueFromString()
75 previousError.c_str(), replace_path); in SetValueFromString()
103 const char *replace_path = args.GetArgumentAtIndex(i + 1); in SetValueFromString() local
104 if (VerifyPathExists(replace_path)) { in SetValueFromString()
113 previousError.c_str(), replace_path); in SetValueFromString()
138 const char *replace_path = args.GetArgumentAtIndex(i + 1); in SetValueFromString() local
139 if (VerifyPathExists(replace_path)) { in SetValueFromString()
140 m_path_mappings.Insert(orginal_path, replace_path, idx, in SetValueFromString()
[all …]
/llvm-project-15.0.7/bolt/utils/
H A Dllvm-bolt-wrapper.py140replace_path = lambda x: os.path.join(tmp, os.path.basename(x)) if x != '/dev/null' else '/dev/nul… function
141 new_args = {key: replace_path(value) for key, value in args.items()}
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/elf-core/
H A DTestLinuxCore.py253 core = replace_path(core, "/test" * 817 + "/a.out", exe_outside)
649 def replace_path(binary, replace_from, replace_to): function