HomeSort by relevance Sort by last modified time
    Searched refs:daemon_pid (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/tools/android/forwarder2/
daemon.cc 255 pid_t daemon_pid = Socket::GetUnixDomainSocketProcessOwner(identifier_); local
256 if (daemon_pid < 0) {
260 if (kill(daemon_pid, SIGTERM) < 0) {
264 LOG(ERROR) << "Could not kill daemon with PID " << daemon_pid;
271 const pid_t previous_pid = daemon_pid;
272 daemon_pid = Socket::GetUnixDomainSocketProcessOwner(identifier_);
273 if (daemon_pid < 0)
277 if (daemon_pid != previous_pid) {
280 << daemon_pid << ") seems to be running now."; local
  /external/oprofile/gui/
oprof_start_util.cpp 45 string daemon_pid; member in namespace:__anon7971
54 if (!daemon_pid.empty()) {
55 string proc_filename = string("/proc/") + daemon_pid + "/exe";
58 daemon_pid.erase();
63 if (daemon_pid.empty()) {
80 daemon_pid = dirent->d_name;
93 if (daemon_pid.empty())
  /external/lldb/test/pexpect-2.4/examples/
cgishell.cgi 50 daemon_pid = daemonize(daemon_pid_filename=mypid_name)
52 if daemon_pid != 0:
54 return daemon_pid
182 daemon_pid = int(file(daemon_pid_filename,'r').read())
183 return daemon_pid

Completed in 349 milliseconds