/systemd/src/basic/ |
H A D | fdset.h | 28 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 D | fdset.c | 37 #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 D | journald-stream.h | 28 int server_restore_streams(Server *s, FDSet *fds);
|
H A D | journald-stream.c | 648 int server_restore_streams(Server *s, FDSet *fds) {
|
/systemd/src/test/ |
H A D | test-fdset.c | 31 _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 D | test-sched-prio.c | 31 FDSet *fdset = NULL;
|
H A D | test-cgroup-mask.c | 31 FDSet *fdset = NULL;
|
H A D | test-engine.c | 33 FDSet *fdset = NULL;
|
/systemd/src/core/ |
H A D | dbus.h | 29 int bus_fdset_add_all(Manager *m, FDSet *fds);
|
H A D | job.h | 180 int job_serialize(Job *j, FILE *f, FDSet *fds); 181 int job_deserialize(Job *j, FILE *f, FDSet *fds);
|
H A D | target.c | 145 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 D | manager.h | 314 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 D | unit.h | 324 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 D | execute.h | 285 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 D | slice.c | 210 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 D | scope.c | 364 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 D | device.c | 159 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 D | path.c | 593 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 D | manager.c | 1096 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 D | main.c | 1062 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 D | automount.c | 784 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 D | busname.c | 664 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 D | job.c | 990 int job_serialize(Job *j, FILE *f, FDSet *fds) { 1008 int job_deserialize(Job *j, FILE *f, FDSet *fds) {
|
H A D | timer.c | 646 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 D | analyze-verify.c | 238 FDSet *fdset = NULL;
|