/external/valgrind/main/none/tests/ |
fork.c | 9 pid_t pid; local 11 pid = fork (); 18 printf("%s", pid==0 ? "X" : "XX"); 20 if (pid != 0) 21 waitpid(pid, NULL, 0);
|
syscall-restart1.c | 17 int pid; local 25 pid = fork(); 27 if (pid == -1) { 32 if (pid == 0) { 54 kill(pid, SIGUSR1); 59 waitpid(pid, NULL, 0);
|
syscall-restart2.c | 17 int pid; local 25 pid = fork(); 27 if (pid == -1) { 32 if (pid == 0) { 54 kill(pid, SIGUSR1); 58 waitpid(pid, NULL, 0);
|
/frameworks/base/core/java/android/net/ |
Credentials.java | 24 /** pid of process. root peers may lie. */ 25 private final int pid; field in class:Credentials 31 public Credentials (int pid, int uid, int gid) { 32 this.pid = pid; 38 return pid;
|
/external/chromium/chrome/browser/net/ |
url_request_tracking.cc | 13 // PID. 18 explicit OriginPidData(int pid) : pid_(pid) {} 21 int pid() const { return pid_; } function in class:__anon2814::OriginPidData 22 void set_pid(int pid) { pid_ = pid; } 34 void SetOriginPIDForRequest(int pid, net::URLRequest* request) { 36 request->SetUserData(&kOriginPidKey, new OriginPidData(pid)); 44 return data->pid();
|
/frameworks/base/core/java/android/app/ |
IProcessObserver.aidl | 22 void onForegroundActivitiesChanged(int pid, int uid, boolean foregroundActivities); 23 void onProcessDied(int pid, int uid);
|
IActivityController.aidl | 46 boolean appCrashed(String processName, int pid, 53 int appEarlyNotResponding(String processName, int pid, String annotation); 60 int appNotResponding(String processName, int pid, String processStats);
|
/external/dhcpcd/dhcpcd-hooks/ |
50-yp.conf | 6 [ -s /var/run/ypbind.pid ] && cat /var/run/ypbind.pid 12 local cf=/etc/yp.conf."$interface" prefix= x= pid= 31 pid="$(ypbind_pid)" 32 if [ -n "$pid" ]; then 33 kill -HUP "$pid" 41 local pid="$(ypbind_pid)" 42 if [ -n "$pid" ]; then 43 kill -HUP "$pid"
|
/system/vold/ |
Process.h | 24 static int checkSymLink(int pid, const char *path, const char *name); 25 static int checkFileMaps(int pid, const char *path); 26 static int checkFileMaps(int pid, const char *path, char *openFilename, size_t max); 27 static int checkFileDescriptorSymLinks(int pid, const char *mountPoint); 28 static int checkFileDescriptorSymLinks(int pid, const char *mountPoint, char *openFilename, size_t max); 29 static void getProcessName(int pid, char *buffer, size_t max);
|
/external/chromium/chrome/browser/ |
load_from_memory_cache_details.cc | 9 int pid, 13 pid_(pid),
|
/external/dnsmasq/contrib/dnsmasq_MacOSX/ |
DNSmasq | 11 pid=`GetPID dnsmasq` 13 kill $pid
|
/frameworks/base/core/java/android/os/ |
IPermissionController.aidl | 22 boolean checkPermission(String permission, int pid, int uid);
|
/system/core/include/cutils/ |
iosched_policy.h | 31 extern int android_set_ioprio(int pid, IoSchedClass clazz, int ioprio); 32 extern int android_get_ioprio(int pid, IoSchedClass *clazz, int *ioprio);
|
/bionic/libc/unistd/ |
daemon.c | 34 pid_t pid; local 56 pid = fork(); 57 if (pid < 0) 60 if (pid > 0)
|
popen.c | 45 static struct pid { struct 46 struct pid *next; 48 pid_t pid; member in struct:pid 56 struct pid * volatile cur; 59 pid_t pid; local 67 if ((cur = malloc(sizeof(struct pid))) == NULL) 75 switch (pid = fork()) { 84 struct pid *pcur; 123 cur->pid = pid; 140 pid_t pid; local [all...] |
/external/strace/ |
strace-graph | 44 my ($pid, $call, $args, $result, $time); 48 $pid = $1; 62 $unfinished{$pid} = $_; 67 unless (exists $unfinished{$pid}) { 71 $_ = $unfinished{$pid} . $_; 72 delete $unfinished{$pid}; 76 # $pid received signal $1 82 # $pid received signal $1 83 handle_killed($pid, $time); 93 handle_trace($pid, $call, $args, $result, $time) [all...] |
/external/chromium/chrome/browser/resources/gpu_internals/ |
tracing_controller_tests.js | 10 events: [{"cat":"renderer","pid":21296,"tid":21296,"ts":438877834451,"ph":"B","name":"RenderWidget::OnUpdateRectAck","args":{}},{"cat":"renderer","pid":21296,"tid":21296,"ts":438877834469,"ph":"B","name":"RenderWidget::DoDeferredUpdate","args":{}},{"cat":"renderer","pid":21296,"tid":21296,"ts":438877849541,"ph":"E","name":"RenderWidget::DoDeferredUpdate","args":{}},{"cat":"renderer","pid":21296,"tid":21296,"ts":438877849547,"ph":"E","name":"RenderWidget::OnUpdateRectAck","args":{}},{"cat":"webkit","pid":21296,"tid":21296,"ts":438877850049,"ph":"B","name":"v8.compile","args":{"id":"(nil)","extra":""}},{"cat":"webkit","pid":21296,"tid":21296,"ts":438877850118,"ph":"E","name":"v8.compile","args":{}},{"cat":"webkit","pid":21296,"tid":21296,"ts":438877850125,"ph":"B","name":"v8.run","args":{"id":"(nil)","extra":""}},{"cat":"webkit","pid":21296,"tid":21296,"ts":438877949516,"ph":"E","name":"v8.run","args":{}},{"cat":"webkit","pid":21296,"tid":21296,"ts":438877950065,"ph":"B","name":"v8.compile","args":{"id":"(nil)","extra":""}},{"cat":"webkit","pid":21296,"tid":21296,"ts":438877950118,"ph":"E","name":"v8.compile","args":{}},{"cat":"webkit","pid" (…) [all...] |
/external/bluetooth/glib/tests/ |
child-test.c | 57 GPid pid; local 76 pid = pi.hProcess; 78 return pid; 80 pid = fork (); 81 if (pid < 0) 84 if (pid > 0) 85 return pid; 93 child_watch_callback (GPid pid, gint status, gpointer data) 98 g_print ("child " GPID_FORMAT " (ttl %d) exited, status %d\n", pid, ttl, status); 101 g_spawn_close_pid (pid); 125 GPid pid; local 150 GPid pid; local [all...] |
/external/elfutils/src/ |
Makefile.am | 115 bad=0; pid=$$$$; list="$(bin_PROGRAMS)"; for p in $$list; do \ 123 $(DESTDIR)$(bindir)/$$f $$opt > c$${pid}_.out 2> c$${pid}_.err \ 124 && test -n "`cat c$${pid}_.out`" \ 125 && test -z "`cat c$${pid}_.err`"; then :; \ 128 done; rm -f c$${pid}_.???; exit $$bad
|
/system/core/debuggerd/ |
debuggerd.h | 26 extern int unwind_backtrace_with_ptrace(int tfd, pid_t pid, mapinfo *map, 31 extern void dump_registers(int tfd, int pid, bool at_fault); 33 extern int unwind_backtrace_with_ptrace_x86(int tfd, pid_t pid, mapinfo *map, bool at_fault); 35 void dump_pc_and_lr(int tfd, int pid, mapinfo *map, int unwound_level, bool at_fault); 37 void dump_stack_and_code(int tfd, int pid, mapinfo *map,
|
/system/core/toolbox/ |
ionice.c | 14 int pid; local 17 fprintf(stderr, "usage: ionice <pid> [none|rt|be|idle] [prio]\n"); 21 if (!(pid = atoi(argv[1]))) { 22 fprintf(stderr, "Invalid pid specified\n"); 27 if (android_get_ioprio(pid, &clazz, &ioprio)) { 31 fprintf(stdout, "Pid %d, class %s (%d), prio %d\n", pid, classes[clazz], clazz, ioprio); 50 printf("Setting pid %d i/o class to %d, prio %d\n", pid, clazz, ioprio); 51 if (android_set_ioprio(pid, clazz, ioprio)) [all...] |
renice.c | 42 fprintf(stderr, "USAGE: %s [[-r] priority pids ...] [-g pid]\n", s); 46 void print_prio(pid_t pid) 51 printf("pid %d's priority: %d\n", pid, getpriority(PRIO_PROCESS, pid)); 54 sched = sched_getscheduler(pid); 72 sched_getparam(pid, &sp); 115 pid_t pid; local 117 pid = atoi(argv[0]); 125 ret = sched_setscheduler(pid, SCHED_RR, &sp) [all...] |
/bionic/libc/bionic/ |
ptrace.c | 31 extern long __ptrace(int request, pid_t pid, void *addr, void *data); 33 long ptrace(int request, pid_t pid, void * addr, void * data) 43 ret = __ptrace(request, pid, addr, &word); 53 return __ptrace(request, pid, addr, data);
|
/cts/tests/src/android/net/cts/ |
NetlinkSocket.java | 29 private static native int sendmsg(FileDescriptor fd, int pid, byte[] bytes); 46 public int sendmsg(int pid, byte[] bytes) throws IOException { 47 int retval = sendmsg(fd, pid, bytes); 49 throw new IOException("Unable to send message to PID=" + pid);
|
/external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/ |
Makefile | 13 kill `cat twistd.pid` 16 kill -HUP `cat twistd.pid`
|