OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ioctlent
(Results
1 - 4
of
4
) sorted by null
/external/strace/
ioctlsort.c
38
struct
ioctlent
{
struct
44
#include "
ioctlent
.raw"
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);
66
ioctlent
[i].doth,
ioctlent
[i].symbol, ioctlent[i].code)
[
all
...]
ioctl.c
35
const struct
ioctlent
ioctlent0[] = {
37
* `
ioctlent
.h' may be generated from `
ioctlent
.raw' by the auxiliary
43
#include "
ioctlent
.h"
53
const struct
ioctlent
ioctlent1[] = {
61
const struct
ioctlent
ioctlent2[] = {
68
const struct
ioctlent
*
ioctlent
;
variable in typeref:struct:ioctlent
76
unsigned long code1 = ((struct
ioctlent
*) a)->code;
77
unsigned long code2 = ((struct
ioctlent
*) b)->code
[
all
...]
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
;
664
extern const struct
ioctlent
ioctlent0[];
670
extern const struct
ioctlent
ioctlent1[];
677
extern const struct
ioctlent
ioctlent2[];
/external/strace/linux/
ioctlsort.c
13
struct
ioctlent
{
struct
19
struct
ioctlent
ioctls[] = {
27
unsigned long code1 = ((struct
ioctlent
*) a)->code;
28
unsigned long code2 = ((struct
ioctlent
*) b)->code;
29
const char *name1 = ((struct
ioctlent
*) a)->name;
30
const char *name2 = ((struct
ioctlent
*) b)->name;
Completed in 91 milliseconds