Searched refs:add_reference (Results 1 - 2 of 2) sorted by relevance

/systemd/src/core/
H A Dunit.h460 int unit_add_dependency(Unit *u, UnitDependency d, Unit *other, bool add_reference);
461 int unit_add_two_dependencies(Unit *u, UnitDependency d, UnitDependency e, Unit *other, bool add_reference);
463 int unit_add_dependency_by_name(Unit *u, UnitDependency d, const char *name, const char *filename, bool add_reference);
464 int unit_add_two_dependencies_by_name(Unit *u, UnitDependency d, UnitDependency e, const char *name, const char *path, bool add_reference);
H A Dunit.c2147 int unit_add_dependency(Unit *u, UnitDependency d, Unit *other, bool add_reference) { argument
2200 if (add_reference) {
2222 if (add_reference) {
2250 int unit_add_two_dependencies(Unit *u, UnitDependency d, UnitDependency e, Unit *other, bool add_reference) { argument
2255 r = unit_add_dependency(u, d, other, add_reference);
2259 return unit_add_dependency(u, e, other, add_reference);
2297 int unit_add_dependency_by_name(Unit *u, UnitDependency d, const char *name, const char *path, bool add_reference) { argument
2313 return unit_add_dependency(u, d, other, add_reference);
2316 int unit_add_two_dependencies_by_name(Unit *u, UnitDependency d, UnitDependency e, const char *name, const char *path, bool add_reference) { argument
2332 return unit_add_two_dependencies(u, d, e, other, add_reference);
[all...]

Completed in 19 milliseconds