/systemd-251/src/resolve/ |
D | resolved-util.c | 18 const char *p, *decoded; in resolve_system_hostname() local 42 decoded = label; /* no decoding */ in resolve_system_hostname() 54 decoded = utf8; in resolve_system_hostname() 65 decoded = label; in resolve_system_hostname() 67 decoded = label; /* no decoding */ in resolve_system_hostname() 71 r = dns_label_escape_new(decoded, r, &n); in resolve_system_hostname()
|
D | resolved-conf.c | 337 _cleanup_free_ void *decoded = NULL; in config_parse_dnssd_txt() local 368 r = unbase64mem(value, strlen(value), &decoded, &length); in config_parse_dnssd_txt() 378 r = dnssd_txt_item_new_from_data(key, decoded, length, &i); in config_parse_dnssd_txt()
|
/systemd-251/src/shared/ |
D | efi-loader.c | 104 _cleanup_free_ char *decoded = NULL; in efi_loader_get_entries() local 116 decoded = utf16_to_utf8(entries + start, (i - start) * sizeof(char16_t)); in efi_loader_get_entries() 117 if (!decoded) in efi_loader_get_entries() 120 if (efi_loader_entry_name_valid(decoded)) { in efi_loader_get_entries() 121 r = strv_consume(&l, TAKE_PTR(decoded)); in efi_loader_get_entries() 125 log_debug("Ignoring invalid loader entry '%s'.", decoded); in efi_loader_get_entries()
|
D | dns-domain.c | 297 int dns_label_apply_idna(const char *encoded, size_t encoded_size, char *decoded, size_t decoded_ma… in dns_label_apply_idna() argument 306 assert(decoded); in dns_label_apply_idna() 343 memcpy(decoded, buffer, l); in dns_label_apply_idna() 347 decoded[l] = 0; in dns_label_apply_idna() 352 int dns_label_undo_idna(const char *encoded, size_t encoded_size, char *decoded, size_t decoded_max… in dns_label_undo_idna() argument 363 assert(decoded); in dns_label_undo_idna() 392 memcpy(decoded, result, w); in dns_label_undo_idna() 396 decoded[w] = 0; in dns_label_undo_idna()
|
D | dns-domain.h | 29 int dns_label_apply_idna(const char *encoded, size_t encoded_size, char *decoded, size_t decoded_ma… 30 int dns_label_undo_idna(const char *encoded, size_t encoded_size, char *decoded, size_t decoded_max…
|
D | bus-unit-util.c | 1094 _cleanup_free_ void *decoded = NULL; in bus_append_execute_property() local 1097 r = unbase64mem(p, SIZE_MAX, &decoded, &decoded_size); in bus_append_execute_property() 1101 r = sd_bus_message_append_array(m, 'y', decoded, decoded_size); in bus_append_execute_property() 1260 _cleanup_free_ void *decoded = NULL; in bus_append_execute_property() local 1263 r = unbase64mem(eq, SIZE_MAX, &decoded, &sz); in bus_append_execute_property() 1267 return bus_append_byte_array(m, field, decoded, sz); in bus_append_execute_property()
|
/systemd-251/src/test/ |
D | test-hexdecoct.c | 285 _cleanup_free_ void *decoded = NULL; in TEST() local 302 assert_se(unbase64mem(encoded, SIZE_MAX, &decoded, &decoded_size) >= 0); in TEST() 304 assert_se(memcmp(data, decoded, n) == 0); in TEST()
|
/systemd-251/src/basic/ |
D | fileio.c | 705 _cleanup_free_ void *decoded = NULL; in read_full_stream_full() local 710 … r = unbase64mem_full(buf, l, flags & READ_FULL_FILE_SECURE, &decoded, &decoded_size); in read_full_stream_full() 712 … r = unhexmem_full(buf, l, flags & READ_FULL_FILE_SECURE, &decoded, &decoded_size); in read_full_stream_full() 718 free_and_replace(buf, decoded); in read_full_stream_full()
|
/systemd-251/docs/ |
D | CREDENTIALS.md | 87 decoded unless access to TPM2/encryption key is available.
|
/systemd-251/ |
D | NEWS | 2264 * udev now exports decoded DMI information about installed memory slots
|