Searched defs:OutputString (Results 1 - 7 of 7) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DMemoryFile.c163 CHAR8 *OutputString; local
204 OutputString = malloc (CharsToCopy);
205 if (OutputString == NULL) {
212 memcpy (OutputString, InputFile->CurrentFilePointer, CharsToCopy);
217 if (OutputString[CharsToCopy - 1] == '\r') {
219 OutputString[CharsToCopy - 1] = '\0';
223 OutputString[CharsToCopy] = '\0';
236 return OutputString;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/SetupBrowserDxe/
H A DProcessOptions.c992 CHAR16 *OutputString; local
1002 for (Index = 0; GetLineByWidth (StringPtr, (UINT16) (gHelpBlockWidth - 1), &Index, &OutputString) != 0x0000; ) {
1004 FreePool (OutputString);
1010 for (Index = 0; GetLineByWidth (StringPtr, (UINT16) (gHelpBlockWidth - 1), &Index, &OutputString) != 0x0000; CheckedNum ++) {
1011 CopyMem (*FormattedString + CheckedNum * gHelpBlockWidth * sizeof (CHAR16), OutputString, gHelpBlockWidth * sizeof (CHAR16));
1012 FreePool (OutputString);
H A DPresentation.c474 CHAR16 *OutputString; local
484 OutputString = NULL;
531 for (; GetLineByWidth (StringPtr, Width, &ArrayEntry, &OutputString) != 0x0000;) {
539 FreePool (OutputString);
H A DUi.c1309 Will copy LineWidth amount of a string in the OutputString buffer and return the
1310 number of CHAR16 characters that were copied into the OutputString buffer.
1317 @param OutputString Buffer to copy the string into
1319 @return Returns the number of CHAR16 characters that were copied into the OutputString buffer.
1327 OUT CHAR16 **OutputString
1341 *OutputString = AllocateZeroPool (((UINTN) (LineWidth + 1) * 2));
1346 if (*OutputString != NULL) {
1392 CopyMem (*OutputString, &InputString[*Index], LineWidth * 2);
1427 CHAR16 *OutputString; local
1439 for (Index = 0; GetLineByWidth (OptionString, Width, &Index, &OutputString) !
2093 CHAR16 *OutputString; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/
H A DSimpleTextOut.h257 Sets the background and foreground colors for the OutputString () and
385 EFI_TEXT_STRING OutputString; member in struct:_EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/efi/Protocol/
H A DSimpleTextOut.h259 Sets the background and foreground colors for the OutputString () and
387 EFI_TEXT_STRING OutputString; member in struct:_EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/
H A DPci.c1391 CHAR16 OutputString[PCI_CLASS_STRING_LIMIT + 1]; local
1418 OutputString,
1425 OutputString[PCI_CLASS_STRING_LIMIT] = 0;
1426 ShellPrintEx(-1,-1, L"%s", OutputString);

Completed in 63 milliseconds