HomeSort by relevance Sort by last modified time
    Searched refs:pid_ (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/google-breakpad/src/client/mac/crash_generation/
client_info.h 37 explicit ClientInfo(pid_t pid) : pid_(pid) {}
39 pid_t pid() const { return pid_; }
42 pid_t pid_; member in class:google_breakpad::ClientInfo
  /external/google-breakpad/src/client/linux/crash_generation/
client_info.h 41 pid_(pid) {}
44 pid_t pid() const { return pid_; }
48 pid_t pid_; member in class:google_breakpad::ClientInfo
  /system/connectivity/shill/
dns_server_proxy.cc 42 pid_(kInvalidPID),
46 if (pid_ != kInvalidPID) {
52 if (pid_ != kInvalidPID) {
84 pid_ = pid;
85 LOG(INFO) << "Spawned " << kDnsmasqPath << " with pid: " << pid_; local
90 if (pid_ == kInvalidPID) {
94 process_manager_->StopProcess(pid_);
98 CHECK(pid_);
100 LOG(WARNING) << "pid " << pid_ << " exit status " << exit_status;
102 pid_ = kInvalidPID
    [all...]
external_task.cc 42 pid_(0) {
60 CHECK(!pid_);
83 pid_ = pid;
89 if (pid_) {
90 process_manager_->StopProcess(pid_);
91 pid_ = 0;
106 CHECK(pid_);
107 LOG(INFO) << __func__ << "(" << pid_ << ", "
109 death_callback_.Run(pid_, exit_status);
110 pid_ = 0
    [all...]
dns_server_proxy.h 48 int pid_; member in class:shill::DNSServerProxy
external_task_unittest.cc 73 if (external_task_->pid_) {
74 EXPECT_CALL(process_manager_, StopProcess(external_task_->pid_));
91 EXPECT_EQ(0, external_task_->pid_);
141 external_task_->pid_ = pid;
220 EXPECT_EQ(kPID, external_task_->pid_);
261 external_task_->pid_ = kPID;
265 EXPECT_EQ(0, external_task_->pid_);
  /external/regex-re2/util/
thread.cc 11 pid_ = 0;
27 pthread_create(&pid_, 0, startThread, this);
30 pthread_detach(pid_);
37 pthread_join(pid_, &val);
thread.h 20 pthread_t pid_; member in class:Thread
  /system/connectivity/shill/dhcp/
dhcp_config.cc 83 pid_(0),
106 if (!pid_) {
118 if (!pid_) {
133 if (!pid_) {
215 pid_ = pid;
216 LOG(INFO) << "Spawned " << kDHCPCDPath << " with pid: " << pid_; local
217 provider_->BindPID(pid_, this);
223 LOG_IF(INFO, pid_) << "Stopping " << pid_ << " (" << reason << ")";
231 if (!pid_) {
    [all...]
dhcp_config_unittest.cc 157 EXPECT_EQ(0, config_->pid_);
272 config_->pid_ = 1 << 18; // Ensure unknown positive PID.
276 config_->pid_ = 0;
280 config_->pid_ = 1 << 18; // Ensure unknown positive PID.
288 config_->pid_ = 0;
292 config_->pid_ = 1 << 18; // Ensure unknown positive PID.
300 config_->pid_ = 0;
304 config_->pid_ = 1 << 18; // Ensure unknown positive PID.
310 config_->pid_ = 0;
314 config_->pid_ = 1 << 18; // Ensure unknown positive PID
    [all...]
  /system/core/libbacktrace/
ThreadEntry.h 54 bool Match(pid_t chk_pid, pid_t chk_tid) { return (chk_pid == pid_ && chk_tid == tid_); }
56 pid_t pid_; member in class:ThreadEntry
BacktraceMap.cpp 28 BacktraceMap::BacktraceMap(pid_t pid) : pid_(pid) {
29 if (pid_ < 0) {
30 pid_ = getpid();
106 snprintf(cmd, sizeof(cmd), "vmmap -w -resident -submap -allSplitLibs -interleaved %d", pid_);
110 snprintf(path, sizeof(path), "/proc/%d/maps", pid_);
  /system/extras/iotop/
taskstats.h 34 pid_t pid() const { return pid_; }
46 void set_pid(pid_t pid) { pid_ = pid; }
52 pid_t pid_; member in class:TaskStatistics
taskstats.cpp 169 pid_ = taskstats_stats.ac_pid;
173 pid_ = taskstats_stats.ac_pid;
208 if (pid_ == pid_statistics.pid_) {
211 gid_ = pid_statistics.pid_;
  /external/libbrillo/brillo/
process.cc 48 : pid_(0),
309 if (pid_ == 0) {
313 if (HANDLE_EINTR(waitpid(pid_, &status, 0)) < 0) {
315 LOG(ERROR) << "Problem waiting for pid " << pid_ << ": " << saved_errno;
318 pid_t old_pid = pid_;
340 return pid_;
344 if (pid_ == 0) {
349 if (kill(pid_, signal) < 0) {
351 LOG(ERROR) << "Unable to send signal to " << pid_ << " error "
358 pid_t w = waitpid(pid_, &status, WNOHANG)
    [all...]
  /external/google-breakpad/src/client/solaris/handler/
solaris_lwp.h 117 int getpid() const { return this->pid_; }
155 int pid_; member in class:google_breakpad::SolarisLwp
  /external/google-breakpad/src/client/windows/crash_generation/
client_info.h 60 DWORD pid() const { return pid_; }
109 DWORD pid_; member in class:google_breakpad::ClientInfo
  /system/core/libmemunreachable/
ThreadCapture.cpp 91 pid_t pid_; member in class:ThreadCaptureImpl
96 captured_threads_(allocator), allocator_(allocator), pid_(pid) {
104 char* pid_str = pid_to_str(pid_buf, sizeof(pid_buf), pid_);
180 ALOGE("failed to detach from thread %d of process %d: %s", tid, pid_,
190 ALOGE("failed to attach to thread %d of process %d: %s", tid, pid_,
203 ALOGE("failed to interrupt thread %d of process %d: %s", tid, pid_,
223 tid, pid_, strerror(errno));
261 ALOGE("failed to wait for pause of thread %d of process %d: %s", tid, pid_,
269 tid, pid_);
289 signal, tid, pid_);
    [all...]
  /system/core/adb/
shell_service.cpp 160 pid_t pid() const { return pid_; }
192 pid_t pid_ = -1; member in class:__anon74203::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/libchrome/base/process/
process_iterator.cc 11 ProcessEntry::ProcessEntry() : pid_(0), ppid_(0), gid_(0) {}
process_iterator.h 46 ProcessId pid() const { return pid_; }
54 ProcessId pid_;
  /system/core/include/backtrace/
Backtrace.h 127 pid_t Pid() const { return pid_; }
163 pid_t pid_; member in class:Backtrace
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_linux.h 68 int pid_; member in class:__sanitizer::ThreadLister
  /system/core/init/
service.cpp 64 : name_(name), classname_(classname), flags_(0), pid_(0), time_started_(0),
73 : name_(name), classname_(classname), flags_(flags), pid_(0), time_started_(0),
99 name_.c_str(), pid_);
100 kill(-pid_, SIGKILL);
110 INFO("SVC_EXEC pid %d finished...\n", pid_);
114 pid_ = 0;
485 pid_ = 0;
490 pid_ = pid;
495 pid_, uid_, gid_, supp_gids_.size(),
531 if (pid_) {
    [all...]
  /external/google-breakpad/src/client/linux/minidump_writer/
linux_dumper.cc 76 : pid_(pid),
108 if (pid_ == sys_getpid()) {
112 CopyFromProcess(linux_gate, pid_,
259 if (!BuildProcPath(auxv_path, pid_, "auxv")) {
285 if (!BuildProcPath(maps_path, pid_, "maps"))
454 if (!BuildProcPath(exe_link, pid_, "exe"))

Completed in 363 milliseconds

1 2 3