Lines Matching refs:VarSize
246 OUT UINTN *VarSize in LibGetVariableAndSize() argument
276 *VarSize = BufferSize; in LibGetVariableAndSize()
278 *VarSize = 0; in LibGetVariableAndSize()
289 UINTN VarSize; in LibGetVariable() local
291 return LibGetVariableAndSize (Name, VendorGuid, &VarSize); in LibGetVariable()
375 UINTN VarSize; in LibInsertToTailOfBootOrder() local
379 BootOptionArray = LibGetVariableAndSize (VarBootOrder, &EfiGlobalVariable, &VarSize); in LibInsertToTailOfBootOrder()
380 if (VarSize != 0 && OnlyInsertIfEmpty) { in LibInsertToTailOfBootOrder()
387 VarSize += sizeof(UINT16); in LibInsertToTailOfBootOrder()
388 NewBootOptionArray = AllocatePool (VarSize); in LibInsertToTailOfBootOrder()
390 for (Index = 0; Index < ((VarSize/sizeof(UINT16)) - 1); Index++) { in LibInsertToTailOfBootOrder()
403 VarSize, (VOID*) NewBootOptionArray in LibInsertToTailOfBootOrder()