Home
last modified time | relevance | path

Searched refs:keyRaw (Results 1 – 3 of 3) sorted by relevance

/system/vold/
DDisk.cpp191 std::string keyRaw; in createPrivateVolume() local
192 if (!ReadFileToString(BuildKeyPath(normalizedGuid), &keyRaw)) { in createPrivateVolume()
199 auto vol = std::shared_ptr<VolumeBase>(new PrivateVolume(device, keyRaw)); in createPrivateVolume()
479 std::string keyRaw; in partitionMixed() local
480 if (ReadRandomBytes(16, keyRaw) != OK) { in partitionMixed()
488 if (!WriteStringToFile(keyRaw, BuildKeyPath(partGuid))) { in partitionMixed()
DPrivateVolume.h40 PrivateVolume(dev_t device, const std::string& keyRaw);
DPrivateVolume.cpp47 PrivateVolume::PrivateVolume(dev_t device, const std::string& keyRaw) : in PrivateVolume() argument
48 VolumeBase(Type::kPrivate), mRawDevice(device), mKeyRaw(keyRaw) { in PrivateVolume()