/llvm-project/lldb/test/API/python_api/debugger/ |
H A D | TestDebuggerAPI.py | 112 platform2.GetWorkingDirectory().endswith("bar"), 113 platform2.GetWorkingDirectory(), 121 self.assertIsNone(platform3.GetWorkingDirectory()) 151 platform2.GetWorkingDirectory().endswith("bar"), 152 platform2.GetWorkingDirectory(),
|
/llvm-project/lldb/test/API/python_api/sbplatform/ |
H A D | TestSBPlatform.py | 40 self.assertIsNone(dbg_platform.GetWorkingDirectory()) 53 self.assertEqual(dbg_platform.GetWorkingDirectory(), self.getBuildDir())
|
/llvm-project/lldb/test/API/functionalities/load_unload/ |
H A D | TestLoadUnload.py | 34 path = lldb.remote_platform.GetWorkingDirectory() 60 wd = lldb.remote_platform.GetWorkingDirectory() 180 wd = lldb.remote_platform.GetWorkingDirectory() 250 wd = lldb.remote_platform.GetWorkingDirectory()
|
/llvm-project/lldb/source/API/ |
H A D | SBPlatform.cpp | 239 const char *SBPlatformShellCommand::GetWorkingDirectory() { in GetWorkingDirectory() function in SBPlatformShellCommand 356 const char *SBPlatform::GetWorkingDirectory() { in GetWorkingDirectory() function in SBPlatform 361 return platform_sp->GetWorkingDirectory().GetPathAsConstString().AsCString(); in GetWorkingDirectory() 552 if (shell_command.GetWorkingDirectory() == nullptr) { in Run() 554 platform_sp->GetWorkingDirectory().GetPath(); in Run() 560 FileSpec(shell_command.GetWorkingDirectory()), in Run()
|
H A D | SBLaunchInfo.cpp | 210 const char *SBLaunchInfo::GetWorkingDirectory() const { in GetWorkingDirectory() function in SBLaunchInfo 213 return m_opaque_sp->GetWorkingDirectory().GetPathAsConstString().AsCString(); in GetWorkingDirectory()
|
/llvm-project/lldb/test/API/functionalities/gdb_remote_client/ |
H A D | TestPlatformClient.py | 125 self.assertEqual(plat.GetWorkingDirectory(), "/foo/bar") 142 self.assertIsNone(plat.GetWorkingDirectory())
|
/llvm-project/lldb/include/lldb/API/ |
H A D | SBPlatform.h | 77 const char *GetWorkingDirectory(); 117 const char *GetWorkingDirectory();
|
H A D | SBLaunchInfo.h | 161 const char *GetWorkingDirectory() const;
|
/llvm-project/lldb/unittests/Host/ |
H A D | ProcessLaunchInfoTest.cpp | 25 EXPECT_EQ(FileSpec("/wd"), Info.GetWorkingDirectory()); in TEST()
|
/llvm-project/lldb/source/Host/common/ |
H A D | ProcessLaunchInfo.cpp | 121 const FileSpec &ProcessLaunchInfo::GetWorkingDirectory() const { in GetWorkingDirectory() function in ProcessLaunchInfo 264 FileSpec working_dir = GetWorkingDirectory(); in ConvertArgumentsForLaunchingInShell()
|
/llvm-project/lldb/include/lldb/Host/ |
H A D | ProcessLaunchInfo.h | 67 const FileSpec &GetWorkingDirectory() const;
|
/llvm-project/lldb/tools/debugserver/source/ |
H A D | RNBContext.h | 90 const char *GetWorkingDirectory() const { in GetWorkingDirectory() function
|
H A D | debugserver.cpp | 245 : ctx.GetWorkingDirectory()); in RNBRunLoopLaunchInferior()
|
/llvm-project/lldb/test/API/functionalities/target-new-solib-notifications/ |
H A D | TestModuleLoadedNotifys.py | 27 path = lldb.remote_platform.GetWorkingDirectory()
|
/llvm-project/lldb/source/Host/windows/ |
H A D | ProcessLauncherWindows.cpp | 109 llvm::ConvertUTF8toWide(launch_info.GetWorkingDirectory().GetPath(), in LaunchProcess()
|
H A D | Host.cpp | 232 RunShellCommand(command.c_str(), launch_info.GetWorkingDirectory(), in ShellExpandArguments()
|
/llvm-project/lldb/test/API/types/ |
H A D | AbstractBase.py | 101 self.assertIsNotNone(lldb.remote_platform.GetWorkingDirectory())
|
/llvm-project/lldb/source/Host/posix/ |
H A D | ProcessLauncherPosixFork.cpp | 238 wd(info.GetWorkingDirectory().GetPath()), in FixupEnvironment()
|
/llvm-project/lldb/source/Target/ |
H A D | Platform.cpp | 282 if (GetWorkingDirectory()) { in GetStatus() 283 strm.Printf("WorkingDir: %s\n", GetWorkingDirectory().GetPath().c_str()); in GetStatus() 360 FileSpec Platform::GetWorkingDirectory() { in GetWorkingDirectory() function in Platform 482 FileSpec working_dir = GetWorkingDirectory(); in Install() 1823 FileSpec target_file = GetWorkingDirectory(); in LoadImage()
|
/llvm-project/lldb/source/Plugins/Process/Windows/Common/ |
H A D | ProcessDebugger.cpp | 114 FileSpec working_dir = launch_info.GetWorkingDirectory(); in LaunchProcess()
|
/llvm-project/lldb/packages/Python/lldbsuite/test/ |
H A D | lldbtest.py | 464 lldb.remote_platform.GetWorkingDirectory(), os.path.basename(executable) 482 launch_info.SetWorkingDirectory(lldb.remote_platform.GetWorkingDirectory()) 2015 return lldb.remote_platform.GetWorkingDirectory()
|
/llvm-project/lldb/include/lldb/Target/ |
H A D | Platform.h | 553 FileSpec GetWorkingDirectory();
|
/llvm-project/lldb/source/Host/macosx/objcxx/ |
H A D | Host.mm | 247 FileSpec working_dir{launch_info.GetWorkingDirectory()}; 1234 FileSpec working_dir{launch_info.GetWorkingDirectory()}; 1437 FileSpec cwd(launch_info.GetWorkingDirectory());
|
/llvm-project/lldb/source/Plugins/Platform/gdb-server/ |
H A D | PlatformRemoteGDBServer.cpp | 352 FileSpec working_dir = launch_info.GetWorkingDirectory(); in LaunchProcess()
|
/llvm-project/lldb/packages/Python/lldbsuite/test/tools/lldb-server/ |
H A D | gdbremote_testcase.py | 171 lldb.remote_platform.GetWorkingDirectory(), "server.log"
|