Home
last modified time | relevance | path

Searched refs:plen (Results 1 – 4 of 4) sorted by relevance

/systemd-251/src/basic/
Dhexdecoct.c653 char **prefix, int plen, in base64_append_width() argument
668 if ((size_t) plen >= SSIZE_MAX - 1 - 1 || in base64_append_width()
669 lines > (SSIZE_MAX - plen - 1 - 1) / (indent + width + 1)) in base64_append_width()
672 t = realloc(*prefix, (ssize_t) plen + 1 + 1 + (indent + width + 1) * lines); in base64_append_width()
676 t[plen] = sep; in base64_append_width()
678 for (line = 0, s = t + plen + 1, avail = len; line < lines; line++) { in base64_append_width()
697 char **prefix, int plen, in base64_append() argument
701 if (plen > width / 2 || plen + indent > width) in base64_append()
703 return base64_append_width(prefix, plen, '\n', indent, p, l, width - indent - 1); in base64_append()
706 return base64_append_width(prefix, plen, ' ', plen + 1, p, l, width - plen - 1); in base64_append()
Dmissing_syscall.h199 …ey(const char *type, const char *description, const void *payload, size_t plen, key_serial_t ringi… in missing_add_key() argument
201 return syscall(__NR_add_key, type, description, payload, plen, ringid); in missing_add_key()
Dhexdecoct.h41 int base64_append(char **prefix, int plen,
/systemd-251/src/pstore/
Dpstore.c220 size_t plen; in process_dmesg_files() local
275 plen = strlen(p); in process_dmesg_files()
276 if (plen > PSTORE_FILENAME_IGNORE) { in process_dmesg_files()
277 pe_id = memdup_suffix0(p, plen - PSTORE_FILENAME_IGNORE); in process_dmesg_files()