Searched defs:plen (Results 1 - 2 of 2) sorted by relevance

/systemd/src/basic/
H A Dhexdecoct.c554 static int base64_append_width(char **prefix, int plen, argument
571 t = realloc(*prefix, plen + 1 + slen + (indent + width + 1) * lines);
575 memcpy(t + plen, sep, slen);
577 for (line = 0, s = t + plen + slen, avail = len; line < lines; line++) {
596 int base64_append(char **prefix, int plen, argument
599 if (plen > width / 2 || plen + indent > width)
601 return base64_append_width(prefix, plen, "\n", indent, p, l, width - indent - 1);
603 /* leave plen on the left, keep last column free */
604 return base64_append_width(prefix, plen, NUL
[all...]
H A Dmissing.h1105 static inline key_serial_t add_key(const char *type, const char *description, const void *payload, size_t plen, key_serial_t ringid) { argument
1107 return syscall(__NR_add_key, type, description, payload, plen, ringid);

Completed in 14 milliseconds