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()
1598 … verifyPermission(kIONVRAMOperationRead, varGuid, varName, _format->getSystemPartitionActive())) { in dictionaryWithProperties()
1621 …if (verifyPermission(kIONVRAMOperationRead, varGuid, varName, _format->getSystemPartitionActive())… in dictionaryWithProperties()
1651 if (_format->getSystemPartitionActive() && (uuid_compare(guid, gAppleSystemVariableGuid) == 0)) { in flushGUID()
1652 ret = _format->flush(guid, op); in flushGUID()
1656 ret = _format->flush(guid, op); in flushGUID()
1708 if (!verifyPermission(kIONVRAMOperationRead, guid, name, _format->getSystemPartitionActive())) { in copyPropertyWithGUIDAndName()
1713 translateGUID(guid, name, newGuid, _format->getSystemPartitionActive()); in copyPropertyWithGUIDAndName()
1849 if (!verifyPermission(kIONVRAMOperationWrite, guid, name, _format->getSystemPartitionActive())) { in setPropertyWithGUIDAndName()
1934 translateGUID(guid, name, newGuid, _format->getSystemPartitionActive()); in setPropertyWithGUIDAndName()
1938 ret = _format->setVariable(newGuid, name, propObject.get()); in setPropertyWithGUIDAndName()
2001 if (!verifyPermission(kIONVRAMOperationDelete, guid, name, _format->getSystemPartitionActive())) { in removePropertyWithGUIDAndName()
2007 translateGUID(guid, name, newGuid, _format->getSystemPartitionActive()); in removePropertyWithGUIDAndName()
2011 ret = _format->setVariable(newGuid, name, nullptr); in removePropertyWithGUIDAndName()