Searched defs:following (Results 1 - 6 of 6) sorted by relevance
/systemd/src/shared/ |
H A D | bus-util.h | 136 const char *following; member in struct:UnitInfo
|
/systemd/src/core/ |
H A D | transaction.c | 892 Set *following; local 894 /* If we are following some other unit, make sure we 895 * add all dependencies of everybody following. */ 896 if (unit_following_set(ret->unit, &following) > 0) { 897 SET_FOREACH(dep, following, i) { 905 set_free(following);
|
H A D | dbus-manager.c | 895 Unit *following; local 900 following = unit_following(u); 925 following ? following->id : "",
|
H A D | unit.h | 374 /* Return the unit this unit is following */ 375 Unit *(*following)(Unit *u); member in struct:UnitVTable 377 /* Return the set of units that are following each other */
|
H A D | unit.c | 875 Unit *following; local 929 following = unit_following(u); 930 if (following) 931 fprintf(f, "%s\tFollowing: %s\n", prefix, following->id); 1462 Unit *following; local 1511 following = unit_following(u); 1512 if (following) { 1513 log_unit_debug(u, "Redirecting start request from %s to %s.", u->id, following->id); 1514 return unit_start(following); 1558 Unit *following; local 1587 Unit *following; local [all...] |
/systemd/src/systemctl/ |
H A D | systemctl.c | 354 if (streq(u->active_state, "inactive") || u->following[0]) 3332 const char *following; member in struct:UnitStatusInfo 3441 if (i->following) 3442 printf(" Follow: unit currently follows state of %s\n", i->following); 3808 i->following = s;
|
Completed in 217 milliseconds