Lines Matching refs:pid_
52 : pid_(0), in ProcessImpl()
330 if (pid_ == 0) { in Wait()
334 if (HANDLE_EINTR(waitpid(pid_, &status, 0)) < 0) { in Wait()
336 LOG(ERROR) << "Problem waiting for pid " << pid_ << ": " << saved_errno; in Wait()
339 pid_t old_pid = pid_; in Wait()
361 return pid_; in pid()
365 if (pid_ == 0) { in Kill()
370 if (kill(pid_, signal) < 0) { in Kill()
371 PLOG(ERROR) << "Unable to send signal to " << pid_; in Kill()
377 pid_t w = waitpid(pid_, &status, WNOHANG); in Kill()
390 LOG(INFO) << "process " << pid_ << " did not exit from signal " << signal in Kill()
396 pid_ = new_pid; in UpdatePid()
407 if (pid_) in Reset()
429 pid_t old_pid = pid_; in Release()
430 pid_ = 0; in Release()