HomeSort by relevance Sort by last modified time
    Searched refs:pid (Results 476 - 500 of 790) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/browser/renderer_host/
chrome_render_message_filter.h 76 void OnRendererTcmalloc(base::ProcessId pid, const std::string& output);
  /external/dbus/dbus/
dbus-credentials.h 45 dbus_pid_t pid);
dbus-spawn.c 200 pid_t sitter_pid; /**< PID Of the babysitter */
201 pid_t grandchild_pid; /**< PID of the grandchild */
445 pid_t pid = -1; local
447 r = read_pid (fd, &pid, &error);
452 _dbus_warn ("Failed to read PID from fd %d: %s\n", fd, error.message);
461 sitter->grandchild_pid = pid;
463 _dbus_verbose ("recorded grandchild pid %d\n", sitter->grandchild_pid);
600 * Blocks until the babysitter process gives us the PID of the spawned grandchild,
608 /* be sure we have the PID of the child */
613 _dbus_verbose ("Got child PID %ld for killing\n"
1122 pid_t pid; local
    [all...]
  /external/kernel-headers/original/linux/
ptrace.h 85 extern struct task_struct *ptrace_get_task_struct(pid_t pid);
sem.h 87 int sempid; /* pid of last operation */
109 int pid; /* process id of requesting process */ member in struct:sem_queue
  /external/llvm/utils/Misc/
zkill 63 kExpectedPSFields = [('PID', int, 'pid'),
140 parser = OptionParser("usage: %prog [options] {pid}*")
223 # Get the pid list to consider.
236 if p.pid in pids]
266 (p.pid, signalValueName, p.user, p.executable, p.cpu_percent, p.cpu_time, p.vmem_size, p.rss))
269 os.kill(p.pid, signal)
273 warning('unable to kill PID: %r' % p.pid)
  /external/openssl/crypto/rand/
rand_os2.c 83 APIRET APIENTRY(*DosQuerySysState) (ULONG func, ULONG arg1, ULONG pid, ULONG _res_, PVOID buf, ULONG bufsz) = NULL;
  /external/qemu/android/utils/
filelock.c 59 ** create 'temp' and store our pid in it
90 #define PIDFILE_NAME "pid"
112 /* check to see if there is a pid file in it */
131 D( "no pid file in '%s', assuming stale directory", lock->lock );
144 D( "could not read pid file '%s'", lock->temp );
151 /* PID 0 is the IDLE process, and 0 is returned in case of invalid input */
189 /* write our PID into the pid file */
211 D( "could not write PID to '%s'\n", lock->temp );
223 char pid[8]
    [all...]
  /system/netd/
SoftapController.cpp 172 pid_t pid = 1; local
184 if ((pid = fork()) < 0) {
189 if (!pid) {
207 mPid = pid;
  /bionic/libc/include/
sched.h 52 extern int sched_rr_get_interval(pid_t pid, struct timespec *tp);
101 extern int sched_setaffinity(pid_t pid, size_t setsize, const cpu_set_t* set);
103 extern int sched_getaffinity(pid_t pid, size_t setsize, cpu_set_t* set);
  /bootable/recovery/
install.c 113 pid_t pid = fork(); local
114 if (pid == 0) {
155 waitpid(pid, &status, 0);
  /development/apps/Development/src/com/android/development/
BadBehaviorActivity.java 99 public boolean appCrashed(String proc, int pid, String m, String m2, long time, String st) {
103 public int appEarlyNotResponding(String processName, int pid, String annotation) {
107 public int appNotResponding(String proc, int pid, String st) {
  /external/bluetooth/bluez/src/
sdpd-server.c 256 uint16_t vid = 0x0000, pid = 0x0000, ver = 0x0000; local
261 pid = (uint16_t) strtol(ptr + 1, NULL, 16);
265 register_device_id(vid, pid, ver);
  /external/chromium/base/
linux_util.cc 78 // Parse a symlink in /proc/pid/fd/$x and return the inode number of the
255 pid_t FindThreadIDWithSyscall(pid_t pid, const std::string& expected_data) {
257 snprintf(buf, sizeof(buf), "/proc/%d/task", pid);
279 snprintf(buf, sizeof(buf), "/proc/%d/task/%d/syscall", pid, current_tid);
  /external/chromium/chrome/common/
service_process_util.cc 135 bool GetServiceProcessData(std::string* version, base::ProcessId* pid) {
149 if (pid)
150 *pid = service_data->service_process_pid;
  /external/dbus/bus/
dir-watch-inotify.c 64 pid_t pid; local
76 pid = _dbus_getpid ();
89 (void) kill (pid, SIGHUP);
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
server_process.py 205 pid = self._proc.pid
227 self._executive.kill_process(self._proc.pid)
  /frameworks/base/media/libmediaplayerservice/
MetadataRetrieverClient.cpp 47 MetadataRetrieverClient::MetadataRetrieverClient(pid_t pid)
49 LOGV("MetadataRetrieverClient constructor pid(%d)", pid);
50 mPid = pid;
68 snprintf(buffer, 255, " pid(%d)\n", mPid);
77 LOGV("disconnect from pid %d", mPid);
  /hardware/msm7k/libgralloc-qsd8k/
mapper.cpp 122 if (hnd->pid != getpid()) {
149 if (hnd->pid != getpid()) {
176 if (hnd->pid != getpid()) {
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogCatFilterSettingsSerializer.java 42 private static final String KW_PID = "pid";
101 String pid = ""; local
120 pid = value;
128 fs.add(new LogCatFilter(name, tag, text, pid, app, level));
  /sdk/emulator/qtools/
trace_reader_base.h 34 int pid; member in struct:BBEvent
42 int pid; // for fork: child pid; for switch: next pid; member in struct:PidEvent
63 int pid; member in struct:MethodRec
  /frameworks/base/core/java/android/app/
ContextImpl.java 1216 int pid = Binder.getCallingPid(); local
1306 int pid = Binder.getCallingPid(); local
    [all...]
  /external/dbus/test/
break-loader.c 89 int pid; local
94 pid = fork ();
96 if (pid < 0)
104 if (pid == 0)
119 if (waitpid (pid, &status, 0) < 0)
  /external/qemu/hw/
usb-hub.c 440 switch(p->pid) {
503 printf("usb_hub: pid=0x%x\n", pid);
508 (p->pid == USB_TOKEN_SETUP ||
509 p->pid == USB_TOKEN_OUT ||
510 p->pid == USB_TOKEN_IN)) {
  /frameworks/base/services/java/com/android/server/am/
ProcessRecord.java 53 int pid; // The process of this application; 0 if none field in class:ProcessRecord
177 pw.print(prefix); pw.print("pid="); pw.print(pid); pw.print(" starting=");
209 pid, SystemClock.elapsedRealtime());
283 pid = _pid;
340 sb.append(pid);

Completed in 1447 milliseconds

<<11121314151617181920>>