Searched refs:space (Results 1 - 12 of 12) sorted by relevance

/systemd/src/coredump/
H A Dstacktrace.c71 Dwarf_Attribute *a, space; local
73 a = dwarf_attr_integrate(s, DW_AT_MIPS_linkage_name, &space);
75 a = dwarf_attr_integrate(s, DW_AT_linkage_name, &space);
/systemd/src/journal/
H A Dcompress.c134 size_t space; local
147 space = MIN(src_size * 2, dst_max ?: (size_t) -1);
148 if (!greedy_realloc(dst, dst_alloc_size, space, 1))
155 s.avail_out = space;
167 if (dst_max > 0 && (space - s.avail_out) >= dst_max)
169 else if (dst_max > 0 && space == dst_max)
172 used = space - s.avail_out;
173 space = MIN(2 * space, dst_max ?: (size_t) -1);
174 if (!greedy_realloc(dst, dst_alloc_size, space,
[all...]
/systemd/src/basic/
H A Dfileio.h84 int fputs_with_space(FILE *f, const char *s, const char *separator, bool *space);
H A Dprocess-util.c136 bool space = false; local
148 if (space) {
154 space = false;
163 space = true;
H A Dstrv.c403 * than twice as long, and reserving space for the
874 int fputstrv(FILE *f, char **l, const char *separator, bool *space) { argument
881 if (!space)
882 space = &b;
885 r = fputs_with_space(f, *s, separator, space);
H A Dstrv.h171 int fputstrv(FILE *f, char **l, const char *separator, bool *space);
H A Dcalendarspec.c240 static void format_chain(FILE *f, int space, const CalendarComponent *c, bool usec) { argument
250 fprintf(f, "%0*i", space, c->value);
252 fprintf(f, "%0*i", space, (int) (c->value / USEC_PER_SEC));
254 fprintf(f, "%0*i.%06i", space, (int) (c->value / USEC_PER_SEC), (int) (c->value % USEC_PER_SEC));
267 format_chain(f, space, c->next, usec);
/systemd/src/network/
H A Dnetworkd-link.c2730 bool space; local
2744 space = false;
2745 fputstrv(f, link->network->dns, NULL, &space);
2753 if (space)
2756 space = true;
2765 if (space)
2774 space = false;
2775 fputstrv(f, link->network->ntp, NULL, &space);
2783 if (space)
2786 space
2892 bool space = false; local
2903 bool space = false; local
[all...]
H A Dnetworkd-manager.c814 bool space = false; local
824 fputs_with_space(f, p, NULL, &space);
/systemd/src/libsystemd/sd-resolve/
H A Dsd-resolve.c249 uint8_t space[BUFSIZE]; member in union:__anon163
412 uint8_t space[BUFSIZE]; member in union:__anon164
851 uint8_t space[BUFSIZE]; member in union:__anon165
/systemd/src/login/
H A Dloginctl.c740 bool space = false; local
749 printf("%s%s", space ? " " : "", s);
750 space = true;
/systemd/src/libsystemd/sd-bus/
H A Dbusctl.c246 const char *vertical, *space; local
262 space = strjoina(prefix, draw_special_char(DRAW_TREE_SPACE));
285 print_subtree(has_more ? vertical : space, *l, l);

Completed in 2307 milliseconds