Searched refs:getId (Results 1 – 9 of 9) sorted by relevance
/system/vold/ |
D | PrivateVolume.cpp | 49 mRawDevPath = StringPrintf("/dev/block/vold/%s", getId().c_str()); in PrivateVolume() 69 cryptfs_revert_ext_volume(getId().c_str()); in doCreate() 75 int res = cryptfs_setup_ext_volume(getId().c_str(), mRawDevPath.c_str(), in doCreate() 79 PLOG(ERROR) << getId() << " failed to setup cryptfs"; in doCreate() 87 if (cryptfs_revert_ext_volume(getId().c_str())) { in doDestroy() 88 LOG(ERROR) << getId() << " failed to revert cryptfs"; in doDestroy() 95 LOG(ERROR) << getId() << " failed to read metadata"; in doMount() 103 PLOG(ERROR) << getId() << " failed to create mount point " << mPath; in doMount() 110 LOG(DEBUG) << getId() << " passed filesystem check"; in doMount() 112 PLOG(ERROR) << getId() << " failed filesystem check"; in doMount() [all …]
|
D | VolumeBase.cpp | 54 LOG(WARNING) << getId() << " diskId change requires destroyed"; in setDiskId() 64 LOG(WARNING) << getId() << " partGuid change requires destroyed"; in setPartGuid() 74 LOG(WARNING) << getId() << " flags change requires state unmounted or unmountable"; in setMountFlags() 84 LOG(WARNING) << getId() << " user change requires state unmounted or unmountable"; in setMountUserId() 94 LOG(WARNING) << getId() << " silence change requires destroyed"; in setSilent() 104 LOG(WARNING) << getId() << " id change requires not created"; in setId() 114 LOG(WARNING) << getId() << " path change requires state checking"; in setPath() 125 LOG(WARNING) << getId() << " internal path change requires state checking"; in setInternalPath() 137 getId().c_str(), false); in notifyEvent() 143 StringPrintf("%s %s", getId().c_str(), value.c_str()).c_str(), false); in notifyEvent() [all …]
|
D | PublicVolume.cpp | 47 mDevPath = StringPrintf("/dev/block/vold/%s", getId().c_str()); in PublicVolume() 69 PLOG(WARNING) << getId() << " failed to rename legacy ASEC dir"; in initAsecStage() 75 PLOG(WARNING) << getId() << " creating ASEC stage failed"; in initAsecStage() 98 LOG(ERROR) << getId() << " unsupported filesystem " << mFsType; in doMount() 103 LOG(ERROR) << getId() << " failed filesystem check"; in doMount() 108 std::string stableName = getId(); in doMount() 130 PLOG(ERROR) << getId() << " failed to create mount points"; in doMount() 136 PLOG(ERROR) << getId() << " failed to mount " << mDevPath; in doMount() 180 PLOG(ERROR) << getId() << " failed to fork"; in doMount() 222 LOG(WARNING) << getId() << " failed to wipe"; in doFormat() [all …]
|
D | Disk.cpp | 97 if (vol->getId() == id) { in findVolume() 111 list.push_back(vol->getId()); in listVolumes() 146 vol->setDiskId(getId()); in createPublicVolume() 176 vol->setDiskId(getId()); in createPrivateVolume() 483 getId().c_str(), false); in notifyEvent() 488 StringPrintf("%s %s", getId().c_str(), value.c_str()).c_str(), false); in notifyEvent()
|
D | EmulatedVolume.cpp | 74 PLOG(ERROR) << getId() << " failed to create mount points"; in doMount() 97 PLOG(ERROR) << getId() << " failed to fork"; in doMount()
|
D | Disk.h | 57 const std::string& getId() { return mId; } in getId() function
|
D | VolumeBase.h | 77 const std::string& getId() { return mId; } in getId() function
|
D | VolumeManager.cpp | 352 if (disk->getId() == id) { in findDisk() 360 if (mInternalEmulated->getId() == id) { in findVolume()
|
/system/extras/verity/ |
D | Utils.java | 69 ID_TO_ALG.put(X9ObjectIdentifiers.ecdsa_with_SHA256.getId(), "SHA256withECDSA"); in X9ObjectIdentifiers.ecdsa_with_SHA256.getId() 70 ID_TO_ALG.put(X9ObjectIdentifiers.ecdsa_with_SHA384.getId(), "SHA384withECDSA"); in X9ObjectIdentifiers.ecdsa_with_SHA384.getId() 71 ID_TO_ALG.put(X9ObjectIdentifiers.ecdsa_with_SHA512.getId(), "SHA512withECDSA"); in X9ObjectIdentifiers.ecdsa_with_SHA512.getId() 72 ID_TO_ALG.put(PKCSObjectIdentifiers.sha1WithRSAEncryption.getId(), "SHA1withRSA"); in PKCSObjectIdentifiers.sha1WithRSAEncryption.getId() 73 ID_TO_ALG.put(PKCSObjectIdentifiers.sha256WithRSAEncryption.getId(), "SHA256withRSA"); in PKCSObjectIdentifiers.sha256WithRSAEncryption.getId() 74 ID_TO_ALG.put(PKCSObjectIdentifiers.sha512WithRSAEncryption.getId(), "SHA512withRSA"); in PKCSObjectIdentifiers.sha512WithRSAEncryption.getId() 76 ALG_TO_ID.put("SHA256withECDSA", X9ObjectIdentifiers.ecdsa_with_SHA256.getId()); 77 ALG_TO_ID.put("SHA384withECDSA", X9ObjectIdentifiers.ecdsa_with_SHA384.getId()); 78 ALG_TO_ID.put("SHA512withECDSA", X9ObjectIdentifiers.ecdsa_with_SHA512.getId()); 79 ALG_TO_ID.put("SHA1withRSA", PKCSObjectIdentifiers.sha1WithRSAEncryption.getId()); [all …]
|