Lines Matching refs:CHAR16

59     IN const CHAR16 *PropertyName,
67 IN const CHAR16 *PropertyName,
75 IN const CHAR16 *PropertyName);
92 CHAR16 *w;
105 static CHAR16 *FormatDec(UINT64 Val, CHAR16 *Buffer);
106 static CHAR16 *FormatHex(UINT64 Val, UINTN Width, CHAR16 *Buffer);
108 static CHAR16 *wstrcpy(CHAR16 *d, const CHAR16 *s);
109 static void noreturn blexit(const CHAR16 *str);
110 static void PrintErrMesg(const CHAR16 *mesg, EFI_STATUS ErrCode);
114 static CHAR16 *s2w(union string *str);
116 static bool read_file(EFI_FILE_HANDLE dir_handle, CHAR16 *name,
118 static size_t wstrlen(const CHAR16 * s);
147 static CHAR16 __initdata newline[] = L"\r\n";
208 static CHAR16 *__init FormatDec(UINT64 Val, CHAR16 *Buffer) in FormatDec()
212 *Buffer = (CHAR16)(L'0' + Val % 10); in FormatDec()
216 static CHAR16 *__init FormatHex(UINT64 Val, UINTN Width, CHAR16 *Buffer) in FormatHex()
220 *Buffer = (CHAR16)((Val &= 0xf) < 10 ? L'0' + Val : L'a' + Val - 10); in FormatHex()
226 CHAR16 PrintString[32], *end; in DisplayUint()
239 static size_t __init __maybe_unused wstrlen(const CHAR16 *s) in wstrlen()
241 const CHAR16 *sc; in wstrlen()
248 static CHAR16 *__init wstrcpy(CHAR16 *d, const CHAR16 *s) in wstrcpy()
250 CHAR16 *r = d; in wstrcpy()
257 static int __init wstrcmp(const CHAR16 *s1, const CHAR16 *s2) in wstrcmp()
267 static int __init wstrncmp(const CHAR16 *s1, const CHAR16 *s2, UINTN n) in wstrncmp()
278 static CHAR16 *__init s2w(union string *str) in s2w()
281 CHAR16 *w; in s2w()
298 const CHAR16 *w = str->w; in w2s()
318 static void __init noreturn blexit(const CHAR16 *str) in blexit()
321 PrintStr((CHAR16 *)str); in blexit()
343 static void __init PrintErrMesg(const CHAR16 *mesg, EFI_STATUS ErrCode) in PrintErrMesg()
345 static const CHAR16* const ErrCodeToStr[] __initconstrel = { in PrintErrMesg()
362 PrintErr((CHAR16 *)mesg); in PrintErrMesg()
376 static unsigned int __init get_argv(unsigned int argc, CHAR16 **argv, in get_argv()
377 CHAR16 *cmdline, UINTN cmdsize, in get_argv()
378 CHAR16 **options) in get_argv()
380 CHAR16 *ptr = (CHAR16 *)(argv + argc + 1), *prev = NULL; in get_argv()
424 CHAR16 **leaf) in get_parent_handle()
429 CHAR16 *pathend, *ptr; in get_parent_handle()
446 #define buffer ((CHAR16 *)keyhandler_scratch) in get_parent_handle()
508 static CHAR16 *__init point_tail(CHAR16 *fn) in point_tail()
510 CHAR16 *tail = NULL; in point_tail()
541 static bool __init read_file(EFI_FILE_HANDLE dir_handle, CHAR16 *name, in read_file()
547 CHAR16 *what = NULL; in read_file()
1069 CHAR16 **argv, *file_name, *cfg_file_name = NULL, *options = NULL; in efi_start()
1111 CHAR16 *ptr = argv[i]; in efi_start()
1174 CHAR16 *tail; in efi_start()