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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
thread_sgi.h 22 static struct pidlist { struct
25 } pidlist[MAXPROC]; /* PIDs of other threads; protected by count_lock */ variable in typeref:struct:pidlist
26 static int maxpidindex; /* # of PIDs in pidlist */
87 if (pidlist[i].parent == mypid && (pid = pidlist[i].child) > 0) {
91 pidlist[i] = pidlist[--maxpidindex];
94 if (pidlist[j].parent == pid)
95 pidlist[j].child = -1;
104 if (pidlist[i].child == -1) {
    [all...]
  /external/python/cpython2/Python/
thread_sgi.h 22 static struct pidlist { struct
25 } pidlist[MAXPROC]; /* PIDs of other threads; protected by count_lock */ variable in typeref:struct:pidlist
26 static int maxpidindex; /* # of PIDs in pidlist */
87 if (pidlist[i].parent == mypid && (pid = pidlist[i].child) > 0) {
91 pidlist[i] = pidlist[--maxpidindex];
94 if (pidlist[j].parent == pid)
95 pidlist[j].child = -1;
104 if (pidlist[i].child == -1)
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/gen/
popen.c 74 } *pidlist; variable in typeref:struct:pid
131 for (old = pidlist; old; old = old->next)
178 cur->next = pidlist;
179 pidlist = cur;
202 for (last = NULL, cur = pidlist; cur; last = cur, cur = cur->next)
214 pidlist = cur->next;
  /system/extras/ioshark/
compile-only.sh 36 awk '{print $7}' foo | sort | uniq > pidlist
37 for i in `cat pidlist`
41 rm pidlist
collect-straces-ftraces.sh 38 awk '{print $7}' foo | sort | uniq > pidlist
39 for i in `cat pidlist`
43 rm pidlist
  /external/ltp/testcases/kernel/syscalls/mkdir/
mkdir09.c 66 int *pidlist, child_count; variable
162 if ((pidlist = malloc((child_groups * NCHILD) * sizeof(int))) ==
294 pidlist[children] = pid;
437 if (pidlist[j] > 0) {
438 if (kill(pidlist[j], SIGTERM) < 0) {
  /external/curl/tests/
ftp.pm 160 my ($verbose, $pidlist) = @_;
165 # The 'pidlist' argument is a string of whitespace separated pids.
166 return if(not defined($pidlist));
168 # Make 'requested' hold the non-duplicate pids from 'pidlist'.
169 @requested = split(' ', $pidlist);
runtests.pl 668 my ($server, $pidlist) = @_;
704 # we must prepend a space since $pidlist may already contain a pid
705 $pidlist .= " $run{$server}";
710 killpid($verbose, $pidlist);
    [all...]
  /external/ltp/testcases/kernel/fs/ftest/
ftest01.c 88 static int pidlist[MAXCHILD]; variable
177 pidlist[i] = child;
546 if (pidlist[i])
547 kill(pidlist[i], SIGTERM);
ftest02.c 83 static int pidlist[MAXCHILD]; variable
155 pidlist[k] = child;
426 if (pidlist[i])
427 kill(pidlist[i], SIGTERM);
ftest04.c 77 static int pidlist[MAXCHILD]; variable
169 pidlist[i] = child;
497 if (pidlist[i])
498 kill(pidlist[i], SIGTERM);
ftest05.c 92 static int pidlist[MAXCHILD]; variable
186 pidlist[i] = child;
541 if (pidlist[i]) /* avoid embarassment */
542 kill(pidlist[i], SIGTERM);
ftest06.c 89 static int pidlist[MAXCHILD]; variable
168 pidlist[k] = child;
443 if (pidlist[i])
444 kill(pidlist[i], SIGTERM);
ftest08.c 85 static int pidlist[MAXCHILD]; variable
176 pidlist[i] = child;
529 if (pidlist[i])
530 kill(pidlist[i], SIGTERM);
ftest03.c 94 static int pidlist[MAXCHILD]; variable
202 pidlist[i] = child;
628 if (pidlist[i])
629 kill(pidlist[i], SIGTERM);
ftest07.c 100 static int pidlist[MAXCHILD]; variable
203 pidlist[i] = child;
625 if (pidlist[i])
626 kill(pidlist[i], SIGTERM);
  /external/fio/t/
btrace2fio.c 940 static void check_merges(struct btrace_pid *p, struct flist_head *pidlist)
947 flist_for_each_safe(e, tmp, pidlist) {

Completed in 1612 milliseconds