reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/Support/FileSystem.h
  387 std::error_code set_current_path(const Twine &path);

References

lib/Support/VirtualFileSystem.cpp
  319     return llvm::sys::fs::set_current_path(Path);
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp
  356   if (std::error_code ec = llvm::sys::fs::set_current_path(path))
tools/lldb/source/Target/Platform.cpp
  749     if (std::error_code ec = llvm::sys::fs::set_current_path(file_spec.GetPath())) {
tools/lldb/tools/lldb-vscode/lldb-vscode.cpp
  509     llvm::sys::fs::set_current_path(debuggerRoot.data());
 1195     llvm::sys::fs::set_current_path(debuggerRoot.data());
tools/lldb/unittests/Interpreter/TestCompletion.cpp
   63     ASSERT_NO_ERROR(fs::set_current_path(OriginalWorkingDir));
  179   llvm::sys::fs::set_current_path(BaseDir);
unittests/Support/Path.cpp
 1649     ~RestorePath() { fs::set_current_path(path); }
 1652   ASSERT_NO_ERROR(fs::set_current_path(TestDirectory));