HomeSort by relevance Sort by last modified time
    Searched refs:OutputString (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/syslinux/gnu-efi/gnu-efi-3.0/apps/
t4.c 9 uefi_call_wrapper(systab->ConOut->OutputString, 2, systab->ConOut, L"Hello application started\r\n");
10 uefi_call_wrapper(systab->ConOut->OutputString, 2, systab->ConOut, L"\r\n\r\n\r\nHit any key to exit\r\n");
t.c 23 uefi_call_wrapper(conout->OutputString, 2, conout, (CHAR16 *)L"Hello World!\n\r");
24 uefi_call_wrapper(conout->OutputString, 2, conout, a2u("Hello World!\n\r"));
t2.c 10 uefi_call_wrapper(conout->OutputString, 2, conout, L"Hello World!\n\r");
t5.c 11 uefi_call_wrapper(ST->ConOut->OutputString, 2, ST->ConOut, L"\n\n");
t7.c 17 uefi_call_wrapper(ST->ConOut->OutputString, 2, ST->ConOut, L"\n\n");
trivial.S 15 movl 4(%ebx),%eax # eax <- conout->OutputString
33 movl 4(%ebx),%eax # eax <- conout->OutputString
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
MemoryFile.c 157 CHAR8 *OutputString;
198 OutputString = malloc (CharsToCopy + 1);
199 if (OutputString == NULL) {
206 memcpy (OutputString, InputFile->CurrentFilePointer, CharsToCopy);
211 if (OutputString[CharsToCopy - 1] == '\r') {
213 OutputString[CharsToCopy - 1] = '\0';
217 OutputString[CharsToCopy] = '\0';
233 return OutputString;
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
console.c 28 uefi_call_wrapper(ST->ConOut->OutputString, 2, ST->ConOut, Str);
64 ConOut->OutputString (ConOut, Prompt);
84 uefi_call_wrapper(ConOut->OutputString, 2, ConOut, L"\b \b");
95 uefi_call_wrapper(ConOut->OutputString, 2, ConOut, &InStr[Len]);
  /device/linaro/bootloader/edk2/EmbeddedPkg/Application/AndroidFastboot/
AndroidFastbootApp.c 135 CHAR16 OutputString[FASTBOOT_STRING_MAX_LENGTH];
150 mTextOut->OutputString (mTextOut, L"ERROR: Fail to get the number of bytes to download.\r\n");
155 UnicodeSPrint (OutputString, sizeof (OutputString), L"Downloading %d bytes\r\n", mNumDataBytes);
156 mTextOut->OutputString (mTextOut, OutputString);
187 CHAR16 OutputString[FASTBOOT_STRING_MAX_LENGTH];
232 OutputString,
233 sizeof (OutputString),
237 mTextOut->OutputString (mTextOut, OutputString);
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Print/
StdErr.c 110 gST->StdErr->OutputString (gST->StdErr, (CHAR16 *) ErrorString);
126 // Need to convert to Unicode to do an OutputString
133 gST->StdErr->OutputString (gST->StdErr, Buffer);
188 // Need to convert to Unicode to do an OutputString
195 gST->ConOut->OutputString (gST->ConOut, Buffer);
238 gST->ConOut->OutputString (gST->ConOut, Buffer);
280 gST->ConOut->OutputString (gST->ConOut, Buffer);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/
StdErr.c 110 gST->StdErr->OutputString (gST->StdErr, (CHAR16 *) ErrorString);
126 // Need to convert to Unicode to do an OutputString
133 gST->StdErr->OutputString (gST->StdErr, Buffer);
188 // Need to convert to Unicode to do an OutputString
195 gST->ConOut->OutputString (gST->ConOut, Buffer);
238 gST->ConOut->OutputString (gST->ConOut, Buffer);
280 gST->ConOut->OutputString (gST->ConOut, Buffer);
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/
DriverConfiguration.c 66 gST->ConOut->OutputString (gST->ConOut, L"Y\n");
74 gST->ConOut->OutputString (gST->ConOut, L"N\n");
147 gST->ConOut->OutputString (gST->ConOut, L"IDE Bus Driver Configuration\n");
148 gST->ConOut->OutputString (gST->ConOut, L"===============================\n");
152 gST->ConOut->OutputString (gST->ConOut, OptionString[Index]);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Generic/RuntimeDxe/StatusCode/Lib/BsSerialStatusCode/
BsSerialStatusCode.h 80 IN UINT8 *OutputString
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/
EbcExecute.h 29 #define EBCMSG(s) gST->ConOut->OutputString (gST->ConOut, s)
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiLib/
Console.c 493 ConOut->OutputString (ConOut, Line);
505 ConOut->OutputString (ConOut, Line);
512 ConOut->OutputString (ConOut, String);
524 ConOut->OutputString (ConOut, TmpString);
539 ConOut->OutputString (ConOut, Line);
  /device/linaro/bootloader/edk2/EmbeddedPkg/SimpleTextInOutSerial/
SimpleTextInOut.c 111 OutputString (
192 OutputString,
515 OutputString (
521 CHAR8* OutputString;
528 OutputString = AllocatePool(Size);
532 SafeUnicodeStrToAsciiStr(String, OutputString);
533 SerialPortWrite ((UINT8 *)OutputString, Size - 1);
586 FreePool(OutputString);
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiDebugLibConOut/
DebugLib.c 80 gST->ConOut->OutputString (gST->ConOut, Buffer);
135 gST->ConOut->OutputString (gST->ConOut, Buffer);
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiDebugLibStdErr/
DebugLib.c 81 gST->StdErr->OutputString (gST->StdErr, Buffer);
136 gST->StdErr->OutputString (gST->StdErr, Buffer);
  /device/linaro/bootloader/edk2/EmbeddedPkg/Drivers/AndroidFastbootTransportTcpDxe/
FastbootTransportTcp.c 329 mTextOut->OutputString (mTextOut, L"Initialising TCP Fastboot transport...\r\n");
440 mTextOut->OutputString (mTextOut, L"TCP Fastboot transport configured.");
441 mTextOut->OutputString (mTextOut, L"\r\nIP address: ");
442 mTextOut->OutputString (mTextOut ,IpAddrString);
443 mTextOut->OutputString (mTextOut, L"\r\n");
455 mTextOut->OutputString (mTextOut, L"TCP Fastboot transport initialised.\r\n");
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/
EdbSupportUI.c 230 ConOut->OutputString (ConOut, Prompt);
611 gST->ConOut->OutputString (gST->ConOut, L"Press ENTER to continue, 'q' to exit:");
629 gST->ConOut->OutputString (gST->ConOut, L"\r\n");
638 gST->ConOut->OutputString (gST->ConOut, L"\r\n");
649 gST->ConOut->OutputString (gST->ConOut, Str);
690 gST->ConOut->OutputString (gST->ConOut, Buffer);
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Library/FrameworkUefiLib/
Console.c 406 ConOut->OutputString (ConOut, Line);
430 ConOut->OutputString (ConOut, Line);
443 ConOut->OutputString (ConOut, Line);
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/DataHubStdErrDxe/
DataHubStdErr.c 88 Sto->OutputString (Sto, (CHAR16 *) (DataRecord + 1));
  /external/python/cpython3/Lib/http/
cookies.py 400 return "%s %s" % (header, self.OutputString(attrs))
405 return '<%s: %s>' % (self.__class__.__name__, self.OutputString())
415 """ % (self.OutputString(attrs).replace('"', r'\"'))
417 def OutputString(self, attrs=None):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
string_format.h 132 } OutputString;
134 /* initialize an OutputString object, reserving size characters */
136 output_initialize(OutputString *output, Py_ssize_t size)
156 output_extend(OutputString *output, Py_ssize_t count)
182 output_data(OutputString *output, const STRINGLIB_CHAR *s, Py_ssize_t count)
560 render_field(PyObject *fieldobj, SubString *format_spec, OutputString *output)
884 OutputString *output, PyObject *args, PyObject *kwargs,
946 OutputString *output, int recursion_depth, AutoNumber *auto_number)
982 OutputString output;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
string_format.h 132 } OutputString;
134 /* initialize an OutputString object, reserving size characters */
136 output_initialize(OutputString *output, Py_ssize_t size)
156 output_extend(OutputString *output, Py_ssize_t count)
182 output_data(OutputString *output, const STRINGLIB_CHAR *s, Py_ssize_t count)
563 render_field(PyObject *fieldobj, SubString *format_spec, OutputString *output)
887 OutputString *output, PyObject *args, PyObject *kwargs,
949 OutputString *output, int recursion_depth, AutoNumber *auto_number)
985 OutputString output;
    [all...]

Completed in 643 milliseconds

1 2 3