Searched defs:stop (Results 1 - 4 of 4) sorted by relevance

/systemd/src/basic/
H A Dfs-util.c58 int rmdir_parents(const char *path, const char *stop) { argument
63 assert(stop);
89 if (path_startswith(stop, t)) {
/systemd/src/bootchart/
H A Dsvg.c558 int stop; local
563 stop = MIN(i + (range / 2), n_samples - 1);
564 diff = (stop - start);
595 int stop; local
601 stop = MIN(i + (range / 2), n_samples);
602 diff = (stop - start);
671 int stop; local
676 stop = MIN(i + (range / 2), n_samples - 1);
677 diff = (stop - start);
706 int start, stop, dif local
[all...]
/systemd/src/core/
H A Dunit.h204 /* Don't allow the user to stop this unit manually, allow stopping only indirectly via dependency. */
315 int (*stop)(Unit *u); member in struct:UnitVTable
H A Dunit.c1568 log_unit_debug(u, "Redirecting stop request from %s to %s.", u->id, following->id);
1572 if (!UNIT_VTABLE(u)->stop)
1577 return UNIT_VTABLE(u)->stop(u);
1661 /* If stopping a unit fails continously we might enter a stop
1662 * loop here, hence stop acting on the service being
1674 log_unit_warning_errno(u, r, "Failed to enqueue stop job, ignoring: %s", bus_error_message(&error, r));
1679 bool stop = false; local
1699 stop = true;
1703 if (!stop)
1706 /* If stopping a unit fails continously we might enter a stop
[all...]

Completed in 37 milliseconds