Lines Matching refs:_format
1282 version = OSNumber::withNumber(_format->getVersion(), 32); in start()
1285 if (_format->getSystemUsed()) { in start()
1288 …if (!_systemService || !_systemService->init(gAppleSystemVariableGuid, _format->getSystemPartition… in start()
1313 …if (!_commonService || !_commonService->init(gAppleNVRAMGuid, _format->getSystemPartitionActive())… in start()
1376 _format = IONVRAMV3Handler::init(this, image, size, _varDict); in initImageFormat()
1377 require_action(_format, skip, panic("IONVRAMV3Handler creation failed\n")); in initImageFormat()
1379 _format = IONVRAMCHRPHandler::init(this, image, size, _varDict); in initImageFormat()
1380 require_action(_format, skip, panic("IONVRAMCHRPHandler creation failed\n")); in initImageFormat()
1383 _format->unserializeVariables(); in initImageFormat()
1405 _format->setController(controller); in registerNVRAMController()
1461 _format->sync(); in syncInternal()
1467 OSSharedPtr<OSNumber> generation = OSNumber::withNumber(_format->getGeneration(), 32); in syncInternal()
1481 _format->reload(); in reload()
1523 … verifyPermission(kIONVRAMOperationRead, varGuid, varName, _format->getSystemPartitionActive())) { in serializeProperties()
1546 …if (verifyPermission(kIONVRAMOperationRead, varGuid, varName, _format->getSystemPartitionActive())… in serializeProperties()
1566 if (_format->getSystemPartitionActive() && (uuid_compare(guid, gAppleSystemVariableGuid) == 0)) { in flushGUID()
1567 ret = _format->flush(guid, op); in flushGUID()
1571 ret = _format->flush(guid, op); in flushGUID()
1623 if (!verifyPermission(kIONVRAMOperationRead, guid, name, _format->getSystemPartitionActive())) { in copyPropertyWithGUIDAndName()
1628 translateGUID(guid, name, newGuid, _format->getSystemPartitionActive()); in copyPropertyWithGUIDAndName()
1761 if (!verifyPermission(kIONVRAMOperationWrite, guid, name, _format->getSystemPartitionActive())) { in setPropertyWithGUIDAndName()
1846 translateGUID(guid, name, newGuid, _format->getSystemPartitionActive()); in setPropertyWithGUIDAndName()
1850 ret = _format->setVariable(newGuid, name, propObject.get()); in setPropertyWithGUIDAndName()
1913 if (!verifyPermission(kIONVRAMOperationDelete, guid, name, _format->getSystemPartitionActive())) { in removePropertyWithGUIDAndName()
1919 translateGUID(guid, name, newGuid, _format->getSystemPartitionActive()); in removePropertyWithGUIDAndName()
1923 ret = _format->setVariable(newGuid, name, nullptr); in removePropertyWithGUIDAndName()