HomeSort by: relevance | last modified time | path
    Searched refs:BS (Results 1 - 25 of 69) sorted by relevancy

1 2 3

  /src/sys/arch/ia64/stand/efi/libefi/
delay.c 42 if (BS->CreateEvent(EVT_TIMER, TPL_APPLICATION, 0, 0, &ev)
47 BS->SetTimer(ev, TimerRelative, usecs * 10);
48 BS->WaitForEvent(1, &ev, &junk);
efifpswa.c 55 status = BS->LocateHandle(ByProtocol, &fpswaid, 0, &sz, &fpswa_handle);
59 status = BS->HandleProtocol(fpswa_handle, &fpswaid, (VOID **)&fpswa);
efi.c 41 EFI_BOOT_SERVICES *BS;
82 BS->FreePages(heap, EFI_SIZE_TO_PAGES(heapsize));
83 BS->Exit(IH, exit_code, 0, NULL);
97 BS = ST->BootServices;
101 status = BS->AllocatePages(AllocateAnyPages, EfiLoaderData,
104 BS->Exit(IH, status, 0, NULL);
110 status = BS->HandleProtocol(IH, &image_protocol, (VOID**)&img);
efi_console.c 81 BS->WaitForEvent(1, &conin->WaitForKey, &junk);
91 return (BS->CheckEvent(conin->WaitForKey) == EFI_SUCCESS);
exec.c 157 BS->GetMemoryMap(&size, NULL, &mapkey, &descsz, &descver);
160 status = BS->AllocatePages(AllocateAnyPages, EfiLoaderData, pages,
173 status = BS->ExitBootServices(IH, mapkey);
  /src/sys/external/bsd/gnu-efi/dist/lib/runtime/
rtlock.c 50 if (BS) {
51 if (BS->RaiseTPL != NULL) {
52 Lock->OwnerTpl = uefi_call_wrapper(BS->RaiseTPL, 1, Lock->Tpl);
94 if (BS) {
95 if (BS->RestoreTPL != NULL) {
96 uefi_call_wrapper(BS->RestoreTPL, 1, Tpl);
  /src/sys/stand/efiboot/
efiwatchdog.c 39 uefi_call_wrapper(BS->SetWatchdogTimer, 4, timeout, code, 0, NULL);
efiboot.c 78 status = uefi_call_wrapper(BS->AllocatePages, 4, AllocateAnyPages, EfiLoaderData, sz, &heap_start);
83 status = uefi_call_wrapper(BS->HandleProtocol, 3, imageHandle, &LoadedImageProtocol, (void **)&efi_li);
86 status = uefi_call_wrapper(BS->HandleProtocol, 3, efi_li->DeviceHandle, &DevicePathProtocol, (void **)&efi_bootdp);
128 status = uefi_call_wrapper(BS->ExitBootServices, 2, IH, mapkey);
144 status = uefi_call_wrapper(BS->Exit, 4, IH, EFI_ABORTED, 0, NULL);
164 status = uefi_call_wrapper(BS->CreateEvent, 5, EVT_TIMER, TPL_APPLICATION, 0, 0, &delay_ev);
169 uefi_call_wrapper(BS->SetTimer, 3, delay_ev, TimerRelative, us * 10);
170 uefi_call_wrapper(BS->WaitForEvent, 3, 1, &delay_ev, &val);
exec.c 89 status = uefi_call_wrapper(BS->AllocatePages, 4, AllocateMaxAddress, EfiLoaderData,
93 status = uefi_call_wrapper(BS->AllocatePages, 4, AllocateAnyPages, EfiLoaderData,
142 status = uefi_call_wrapper(BS->AllocatePages, 4, AllocateMaxAddress,
146 status = uefi_call_wrapper(BS->AllocatePages, 4, AllocateAnyPages,
157 uefi_call_wrapper(BS->FreePages, 2, addr,
194 status = uefi_call_wrapper(BS->AllocatePages, 4, AllocateMaxAddress, EfiLoaderData,
198 status = uefi_call_wrapper(BS->AllocatePages, 4, AllocateAnyPages, EfiLoaderData,
227 uefi_call_wrapper(BS->FreePages, 2, addr, EFI_SIZE_TO_PAGES(alloc_size));
efigetsecs.c 70 status = uefi_call_wrapper(BS->CreateEvent, 5, EVT_TIMER | EVT_NOTIFY_SIGNAL, TPL_CALLBACK,
74 status = uefi_call_wrapper(BS->SetTimer, 3, getsecs_ev, TimerPeriodic, 10000000); /* 1s in "100ns" units */
efipxe.c 62 status = uefi_call_wrapper(BS->HandleProtocol, 3, handles[i],
72 status = uefi_call_wrapper(BS->HandleProtocol, 3, handles[i],
81 status = uefi_call_wrapper(BS->HandleProtocol, 3, handles[i],
  /src/sys/external/bsd/gnu-efi/dist/lib/
exit.c 12 uefi_call_wrapper(BS->Exit,
event.c 44 BS->CreateEvent,
60 BS->RegisterProtocolNotify,
74 uefi_call_wrapper(BS->SignalEvent, 1, Event);
95 Status = uefi_call_wrapper(BS->CreateEvent, 5, EVT_TIMER, 0, NULL, NULL, &TimerEvent);
102 uefi_call_wrapper(BS->SetTimer, 3, TimerEvent, TimerRelative, Timeout);
110 Status = uefi_call_wrapper(BS->WaitForEvent, 3, 2, WaitList, &Index);
111 uefi_call_wrapper(BS->CloseEvent, 1, TimerEvent);
128 Status = uefi_call_wrapper(BS->WaitForEvent, 3, 1, &Event, &Index);
hand.c 46 Status = uefi_call_wrapper(BS->HandleProtocol, 3, Handles[Index], ProtocolGuid, Interface);
87 BS->LocateHandle,
146 BS->LocateHandle,
183 BS->HandleProtocol,
314 Status = uefi_call_wrapper(BS->HandleProtocol, 3, DeviceHandle, &FileSystemProtocol, (VOID*)&Volume);
457 OldTpl = uefi_call_wrapper(BS->RaiseTPL, 1, TPL_NOTIFY);
486 Status = uefi_call_wrapper(BS->InstallProtocolInterface, 4, Handle, Protocol, EFI_NATIVE_INTERFACE, Interface);
508 uefi_call_wrapper(BS->UninstallProtocolInterface, 3, *Handle, Protocol, Interface);
522 uefi_call_wrapper(BS->RestoreTPL, 1, OldTpl);
557 Status = uefi_call_wrapper(BS->UninstallProtocolInterface, 3, Handle, Protocol, Interface)
    [all...]
cmdline.c 41 Status = uefi_call_wrapper(BS->OpenProtocol, 6,
87 Status = uefi_call_wrapper(BS->OpenProtocol, 6,
104 Status = uefi_call_wrapper(BS->OpenProtocol, 6,
hw.c 58 Status = uefi_call_wrapper(BS->LocateDevicePath, 3, Protocol, &DevicePath, &Handle);
64 Status = uefi_call_wrapper(BS->LocateDevicePath, 3, &DeviceIoProtocol, &DevicePath, &Handle);
66 Status = uefi_call_wrapper(BS->HandleProtocol, 3, Handle, &DeviceIoProtocol, (VOID*)GlobalIoFncs);
init.c 63 BS = SystemTable->BootServices;
66 // ASSERT (CheckCrc(0, &BS->Hdr));
76 BS->HandleProtocol,
137 Status = uefi_call_wrapper(BS->HandleProtocol, 3, Handles[Index], &UnicodeCollationProtocol, (VOID*)&Ui);
  /src/sys/arch/ia64/include/
efilib.h 33 extern EFI_BOOT_SERVICES *BS;
  /src/usr.bin/make/unit-tests/
escape.exp 1 var-1bs
9 var-2bs
10 VAR2.BS=:222\\222:
11 VAR2.BS.a=:222\\aaa:
12 VAR2.BS.A=:222\\aaa:
13 VAR2.BS.d.a=:222\\${a}:
14 VAR2.BS.d.A=:222\\${A}:
15 VAR2.BS.c=:222\\:
16 VAR2.BS.s.c=:222\\:
17 var-1bs-n
    [all...]
  /src/sys/arch/i386/stand/efiboot/
efidelay.c 39 status = uefi_call_wrapper(BS->Stall, 1, us);
efiboot.c 70 status = uefi_call_wrapper(BS->HandleProtocol, 3, IH,
75 status = uefi_call_wrapper(BS->HandleProtocol, 3, efi_li->DeviceHandle,
99 status = uefi_call_wrapper(BS->SetWatchdogTimer, 4, 0, 0, 0, NULL);
127 status = uefi_call_wrapper(BS->ExitBootServices, 2, IH, MapKey);
132 status = uefi_call_wrapper(BS->ExitBootServices, 2, IH, MapKey);
155 status = uefi_call_wrapper(BS->AllocatePages, 4, AllocateMaxAddress,
efipxe.c 62 status = uefi_call_wrapper(BS->HandleProtocol, 3, handles[i],
72 status = uefi_call_wrapper(BS->HandleProtocol, 3, handles[i],
81 status = uefi_call_wrapper(BS->HandleProtocol, 3, handles[i],
  /src/sys/external/bsd/gnu-efi/dist/apps/
t6.c 34 BS->HandleProtocol(loaded_image->DeviceHandle, &DevicePathProtocol, (void **) &dev_path);
  /src/sys/arch/i386/stand/efiboot/bootx64/
efibootx64.c 52 status = uefi_call_wrapper(BS->AllocatePages, 4, AllocateMaxAddress,
62 status = uefi_call_wrapper(BS->AllocatePages, 4, AllocateMaxAddress,
  /src/sys/arch/i386/stand/efiboot/bootia32/
efibootia32.c 52 status = uefi_call_wrapper(BS->AllocatePages, 4, AllocateMaxAddress,
62 status = uefi_call_wrapper(BS->AllocatePages, 4, AllocateMaxAddress,

Completed in 18 milliseconds

1 2 3