Lines Matching refs:Process
282 class Process {
284 constexpr explicit Process(HANDLE h = nullptr) : h_(h) {} in h_()
285 constexpr Process(Process&& other) : h_(std::exchange(other.h_, nullptr)) {} in Process() function
286 ~Process() { close(); } in ~Process()
302 DISALLOW_COPY_AND_ASSIGN(Process);
314 Process adb_launch_process(std::string_view executable, std::vector<std::string> args,
679 class Process {
681 constexpr explicit Process(pid_t pid) : pid_(pid) {} in Process() function
682 constexpr Process(Process&& other) : pid_(std::exchange(other.pid_, -1)) {} in Process() function
700 DISALLOW_COPY_AND_ASSIGN(Process);
705 Process adb_launch_process(std::string_view executable, std::vector<std::string> args,