Home | History | Annotate | Download | only in HalRuntimeServicesExampleLib

Lines Matching refs:Attributes

42   IN UINT32        Attributes,

67 Entry->Attribute = Attributes;
151 OUT UINT32 *Attributes OPTIONAL,
159 if (EfiAtRuntime () && (Attributes != NULL)) {
160 if ((*Attributes & EFI_VARIABLE_RUNTIME_ACCESS) == 0) {
176 if (Attributes != NULL) {
177 *Attributes = Entry->Attribute;
230 IN UINT32 Attributes,
238 if (EfiAtRuntime () && ((Attributes & EFI_VARIABLE_RUNTIME_ACCESS) == 0)) {
247 Entry = AddEntry (VariableName, VendorGuid, Attributes, DataSize, Data);
255 Entry->Attribute |= Attributes;
258 // Grow the entry by deleting and adding back. Don't lose previous Attributes
259 Attributes |= Entry->Attribute;
261 Entry = AddEntry (VariableName, VendorGuid, Attributes, DataSize, Data);
269 IN UINT32 Attributes,