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 704 my ($server, $pidlist) = @_;
740 # we must prepend a space since $pidlist may already contain a pid
741 $pidlist .= " $run{$server}";
746 killpid($verbose, $pidlist);
    [all...]
  /external/ltp/testcases/kernel/fs/ftest/
ftest01.c 90 static int pidlist[MAXCHILD]; variable
175 pidlist[i] = child;
544 if (pidlist[i])
545 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 78 static int pidlist[MAXCHILD]; variable
159 pidlist[i] = child;
487 if (pidlist[i])
488 kill(pidlist[i], SIGTERM);
ftest05.c 94 static int pidlist[MAXCHILD]; variable
182 pidlist[i] = child;
537 if (pidlist[i]) /* avoid embarassment */
538 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 86 static int pidlist[MAXCHILD]; variable
172 pidlist[i] = child;
525 if (pidlist[i])
526 kill(pidlist[i], SIGTERM);
ftest03.c 95 static int pidlist[MAXCHILD]; variable
195 pidlist[i] = child;
621 if (pidlist[i])
622 kill(pidlist[i], SIGTERM);
ftest07.c 101 static int pidlist[MAXCHILD]; variable
197 pidlist[i] = child;
619 if (pidlist[i])
620 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 3115 milliseconds