Searched defs:jobs (Results 1 - 4 of 4) sorted by relevance
/systemd/src/core/ |
H A D | transaction.h | 31 Hashmap *jobs; /* Unit object => Job object list 1:1 */ member in struct:Transaction
|
H A D | manager.h | 80 * not, and the list of jobs may neither. */ 82 /* Active jobs and units */ 84 Hashmap *jobs; /* job id => Job object 1:1 */ member in struct:Manager 96 /* Units and jobs that have not yet been announced via
|
/systemd/src/shared/ |
H A D | bus-util.c | 1867 Set *jobs; member in struct:BusWaitForJobs 1901 found = set_remove(d->jobs, (char*) path); 1920 set_free_free(d->jobs); 2133 while (!set_isempty(d->jobs)) { 2162 r = set_ensure_allocated(&d->jobs, &string_hash_ops); 2166 return set_put_strdup(d->jobs, path);
|
/systemd/src/systemctl/ |
H A D | systemctl.c | 2052 static void output_jobs_list(const struct job_info* jobs, unsigned n, bool skipped) { argument 2058 assert(n == 0 || jobs); 2065 printf("%sNo jobs %s.%s\n", on, skipped ? "listed" : "running", off); 2077 for (j = jobs; j < jobs + n; j++) { 2099 for (j = jobs; j < jobs + n; j++) { 2120 printf("\n%s%u jobs listed%s.\n", on, n, off); 2132 _cleanup_free_ struct job_info *jobs = NULL; local 2156 return log_error_errno(r, "Failed to list jobs [all...] |
Completed in 31 milliseconds