Searched refs:fdarray (Results 1 – 7 of 7) sorted by relevance
/linux-4.4.14/tools/lib/api/fd/ |
D | array.h | 18 struct fdarray { struct 28 void fdarray__init(struct fdarray *fda, int nr_autogrow); argument 29 void fdarray__exit(struct fdarray *fda); 31 struct fdarray *fdarray__new(int nr_alloc, int nr_autogrow); 32 void fdarray__delete(struct fdarray *fda); 34 int fdarray__add(struct fdarray *fda, int fd, short revents); 35 int fdarray__poll(struct fdarray *fda, int timeout); 36 int fdarray__filter(struct fdarray *fda, short revents, 37 void (*entry_destructor)(struct fdarray *fda, int fd)); 38 int fdarray__grow(struct fdarray *fda, int extra); [all …]
|
D | array.c | 13 void fdarray__init(struct fdarray *fda, int nr_autogrow) in fdarray__init() 21 int fdarray__grow(struct fdarray *fda, int nr) in fdarray__grow() 44 struct fdarray *fdarray__new(int nr_alloc, int nr_autogrow) in fdarray__new() 46 struct fdarray *fda = calloc(1, sizeof(*fda)); in fdarray__new() 60 void fdarray__exit(struct fdarray *fda) in fdarray__exit() 67 void fdarray__delete(struct fdarray *fda) in fdarray__delete() 73 int fdarray__add(struct fdarray *fda, int fd, short revents) in fdarray__add() 87 int fdarray__filter(struct fdarray *fda, short revents, in fdarray__filter() 88 void (*entry_destructor)(struct fdarray *fda, int fd)) in fdarray__filter() 114 int fdarray__poll(struct fdarray *fda, int timeout) in fdarray__poll() [all …]
|
/linux-4.4.14/tools/perf/tests/ |
D | fdarray.c | 5 static void fdarray__init_revents(struct fdarray *fda, short revents) in fdarray__init_revents() 17 static int fdarray__fprintf_prefix(struct fdarray *fda, const char *prefix, FILE *fp) in fdarray__fprintf_prefix() 31 struct fdarray *fda = fdarray__new(5, 5); in test__fdarray__filter() 109 struct fdarray *fda = fdarray__new(2, 2); in test__fdarray__add()
|
D | Build | 13 perf-y += fdarray.o
|
/linux-4.4.14/tools/perf/util/ |
D | evlist.h | 54 struct fdarray pollfd;
|
D | evlist.c | 515 static void perf_evlist__munmap_filtered(struct fdarray *fda, int fd) in perf_evlist__munmap_filtered()
|
/linux-4.4.14/tools/perf/ |
D | builtin-kvm.c | 945 struct fdarray *fda = &kvm->evlist->pollfd; in kvm_events_live_report()
|