Lines Matching refs:add_reference
2147 int unit_add_dependency(Unit *u, UnitDependency d, Unit *other, bool add_reference) {
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) {
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) {
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) {
2332 return unit_add_two_dependencies(u, d, e, other, add_reference);