Lines Matching refs:_format
1350 version = OSNumber::withNumber(_format->getVersion(), 32); in start()
1353 if (_format->getSystemUsed()) { in start()
1356 …if (!_systemService || !_systemService->init(gAppleSystemVariableGuid, _format->getSystemPartition… in start()
1381 …if (!_commonService || !_commonService->init(gAppleNVRAMGuid, _format->getSystemPartitionActive())… in start()
1445 _format = IONVRAMV3Handler::init(this, image, size, _varDict); in initImageFormat()
1446 require_action(_format, skip, panic("IONVRAMV3Handler creation failed\n")); in initImageFormat()
1448 _format = IONVRAMCHRPHandler::init(this, image, size, _varDict); in initImageFormat()
1449 require_action(_format, skip, panic("IONVRAMCHRPHandler creation failed\n")); in initImageFormat()
1452 _format->unserializeVariables(); in initImageFormat()
1474 _format->setController(controller); in registerNVRAMController()
1532 ret = _format->sync(); in syncInternal()
1540 OSSharedPtr<OSNumber> generation = OSNumber::withNumber(_format->getGeneration(), 32); in syncInternal()
1557 _format->reload(); in reload()
1599 … verifyPermission(kIONVRAMOperationRead, varGuid, varName, _format->getSystemPartitionActive())) { in serializeProperties()
1622 …if (verifyPermission(kIONVRAMOperationRead, varGuid, varName, _format->getSystemPartitionActive())… in serializeProperties()
1642 if (_format->getSystemPartitionActive() && (uuid_compare(guid, gAppleSystemVariableGuid) == 0)) { in flushGUID()
1643 ret = _format->flush(guid, op); in flushGUID()
1647 ret = _format->flush(guid, op); in flushGUID()
1699 if (!verifyPermission(kIONVRAMOperationRead, guid, name, _format->getSystemPartitionActive())) { in copyPropertyWithGUIDAndName()
1704 translateGUID(guid, name, newGuid, _format->getSystemPartitionActive()); in copyPropertyWithGUIDAndName()
1840 if (!verifyPermission(kIONVRAMOperationWrite, guid, name, _format->getSystemPartitionActive())) { in setPropertyWithGUIDAndName()
1925 translateGUID(guid, name, newGuid, _format->getSystemPartitionActive()); in setPropertyWithGUIDAndName()
1929 ret = _format->setVariable(newGuid, name, propObject.get()); in setPropertyWithGUIDAndName()
1992 if (!verifyPermission(kIONVRAMOperationDelete, guid, name, _format->getSystemPartitionActive())) { in removePropertyWithGUIDAndName()
1998 translateGUID(guid, name, newGuid, _format->getSystemPartitionActive()); in removePropertyWithGUIDAndName()
2002 ret = _format->setVariable(newGuid, name, nullptr); in removePropertyWithGUIDAndName()