Searched defs:fdset (Results 1 - 6 of 6) sorted by relevance
/systemd/src/test/ |
H A D | test-cgroup-mask.c | 31 FDSet *fdset = NULL; local 53 assert_se(manager_startup(m, serial, fdset) >= 0);
|
H A D | test-engine.c | 33 FDSet *fdset = NULL; local 45 assert_se(manager_startup(m, serial, fdset) >= 0);
|
H A D | test-sched-prio.c | 31 FDSet *fdset = NULL; local 42 assert_se(manager_startup(m, serial, fdset) >= 0);
|
H A D | test-fdset.c | 24 #include "fdset.h" 31 _cleanup_fdset_free_ FDSet *fdset = NULL; local 36 assert_se(fdset_new_fill(&fdset) >= 0); 37 assert_se(fdset_contains(fdset, fd)); 45 _cleanup_fdset_free_ FDSet *fdset = NULL; local 51 fdset = fdset_new(); 52 assert_se(fdset); 53 copyfd = fdset_put_dup(fdset, fd); 55 assert_se(fdset_contains(fdset, copyfd)); 56 assert_se(!fdset_contains(fdset, f 63 _cleanup_fdset_free_ FDSet *fdset = NULL; local 90 _cleanup_fdset_free_ FDSet *fdset = NULL; local 113 FDSet *fdset = NULL; local 133 FDSet *fdset = NULL; local 161 _cleanup_fdset_free_ FDSet *fdset = NULL; local 179 _cleanup_fdset_free_ FDSet *fdset = NULL; local 199 _cleanup_fdset_free_ FDSet *fdset = NULL; local [all...] |
/systemd/src/analyze/ |
H A D | analyze-verify.c | 238 FDSet *fdset = NULL; local 264 r = manager_startup(m, serial, fdset);
|
/systemd/src/basic/ |
H A D | fd-util.c | 187 _pure_ static bool fd_in_set(int fd, const int fdset[], unsigned n_fdset) { argument 190 assert(n_fdset == 0 || fdset); 193 if (fdset[i] == fd)
|
Completed in 21 milliseconds