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

  /external/strace/linux/mips/
ioctlent.sh 74 ) > ioctlent.tmp
77 echo '/* This file is automatically generated by ioctlent.sh */'
88 awk '{ print "#include <" substr($2, 2, length($2) - 3) ">" }' ioctlent.tmp | sort -u
90 echo 'struct ioctlent ioctlent [] ='
92 cat ioctlent.tmp
96 rm -f ioctlent.tmp
  /external/strace/linux/
ioctlsort.c 13 struct ioctlent { struct
19 struct ioctlent ioctls[] = {
26 unsigned long code1 = ((struct ioctlent *) a)->code;
27 unsigned long code2 = ((struct ioctlent *) b)->code;
28 const char *name1 = ((struct ioctlent *) a)->name;
29 const char *name2 = ((struct ioctlent *) b)->name;
  /external/strace/
ioctl.c 48 iop = bsearch((void*)code, ioctlent,
49 nioctlents, sizeof(ioctlent[0]), compare);
50 while (iop > ioctlent) {
67 if (iop < ioctlent + nioctlents && iop->code == code)
Android.mk 200 cd external/strace; ./linux/ioctlent.sh ../../bionic/libc/kernel/uapi/
207 adb shell ioctlsort | tr -d '\r' > external/strace/linux/ioctlent.h
208 # Rebuild strace with the new "ioctlent.h".
defs.h 397 typedef struct ioctlent { struct
810 extern const struct_ioctlent *ioctlent;
815 # define ioctlent ioctlent0 macro
syscall.c 134 * `ioctlent.h' may be generated from `ioctlent.raw' by the auxiliary
148 #include "ioctlent.h"
219 const struct_ioctlent *ioctlent = ioctlent0; variable
292 ioctlent = ioctlent0;
301 ioctlent = ioctlent1;
311 ioctlent = ioctlent2;
    [all...]

Completed in 325 milliseconds