Searched defs:VarList (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Application/Shell/
H A DShellEnvVar.c145 ENV_VAR_LIST *VarList; local
176 VarList = AllocateZeroPool(sizeof(ENV_VAR_LIST));
177 if (VarList == NULL) {
181 Status = SHELL_GET_ENVIRONMENT_VARIABLE_AND_ATTRIBUTES(VariableName, &VarList->Atts, &ValSize, VarList->Val);
183 VarList->Val = AllocateZeroPool(ValSize);
184 if (VarList->Val == NULL) {
185 SHELL_FREE_NON_NULL(VarList);
188 Status = SHELL_GET_ENVIRONMENT_VARIABLE_AND_ATTRIBUTES(VariableName, &VarList->Atts, &ValSize, VarList
232 ENV_VAR_LIST VarList; local
298 ENV_VAR_LIST *VarList; local
[all...]
/vbox/src/VBox/Devices/EFI/
H A DDevEFI.cpp109 RTLISTANCHOR VarList; member in struct:NVRAMDESC
274 SSMFIELD_ENTRY_IGNORE(NVRAMDESC, VarList),
304 while (!RTListIsEmpty(&pThis->NVRAM.VarList))
306 PEFIVAR pEfiVar = RTListNodeGetNext(&pThis->NVRAM.VarList, EFIVAR, ListNode);
341 RTListForEach(&pThis->NVRAM.VarList, pEfiVar, EFIVAR, ListNode)
375 RTListForEach(&pThis->NVRAM.VarList, pCurVar, EFIVAR, ListNode)
391 RTListAppend(&pThis->NVRAM.VarList, &pEfiVar->ListNode);
459 RTListForEach(&pThis->NVRAM.VarList, pEfiVar, EFIVAR, ListNode)
469 RTListForEach(&pThis->NVRAM.VarList, pEfiVar, EFIVAR, ListNode)
571 pEfiVar = RTListGetNext(&pThis->NVRAM.VarList, pEfiVa
[all...]

Completed in 38 milliseconds