• Home
  • Raw
  • Download

Lines Matching refs:Status

30     EFI_STATUS              Status;  in AllocatePool()  local
33 Status = uefi_call_wrapper(BS->AllocatePool, 3, PoolAllocationType, Size, &p); in AllocatePool()
34 if (EFI_ERROR(Status)) { in AllocatePool()
35 DEBUG((D_ERROR, "AllocatePool: out of pool %x\n", Status)); in AllocatePool()
133 IN OUT EFI_STATUS *Status, in GrowBuffer() argument
167 *Status = EFI_BUFFER_TOO_SMALL; in GrowBuffer()
175 if (*Status == EFI_BUFFER_TOO_SMALL) { in GrowBuffer()
186 *Status = EFI_OUT_OF_RESOURCES; in GrowBuffer()
194 if (!TryAgain && EFI_ERROR(*Status) && *Buffer) { in GrowBuffer()
211 EFI_STATUS Status; in LibMemoryMap() local
219 Status = EFI_SUCCESS; in LibMemoryMap()
227 while (GrowBuffer (&Status, (VOID **) &Buffer, BufferSize)) { in LibMemoryMap()
228Status = uefi_call_wrapper(BS->GetMemoryMap, 5, &BufferSize, Buffer, MapKey, DescriptorSize, Descr… in LibMemoryMap()
235 if (!EFI_ERROR(Status)) { in LibMemoryMap()
249 EFI_STATUS Status; in LibGetVariableAndSize() local
264 while (GrowBuffer (&Status, &Buffer, BufferSize)) { in LibGetVariableAndSize()
265 Status = uefi_call_wrapper( in LibGetVariableAndSize()
301 EFI_STATUS Status; in LibDeleteVariable() local
305 Status = EFI_NOT_FOUND; in LibDeleteVariable()
311 Status = uefi_call_wrapper( in LibDeleteVariable()
318 ASSERT (!EFI_ERROR(Status)); in LibDeleteVariable()
322 return (Status); in LibDeleteVariable()
333 EFI_STATUS Status; in LibSetNVVariable() local
335 Status = uefi_call_wrapper( in LibSetNVVariable()
342 ASSERT (!EFI_ERROR(Status)); in LibSetNVVariable()
343 return (Status); in LibSetNVVariable()
354 EFI_STATUS Status; in LibSetVariable() local
356 Status = uefi_call_wrapper( in LibSetVariable()
363 ASSERT (!EFI_ERROR(Status)); in LibSetVariable()
364 return (Status); in LibSetVariable()
377 EFI_STATUS Status; in LibInsertToTailOfBootOrder() local
398 Status = uefi_call_wrapper( in LibInsertToTailOfBootOrder()
412 return Status; in LibInsertToTailOfBootOrder()
538 EFI_STATUS Status; in LibGetUiString() local
540 Status = uefi_call_wrapper(BS->HandleProtocol, 3, Handle, &UiProtocol, (VOID *)&Ui); in LibGetUiString()
541 if (EFI_ERROR(Status)) { in LibGetUiString()