Searched refs:FDSet (Results 1 - 25 of 34) sorted by relevance

12

/systemd/src/basic/
H A Dfdset.h28 typedef struct FDSet FDSet; typedef in typeref:struct:FDSet
30 FDSet* fdset_new(void);
31 FDSet* fdset_free(FDSet *s);
33 int fdset_put(FDSet *s, int fd);
34 int fdset_put_dup(FDSet *s, int fd);
35 int fdset_consume(FDSet *s, int fd);
37 bool fdset_contains(FDSet *s, int fd);
38 int fdset_remove(FDSet *
[all...]
H A Dfdset.c37 #define MAKE_FDSET(s) ((FDSet*) s)
39 FDSet *fdset_new(void) {
43 int fdset_new_array(FDSet **ret, const int *fds, unsigned n_fds) {
45 FDSet *s;
67 FDSet* fdset_free(FDSet *s) {
90 int fdset_put(FDSet *s, int fd) {
97 int fdset_consume(FDSet *s, int fd) {
110 int fdset_put_dup(FDSet *s, int fd) {
129 bool fdset_contains(FDSet *
[all...]
/systemd/src/journal/
H A Djournald-stream.h28 int server_restore_streams(Server *s, FDSet *fds);
H A Djournald-stream.c648 int server_restore_streams(Server *s, FDSet *fds) {
/systemd/src/test/
H A Dtest-fdset.c31 _cleanup_fdset_free_ FDSet *fdset = NULL;
45 _cleanup_fdset_free_ FDSet *fdset = NULL;
63 _cleanup_fdset_free_ FDSet *fdset = NULL;
90 _cleanup_fdset_free_ FDSet *fdset = NULL;
113 FDSet *fdset = NULL;
133 FDSet *fdset = NULL;
161 _cleanup_fdset_free_ FDSet *fdset = NULL;
179 _cleanup_fdset_free_ FDSet *fdset = NULL;
199 _cleanup_fdset_free_ FDSet *fdset = NULL;
H A Dtest-sched-prio.c31 FDSet *fdset = NULL;
H A Dtest-cgroup-mask.c31 FDSet *fdset = NULL;
H A Dtest-engine.c33 FDSet *fdset = NULL;
/systemd/src/core/
H A Ddbus.h29 int bus_fdset_add_all(Manager *m, FDSet *fds);
H A Djob.h180 int job_serialize(Job *j, FILE *f, FDSet *fds);
181 int job_deserialize(Job *j, FILE *f, FDSet *fds);
H A Dtarget.c145 static int target_serialize(Unit *u, FILE *f, FDSet *fds) {
156 static int target_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
H A Dmanager.h314 int manager_startup(Manager *m, FILE *serialization, FDSet *fds);
343 int manager_serialize(Manager *m, FILE *f, FDSet *fds, bool switching_root);
344 int manager_deserialize(Manager *m, FILE *f, FDSet *fds);
H A Dunit.h324 int (*serialize)(Unit *u, FILE *f, FDSet *fds);
327 int (*deserialize_item)(Unit *u, const char *key, const char *data, FDSet *fds);
330 void (*distribute_fds)(Unit *u, FDSet *fds);
362 void (*notify_message)(Unit *u, pid_t pid, char **tags, FDSet *fds);
533 int unit_serialize(Unit *u, FILE *f, FDSet *fds, bool serialize_jobs);
534 int unit_deserialize(Unit *u, FILE *f, FDSet *fds);
538 int unit_serialize_item_fd(Unit *u, FILE *f, FDSet *fds, const char *key, int fd);
H A Dexecute.h285 int exec_runtime_serialize(Unit *unit, ExecRuntime *rt, FILE *f, FDSet *fds);
286 int exec_runtime_deserialize_item(Unit *unit, ExecRuntime **rt, const char *key, const char *value, FDSet *fds);
H A Dslice.c210 static int slice_serialize(Unit *u, FILE *f, FDSet *fds) {
221 static int slice_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
H A Dscope.c364 static int scope_serialize(Unit *u, FILE *f, FDSet *fds) {
375 static int scope_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
H A Ddevice.c159 static int device_serialize(Unit *u, FILE *f, FDSet *fds) {
171 static int device_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
H A Dpath.c593 static int path_serialize(Unit *u, FILE *f, FDSet *fds) {
606 static int path_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
H A Dmanager.c1096 static void manager_distribute_fds(Manager *m, FDSet *fds) {
1114 int manager_startup(Manager *m, FILE *serialization, FDSet *fds) {
1496 static void manager_invoke_notify_message(Manager *m, Unit *u, pid_t pid, const char *buf, size_t n, FDSet *fds) {
1517 _cleanup_fdset_free_ FDSet *fds = NULL;
2223 int manager_serialize(Manager *m, FILE *f, FDSet *fds, bool switching_root) {
2322 int manager_deserialize(Manager *m, FILE *f, FDSet *fds) {
2506 _cleanup_fdset_free_ FDSet *fds = NULL;
H A Dmain.c1062 static int prepare_reexecute(Manager *m, FILE **_f, FDSet **_fds, bool switching_root) {
1063 _cleanup_fdset_free_ FDSet *fds = NULL;
1292 FDSet *fds = NULL;
H A Dautomount.c784 static int automount_serialize(Unit *u, FILE *f, FDSet *fds) {
810 static int automount_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
H A Dbusname.c664 static int busname_serialize(Unit *u, FILE *f, FDSet *fds) {
685 static int busname_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
H A Djob.c990 int job_serialize(Job *j, FILE *f, FDSet *fds) {
1008 int job_deserialize(Job *j, FILE *f, FDSet *fds) {
H A Dtimer.c646 static int timer_serialize(Unit *u, FILE *f, FDSet *fds) {
665 static int timer_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
/systemd/src/analyze/
H A Danalyze-verify.c238 FDSet *fdset = NULL;

Completed in 4671 milliseconds

12