Home
last modified time | relevance | path

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

/system/vold/
DDisk.cpp157 std::string keyRaw; in createPrivateVolume() local
158 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() local
410 if (ReadRandomBytes(16, partGuidRaw) || ReadRandomBytes(16, keyRaw)) { in partitionMixed()
418 if (!WriteStringToFile(keyRaw, BuildKeyPath(partGuid))) { in partitionMixed()
DPrivateVolume.h40 PrivateVolume(dev_t device, const std::string& keyRaw);
DPrivateVolume.cpp46 PrivateVolume::PrivateVolume(dev_t device, const std::string& keyRaw) : in PrivateVolume() argument
47 VolumeBase(Type::kPrivate), mRawDevice(device), mKeyRaw(keyRaw) { in PrivateVolume()