Searched refs:ioctlent (Results 1 – 11 of 11) sorted by relevance
/external/strace/ |
D | ioctl.c | 35 const struct ioctlent ioctlent0[] = { 53 const struct ioctlent ioctlent1[] = { 61 const struct ioctlent ioctlent2[] = { 68 const struct ioctlent *ioctlent; variable 76 unsigned long code1 = ((struct ioctlent *) a)->code; 77 unsigned long code2 = ((struct ioctlent *) b)->code; 81 const struct ioctlent * 85 struct ioctlent *iop, ioent; 91 iop = (struct ioctlent *) bsearch((char *) &ioent, (char *) ioctlent, 92 nioctlents, sizeof(struct ioctlent), compare); [all …]
|
D | ioctlsort.c | 38 struct ioctlent { struct 46 int nioctlents = sizeof ioctlent / sizeof ioctlent[0]; 53 unsigned long code1 = ((struct ioctlent *) a)->code; 54 unsigned long code2 = ((struct ioctlent *) b)->code; 63 qsort(ioctlent, nioctlents, sizeof ioctlent[0], compare); in main() 66 ioctlent[i].doth, ioctlent[i].symbol, ioctlent[i].code); in main()
|
D | defs.h | 582 extern const struct ioctlent *ioctl_lookup(long); 583 extern const struct ioctlent *ioctl_next_match(const struct ioctlent *); 652 struct ioctlent { struct 658 extern const struct ioctlent *ioctlent; argument 664 extern const struct ioctlent ioctlent0[]; 670 extern const struct ioctlent ioctlent1[]; 677 extern const struct ioctlent ioctlent2[];
|
D | ChangeLog | 23 linux/ioctlent: unify them all 24 This unifies all the ioctlent.h's in the linux subdir while still 28 - each arch has linux/<arch>/ioctlent.h.in which defines only the 30 - linux/ioctlent.h.in which defines only the common ioctls; 32 the linux/ioctlent.h file. 35 common ioctlent.h is a built file. 37 * linux/ioctlent.h: Split into linux/ioctlent.h.in and 38 linux/i386/ioctlent.h.in, remove asm entries from the former, remove 40 * linux/alpha/ioctlent.h: Rename to linux/alpha/ioctlent.h.in, remove 42 * linux/bfin/ioctlent.h: Rename to linux/bfin/ioctlent.h.in, remove [all …]
|
D | ChangeLog-CVS | 137 * ioctlent.sh: Improved by Mike Frysinger. 154 * linux/ioctlent.sh: Update sed machinery to parse _IOC() macros 437 * linux/bfin/ioctlent.h, linux/bfin/syscallent.h: New Blackfin 439 * Makefile.am (EXTRA_DIST): Add linux/bfin/ioctlent.h and 2238 * linux/powerpc/ioctlent.h: Regenerated. 2518 * linux/ioctlent.sh: Build the list of ioctls defined in 2521 * linux/ioctlent.h: Regenerated. 2726 linux/sparc64/ioctlent.h, linux/sparc64/ioctlent1.h, 2805 * linux/ia64/ioctlent.h: Regenerated using RHEL3 headers. 2806 * linux/powerpc/ioctlent.h: Likewise. [all …]
|
D | io.c | 389 const struct ioctlent *iop; in sys_ioctl()
|
D | PORTING | 50 (errnoent.h) and ioctl values into ioctl names (ioctlent.h). Often
|
D | syscall.c | 197 ioctlent = ioctlent0; in set_personality() 210 ioctlent = ioctlent1; in set_personality() 224 ioctlent = ioctlent2; in set_personality()
|
D | stream.c | 1041 struct ioctlent *iop; in internal_stream_ioctl()
|
/external/strace/linux/ |
D | ioctlsort.c | 13 struct ioctlent { struct 19 struct ioctlent ioctls[] = { argument 27 unsigned long code1 = ((struct ioctlent *) a)->code; in compare() 28 unsigned long code2 = ((struct ioctlent *) b)->code; in compare() 29 const char *name1 = ((struct ioctlent *) a)->name; in compare() 30 const char *name2 = ((struct ioctlent *) b)->name; in compare()
|
/external/strace/linux/mips/ |
D | ioctlent.sh | 76 ) > ioctlent.tmp 90 awk '{ print "#include <" substr($2, 2, length($2) - 3) ">" }' ioctlent.tmp | sort -u 94 cat ioctlent.tmp 98 rm -f ioctlent.tmp
|