Lines Matching refs:Process
314 class Process {
316 constexpr explicit Process(HANDLE h = nullptr) : h_(h) {} in h_()
317 constexpr Process(Process&& other) : h_(std::exchange(other.h_, nullptr)) {} in Process() function
318 ~Process() { close(); } in ~Process()
334 DISALLOW_COPY_AND_ASSIGN(Process);
346 Process adb_launch_process(std::string_view executable, std::vector<std::string> args,
751 class Process {
753 constexpr explicit Process(pid_t pid) : pid_(pid) {} in Process() function
754 constexpr Process(Process&& other) : pid_(std::exchange(other.pid_, -1)) {} in Process() function
772 DISALLOW_COPY_AND_ASSIGN(Process);
777 Process adb_launch_process(std::string_view executable, std::vector<std::string> args,