Home | History | Annotate | Download | only in lib

Lines Matching defs:Str

100     INTN        (EFIAPI *Output)(VOID *context, CHAR16 *str);
340 CopyMem (spc->str + spc->len, Buffer, len * sizeof(CHAR16));
348 spc->str[spc->len] = 0;
350 spc->str[spc->maxlen] = 0;
382 spc->str = ReallocatePool (
383 spc->str,
388 if (!spc->str) {
408 IN INTN (EFIAPI *Output)(VOID *context, CHAR16 *str)
427 OUT CHAR16 *Str,
440 Str - Output buffer to print the formatted string into
442 StrSize - Size of Str. String is truncated to this size.
458 spc.str = Str;
469 OUT CHAR16 *Str,
482 Str - Output buffer to print the formatted string into
484 StrSize - Size of Str. String is truncated to this size.
499 len = UnicodeVSPrint(Str, StrSize, fmt, args);
533 return spc.str;
570 IN OUT POOL_PRINT *Str,
583 Str - Tracks the allocated pool, size in use, and
599 _PoolCatPrint (fmt, args, Str, _PoolPrint);
601 return Str->str;
849 OUT CHAR8 *Str,
862 Str - Output buffer to print the formatted string into
864 StrSize - Size of Str. String is truncated to this size.
897 Str[i] = (CHAR8)UnicodeStr[i];
898 Str[Len] = 0;
1328 CHAR8 str[30], *p1;
1337 p1 = str;
1346 while (p1 != str) {
1361 CHAR8 str[40], *p1;
1371 p1 = str;
1384 c = (UINTN) (Comma ? ca[(p1 - str) % 3] : 999) + 1;
1385 while (p1 != str) {
1497 CHAR8 *Data, Val[50], Str[20], c;
1522 Str[Index] = (c < ' ' || c > 'z') ? '.' : c;
1526 Str[Index] = 0;
1527 Print (L"%*a%X: %-.48a *%a*\n", Indent, "", Offset, Val, Str);