Home
last modified time | relevance | path

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

/device/google/cuttlefish/common/libs/utils/
Dsubprocess.cpp372 Command& Command::SetWorkingDirectory(const std::string& path) & { in SetWorkingDirectory() function in cuttlefish::Command
382 return SetWorkingDirectory(fd); in SetWorkingDirectory()
384 Command Command::SetWorkingDirectory(const std::string& path) && { in SetWorkingDirectory() function in cuttlefish::Command
385 return std::move(SetWorkingDirectory(path)); in SetWorkingDirectory()
387 Command& Command::SetWorkingDirectory(SharedFD dirfd) & { in SetWorkingDirectory() function in cuttlefish::Command
392 Command Command::SetWorkingDirectory(SharedFD dirfd) && { in SetWorkingDirectory() function in cuttlefish::Command
393 return std::move(SetWorkingDirectory(std::move(dirfd))); in SetWorkingDirectory()
Dsubprocess.h293 Command& SetWorkingDirectory(const std::string& path) &;
294 Command SetWorkingDirectory(const std::string& path) &&;
295 Command& SetWorkingDirectory(SharedFD dirfd) &;
296 Command SetWorkingDirectory(SharedFD dirfd) &&;
/device/google/cuttlefish/host/commands/run_cvd/
Dserver_loop_impl_snapshot.cpp153 adb_command.SetWorkingDirectory("/"); in RunAdbShellCommand()