Searched refs:dep (Results 1 - 6 of 6) sorted by relevance
/systemd/src/core/ |
H A D | transaction.c | 838 Unit *dep; local 897 SET_FOREACH(dep, following, i) { 898 r = transaction_add_job_and_dependencies(tr, type, dep, ret, false, false, false, ignore_order, e); 900 log_unit_warning(dep, "Cannot add dependency job for, ignoring: %s", bus_error_message(e, r)); 910 SET_FOREACH(dep, ret->unit->dependencies[UNIT_REQUIRES], i) { 911 r = transaction_add_job_and_dependencies(tr, JOB_START, dep, ret, true, false, false, ignore_order, e); 920 SET_FOREACH(dep, ret->unit->dependencies[UNIT_BINDS_TO], i) { 921 r = transaction_add_job_and_dependencies(tr, JOB_START, dep, ret, true, false, false, ignore_order, e); 930 SET_FOREACH(dep, ret->unit->dependencies[UNIT_WANTS], i) { 931 r = transaction_add_job_and_dependencies(tr, JOB_START, dep, re [all...] |
H A D | dbus-manager.c | 1862 UnitDependency dep; local 1881 dep = unit_dependency_from_string(type); 1882 if (dep < 0) 1887 r = unit_file_add_dependency(scope, runtime, NULL, l, target, dep, force, &changes, &n_changes);
|
H A D | unit.c | 2859 int unit_add_node_link(Unit *u, const char *what, bool wants, UnitDependency dep) { argument 2887 u->manager->running_as == MANAGER_SYSTEM ? dep : UNIT_WANTS,
|
/systemd/src/shared/ |
H A D | install.h | 136 int unit_file_add_dependency(UnitFileScope scope, bool runtime, const char *root_dir, char **files, const char *target, UnitDependency dep, bool force, UnitFileChange **changes, unsigned *n_changes);
|
H A D | install.c | 1711 UnitDependency dep, 1727 if (!IN_SET(dep, UNIT_WANTS, UNIT_REQUIRES)) 1768 if (dep == UNIT_WANTS) 1705 unit_file_add_dependency( UnitFileScope scope, bool runtime, const char *root_dir, char **files, const char *target, UnitDependency dep, bool force, UnitFileChange **changes, unsigned *n_changes) argument
|
/systemd/src/systemctl/ |
H A D | systemctl.c | 5562 UnitDependency dep; local 5577 dep = UNIT_WANTS; 5579 dep = UNIT_REQUIRES; 5587 r = unit_file_add_dependency(arg_scope, arg_runtime, arg_root, names, target, dep, arg_force, &changes, &n_changes); 5623 r = sd_bus_message_append(m, "ssbb", target, unit_dependency_to_string(dep), arg_runtime, arg_force);
|
Completed in 333 milliseconds