Searched refs:fda (Results 1 – 6 of 6) sorted by relevance
/tools/lib/api/fd/ |
D | array.c | 13 void fdarray__init(struct fdarray *fda, int nr_autogrow) in fdarray__init() argument 15 fda->entries = NULL; in fdarray__init() 16 fda->priv = NULL; in fdarray__init() 17 fda->nr = fda->nr_alloc = 0; in fdarray__init() 18 fda->nr_autogrow = nr_autogrow; in fdarray__init() 21 int fdarray__grow(struct fdarray *fda, int nr) in fdarray__grow() argument 24 int nr_alloc = fda->nr_alloc + nr; in fdarray__grow() 25 size_t psize = sizeof(fda->priv[0]) * nr_alloc; in fdarray__grow() 27 struct pollfd *entries = realloc(fda->entries, size); in fdarray__grow() 32 priv = realloc(fda->priv, psize); in fdarray__grow() [all …]
|
D | array.h | 38 void fdarray__init(struct fdarray *fda, int nr_autogrow); 39 void fdarray__exit(struct fdarray *fda); 42 void fdarray__delete(struct fdarray *fda); 44 int fdarray__add(struct fdarray *fda, int fd, short revents, enum fdarray_flags flags); 45 int fdarray__poll(struct fdarray *fda, int timeout); 46 int fdarray__filter(struct fdarray *fda, short revents, 47 void (*entry_destructor)(struct fdarray *fda, int fd, void *arg), 49 int fdarray__grow(struct fdarray *fda, int extra); 50 int fdarray__fprintf(struct fdarray *fda, FILE *fp); 52 static inline int fdarray__available_entries(struct fdarray *fda) in fdarray__available_entries() argument [all …]
|
/tools/perf/tests/ |
D | fdarray.c | 7 static void fdarray__init_revents(struct fdarray *fda, short revents) in fdarray__init_revents() argument 11 fda->nr = fda->nr_alloc; in fdarray__init_revents() 13 for (fd = 0; fd < fda->nr; ++fd) { in fdarray__init_revents() 14 fda->entries[fd].fd = fda->nr - fd; in fdarray__init_revents() 15 fda->entries[fd].events = revents; in fdarray__init_revents() 16 fda->entries[fd].revents = revents; in fdarray__init_revents() 20 static int fdarray__fprintf_prefix(struct fdarray *fda, const char *prefix, FILE *fp) in fdarray__fprintf_prefix() argument 28 return printed + fdarray__fprintf(fda, fp); in fdarray__fprintf_prefix() 34 struct fdarray *fda = fdarray__new(5, 5); in test__fdarray__filter() local 36 if (fda == NULL) { in test__fdarray__filter() [all …]
|
/tools/testing/selftests/net/ |
D | msg_zerocopy.c | 159 int fda = fd; in do_accept() local 161 fd = accept(fda, NULL, NULL); in do_accept() 164 if (close(fda)) in do_accept()
|
/tools/lib/perf/ |
D | evlist.c | 323 static void perf_evlist__munmap_filtered(struct fdarray *fda, int fd, in perf_evlist__munmap_filtered() argument 326 struct perf_mmap *map = fda->priv[fd].ptr; in perf_evlist__munmap_filtered()
|
/tools/perf/ |
D | builtin-kvm.c | 985 struct fdarray *fda = &kvm->evlist->core.pollfd; in kvm_events_live_report() local 996 if (fda->entries[nr_stdin].revents & POLLIN) in kvm_events_live_report()
|