Searched defs:pid_ (Results 1 - 16 of 16) sorted by relevance

/system/connectivity/shill/
H A Ddns_server_proxy.h48 int pid_; member in class:shill::DNSServerProxy
H A Dexternal_task.h119 pid_t pid_; member in class:shill::ExternalTask
H A Ddns_server_proxy.cc42 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_
[all...]
/system/core/libbacktrace/
H A DThreadEntry.h54 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
/system/connectivity/shill/dhcp/
H A Ddhcp_config.h192 int pid_; member in class:shill::DHCPConfig
H A Ddhcp_config.cc83 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...]
/system/connectivity/shill/vpn/
H A Dopenvpn_driver.h289 int pid_; member in class:shill::OpenVPNDriver
/system/core/include/backtrace/
H A DBacktraceMap.h108 pid_t pid_; member in class:BacktraceMap
H A DBacktrace.h127 pid_t Pid() const { return pid_; }
163 pid_t pid_; member in class:Backtrace
/system/extras/iotop/
H A Dtaskstats.h34 pid_t pid() const { return pid_; }
46 void set_pid(pid_t pid) { pid_ = pid; }
52 pid_t pid_; member in class:TaskStatistics
/system/core/crash_reporter/
H A Duser_collector_test.cc72 pid_ = getpid();
90 pid_t pid_; member in class:UserCollectorTest
342 ASSERT_FALSE(collector_.CopyOffProcFiles(pid_, FilePath("/bad/path")));
354 ASSERT_TRUE(collector_.CopyOffProcFiles(pid_, container_path));
/system/core/init/
H A Dservice.h93 pid_t pid() const { return pid_; }
133 pid_t pid_; member in class:Service
/system/core/libmemunreachable/
H A DThreadCapture.cpp91 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...]
H A DMemUnreachable.cpp50 MemUnreachable(pid_t pid, Allocator<void> allocator) : pid_(pid), allocator_(allocator),
65 pid_t pid_; member in class:MemUnreachable
81 ALOGI("searching process %d for allocations", pid_);
125 ALOGI("sweeping process %d for unreachable memory", pid_);
/system/connectivity/shill/net/
H A Drtnl_message.h171 uint32_t pid() const { return pid_; }
243 uint32_t pid_; member in class:shill::RTNLMessage
/system/core/adb/
H A Dshell_service.cpp160 pid_t pid() const { return pid_; }
192 pid_t pid_ = -1; member in class:__anon1491::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_, SIGKIL
707 << ") for pid " << pid_; local
[all...]

Completed in 513 milliseconds