Searched refs:keyRaw (Results 1 – 3 of 3) sorted by relevance
157 std::string keyRaw; in createPrivateVolume() local158 if (!ReadFileToString(BuildKeyPath(normalizedGuid), &keyRaw)) { in createPrivateVolume()165 auto vol = std::shared_ptr<VolumeBase>(new PrivateVolume(device, keyRaw)); in createPrivateVolume()409 std::string keyRaw; in partitionMixed() local410 if (ReadRandomBytes(16, partGuidRaw) || ReadRandomBytes(16, keyRaw)) { in partitionMixed()418 if (!WriteStringToFile(keyRaw, BuildKeyPath(partGuid))) { in partitionMixed()
40 PrivateVolume(dev_t device, const std::string& keyRaw);
46 PrivateVolume::PrivateVolume(dev_t device, const std::string& keyRaw) : in PrivateVolume() argument47 VolumeBase(Type::kPrivate), mRawDevice(device), mKeyRaw(keyRaw) { in PrivateVolume()