| 219 | |
| 220 | } |
| 221 | EFI_STATUS |
| 222 | SetNvramXString8 ( |
| 223 | IN CONST CHAR16 *VariableName, |
| 224 | IN EFI_GUID *VendorGuid, |
| 225 | IN UINT32 Attributes, |
| 226 | const XString8& s |
| 227 | ) |
| 228 | { |
| 229 | return SetNvramVariable(VariableName, VendorGuid, Attributes, s.sizeInBytes(), (void*)s.c_str()); |
| 230 | } |
| 231 | |
| 232 | /** Sets NVRAM variable. Does nothing if variable with the same name already exists. */ |
| 233 | EFI_STATUS |
no test coverage detected