HomeSort by relevance Sort by last modified time
    Searched defs:pid_ (Results 26 - 27 of 27) sorted by null

12

  /system/core/adb/
shell_service.cpp 160 pid_t pid() const { return pid_; }
192 pid_t pid_ = -1; member in class:__anon74611::Subprocess
291 pid_ = forkpty(&fd, pts_name, nullptr, nullptr);
292 if (pid_ > 0) {
308 pid_ = fork();
311 if (pid_ == -1) {
316 if (pid_ == 0) {
370 kill(pid_, SIGKILL);
379 kill(pid_, SIGKILL);
392 kill(pid_, SIGKILL)
707 << ") for pid " << pid_; local
    [all...]
  /external/v8/src/
d8-posix.cc 147 explicit ZombieProtector(int pid): pid_(pid) { }
148 ~ZombieProtector() { if (pid_ != 0) waitpid(pid_, NULL, 0); }
149 void ChildIsDeadNow() { pid_ = 0; }
151 int pid_; member in class:v8::ZombieProtector

Completed in 873 milliseconds

12