/src/sys/external/bsd/gnu-efi/dist/apps/ |
t5.c | 12 WaitForSingleEvent(ST->ConIn->WaitForKey, 0); 13 uefi_call_wrapper(ST->ConOut->OutputString, 2, ST->ConOut, L"\n\n");
|
t7.c | 17 WaitForSingleEvent(ST->ConIn->WaitForKey, 0); 19 uefi_call_wrapper(ST->ConOut->OutputString, 2, ST->ConOut, L"\n\n"); 21 efi_status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, &efi_input_key);
|
/src/sys/external/bsd/gnu-efi/dist/lib/ |
pause.c | 14 WaitForSingleEvent(ST->ConIn->WaitForKey, 0); 15 Status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, &Key);
|
console.c | 30 uefi_call_wrapper(ST->ConOut->OutputString, 2, ST->ConOut, Str); 43 ST->ConOut, 44 ST->ConIn,
|
event.c | 153 if (!EFI_ERROR(uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, Key))) {
|
/src/sys/stand/efiboot/ |
console.c | 44 status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, &key); 46 if (ST->ConIn->WaitForKey != NULL) 47 WaitForSingleEvent(ST->ConIn->WaitForKey, 0); 48 status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, &key); 61 uefi_call_wrapper(ST->ConOut->OutputString, 2, ST->ConOut, buf); 70 if (ST->ConIn->WaitForKey == NULL) { 73 status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, &key) [all...] |
efiboot.c | 74 uefi_call_wrapper(ST->ConOut->Reset, 2, ST->ConOut, TRUE); 75 uefi_call_wrapper(ST->ConOut->SetMode, 2, ST->ConOut, 0); 76 uefi_call_wrapper(ST->ConOut->EnableCursor, 2, ST->ConOut, TRUE);
|
boot.c | 405 ST->Hdr.Revision >> 16, ST->Hdr.Revision & 0xffff); 408 rv = ucs2_to_utf8(ST->FirmwareVendor, &ufirmware); 411 ST->FirmwareRevision); 578 uefi_call_wrapper(ST->ConOut->ClearScreen, 1, ST->ConOut);
|
/src/sys/arch/ia64/include/ |
efilib.h | 32 extern EFI_SYSTEM_TABLE *ST;
|
/src/sys/arch/i386/stand/efiboot/ |
panic.c | 55 WaitForSingleEvent(ST->ConIn->WaitForKey, 0);
|
eficons.c | 294 status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, 297 WaitForSingleEvent(ST->ConIn->WaitForKey, 0); 298 status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, 299 ST->ConIn, &key); 326 status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, 341 status = WaitForSingleEvent(ST->ConIn->WaitForKey, timeout); 438 uefi_call_wrapper(ST->ConOut->ClearScreen, 1, ST->ConOut) [all...] |
boot.c | 785 ST->Hdr.Revision >> 16, ST->Hdr.Revision & 0xffff); 787 rv = ucs2_to_utf8(ST->FirmwareVendor, &ufirmware); 790 ST->FirmwareRevision >> 16, 791 ST->FirmwareRevision & 0xffff); 846 status = uefi_call_wrapper(ST->ConOut->QueryMode, 4, ST->ConOut, 847 ST->ConOut->Mode->Mode, &cols, &rows); 916 status = uefi_call_wrapper(ST->ConOut->QueryMode, 4, ST->ConOut [all...] |
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
ste-hrefprev60-tvk.dts | 3 * Copyright 2012 ST-Ericsson AB 12 model = "ST-Ericsson HREF (pre-v60) and TVK1281618 R2 UIB"; 13 compatible = "st-ericsson,mop500", "st-ericsson,u8500";
|
ste-hrefprev60-stuib.dts | 3 * Copyright 2012 ST-Ericsson AB 12 model = "ST-Ericsson HREF (pre-v60) and ST UIB"; 13 compatible = "st-ericsson,mop500", "st-ericsson,u8500";
|
ste-hrefv60plus-stuib.dts | 3 * Copyright 2012 ST-Ericsson AB 5 * Device Tree for the HREF version 60 or later with the ST UIB 14 model = "ST-Ericsson HREF (v60+) and ST UIB"; 15 compatible = "st-ericsson,hrefv60+", "st-ericsson,u8500";
|
ste-hrefv60plus-tvk.dts | 3 * Copyright 2012 ST-Ericsson AB 14 model = "ST-Ericsson HREF (v60+) and TVK1281618 R2 UIB"; 15 compatible = "st-ericsson,hrefv60+", "st-ericsson,u8500";
|
/src/sys/arch/ia64/stand/efi/libefi/ |
efi.c | 40 EFI_SYSTEM_TABLE *ST; 71 for (i = 0; i < ST->NumberOfTableEntries; i++) { 72 id = &ST->ConfigurationTable[i].VendorGuid; 74 return (ST->ConfigurationTable[i].VendorTable); 96 ST = system_table; 97 BS = ST->BootServices; 98 RS = ST->RuntimeServices;
|
efi_console.c | 45 conout = ST->ConOut; 46 conin = ST->ConIn;
|
/src/sys/arch/arm/at91/ |
at91streg.h | 35 /* System Timer (ST), 72 #define WDog() do {CPUReg->ST.CR = ST_CR_WDRST;} while (0)
|
/src/sys/arch/arm/arm/ |
efi_runtime.c | 68 struct efi_systbl *ST; 91 ST = (void *)(va + (efi_system_table - trunc_page(efi_system_table))); 92 if (ST->st_hdr.th_sig != EFI_SYSTBL_SIG) { 94 PRIx64 ")\n", ST->st_hdr.th_sig, EFI_SYSTBL_SIG); 98 struct efi_rt *rt = ST->st_rt;
|
/src/sys/arch/amd64/amd64/ |
db_disasm.c | 112 #define ST 31 /* FP stack top */ 450 /*0*/ { "fadd", SNGL, op2(STI,ST), 0 }, 451 /*1*/ { "fmul", SNGL, op2(STI,ST), 0 }, 452 /*2*/ { "fcom", SNGL, op2(STI,ST), 0 }, 453 /*3*/ { "fcomp", SNGL, op2(STI,ST), 0 }, 454 /*4*/ { "fsub", SNGL, op2(STI,ST), 0 }, 455 /*5*/ { "fsubr", SNGL, op2(STI,ST), 0 }, 456 /*6*/ { "fdiv", SNGL, op2(STI,ST), 0 }, 457 /*7*/ { "fdivr", SNGL, op2(STI,ST), 0 }, 494 /*0*/ { "fadd", DBLR, op2(ST,STI), 0 } [all...] |
/src/sys/arch/i386/i386/ |
db_disasm.c | 94 #define ST 31 /* FP stack top */ 418 /*0*/ { "fadd", SNGL, op2(STI,ST), 0 }, 419 /*1*/ { "fmul", SNGL, op2(STI,ST), 0 }, 420 /*2*/ { "fcom", SNGL, op2(STI,ST), 0 }, 421 /*3*/ { "fcomp", SNGL, op2(STI,ST), 0 }, 422 /*4*/ { "fsub", SNGL, op2(STI,ST), 0 }, 423 /*5*/ { "fsubr", SNGL, op2(STI,ST), 0 }, 424 /*6*/ { "fdiv", SNGL, op2(STI,ST), 0 }, 425 /*7*/ { "fdivr", SNGL, op2(STI,ST), 0 }, 462 /*0*/ { "fadd", DBLR, op2(ST,STI), 0 } [all...] |
/src/sys/arch/amiga/dev/ |
kbdmap.h | 86 #define ST 156
|
/src/sys/arch/atari/dev/ |
kbdmap.h | 90 #define ST 156
|
/src/usr.sbin/lpr/common_source/ |
lp.h | 74 extern const char *ST; /* status file name */
|