Searched defs:cc (Results 1 - 12 of 12) sorted by relevance

/systemd/src/import/
H A Dpull-job.c560 _cleanup_free_ char *cc = NULL, *hdr = NULL; local
562 cc = strv_join(j->old_etags, ", ");
563 if (!cc)
566 hdr = strappend("If-None-Match: ", cc);
/systemd/src/libsystemd/sd-path/
H A Dsd-path.c56 char *cc = NULL; local
78 cc = strappend(h, suffix);
80 cc = strjoin(h, "/", suffix, NULL);
81 if (!cc)
84 *buffer = cc;
85 *ret = cc;
146 char *cc; local
152 cc = strappend(h, p+5);
153 if (!cc)
156 *buffer = cc;
184 char *cc; local
336 char *buffer = NULL, *cc; local
[all...]
/systemd/src/login/
H A Dlogind-inhibit.c114 _cleanup_free_ char *cc = NULL; local
116 cc = cescape(i->who);
117 if (!cc) {
122 fprintf(f, "WHO=%s\n", cc);
126 _cleanup_free_ char *cc = NULL; local
128 cc = cescape(i->why);
129 if (!cc) {
134 fprintf(f, "WHY=%s\n", cc);
213 char *cc; local
249 r = cunescape(who, 0, &cc);
[all...]
H A Dlogind-user.c678 _cleanup_free_ char *cc = NULL; local
681 cc = cescape(u->name);
682 if (!cc)
685 p = strjoina("/var/lib/systemd/linger/", cc);
H A Dlogind-dbus.c1078 _cleanup_free_ char *cc = NULL; local
1133 cc = cescape(pw->pw_name);
1134 if (!cc)
1137 path = strjoina("/var/lib/systemd/linger/", cc);
/systemd/src/basic/
H A Dcalendarspec.c453 CalendarComponent *cc; local
479 cc = new0(CalendarComponent, 1);
480 if (!cc)
483 cc->value = value;
484 cc->repeat = repeat;
485 cc->next = *c;
488 *c = cc;
499 CalendarComponent *cc = NULL; local
503 cc = new0(CalendarComponent, 1);
504 if (!cc)
518 CalendarComponent *cc = NULL; local
[all...]
H A Djson.c222 int aa, bb, cc, dd; local
236 cc = unhexchar(c[2]);
237 if (cc < 0)
246 ((uint16_t) cc << 4) |
H A Dtime-util.c360 usec_t cc; local
364 for (cc = table[i].usec; cc > 1; cc /= 10)
367 for (cc = accuracy; cc > 1; cc /= 10) {
H A Dcgroup-util.c594 const char *cc, *dn; local
597 cc = strjoina("/sys/fs/cgroup/", dn);
599 if (laccess(cc, F_OK) < 0)
/systemd/src/core/
H A Dservice.c2957 _cleanup_free_ char *cc = NULL; local
2963 cc = strv_join(tags, ", ");
2975 log_unit_debug(u, "Got notification message from PID "PID_FMT" (%s)", pid, isempty(cc) ? "n/a" : cc);
H A Dunit.c116 CGroupContext *cc; local
124 cc = unit_get_cgroup_context(u);
125 if (cc) {
126 cgroup_context_init(cc);
132 cc->cpu_accounting = u->manager->default_cpu_accounting;
133 cc->blockio_accounting = u->manager->default_blockio_accounting;
134 cc->memory_accounting = u->manager->default_memory_accounting;
135 cc->tasks_accounting = u->manager->default_tasks_accounting;
138 cc->tasks_max = u->manager->default_tasks_max;
460 CGroupContext *cc; local
3211 CGroupContext *cc; local
[all...]
/systemd/src/libsystemd/sd-bus/
H A Dbus-message.c4080 const char *cc; local
4084 r = sd_bus_message_peek_type(m, &tt, &cc);
4091 if (contents && !streq(contents, cc))
4095 contents = cc;

Completed in 77 milliseconds