Home
last modified time | relevance | path

Searched refs:utf16_to_utf8 (Results 1 – 7 of 7) sorted by relevance

/systemd-251/src/test/
Dtest-utf8.c171 TEST(utf16_to_utf8) { in TEST() argument
178 a = utf16_to_utf8(utf16, sizeof(utf16)); in TEST()
187 a = utf16_to_utf8(b, char16_strlen(b) * 2); in TEST()
225 b = utf16_to_utf8(a, char16_strlen(a) * 2); in TEST()
/systemd-251/src/basic/
Dutf8.h38 char *utf16_to_utf8(const char16_t *s, size_t length /* bytes! */);
Defivars.c155 x = utf16_to_utf8(s, ss); in efi_get_variable_string()
Dutf8.c390 char *utf16_to_utf8(const char16_t *s, size_t length /* bytes! */) { in utf16_to_utf8() function
/systemd-251/src/shared/
Defi-api.c253 s = utf16_to_utf8(header->title, title_size); in efi_get_boot_option()
302 p = utf16_to_utf8(dpath->path, dpath->length-4); in efi_get_boot_option()
Defi-loader.c116 decoded = utf16_to_utf8(entries + start, (i - start) * sizeof(char16_t)); in efi_loader_get_entries()
/systemd-251/src/boot/efi/
Dtest-bcd.c154 … _cleanup_free_ char *title_utf8 = utf16_to_utf8(title, char16_strlen(title) * 2); in TEST()