Home
last modified time | relevance | path

Searched refs:getId (Results 1 – 14 of 14) sorted by relevance

/system/vold/
DPrivateVolume.cpp49 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 …]
DVolumeBase.cpp54 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 …]
DPublicVolume.cpp47 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()
127 PLOG(ERROR) << getId() << " failed to create mount points"; in doMount()
133 PLOG(ERROR) << getId() << " failed to mount " << mDevPath; in doMount()
149 PLOG(ERROR) << getId() << " failed to create FUSE mount points"; in doMount()
184 PLOG(ERROR) << getId() << " failed to fork"; in doMount()
[all …]
DEmulatedVolume.cpp74 PLOG(ERROR) << getId() << " failed to create mount points"; in doMount()
97 PLOG(ERROR) << getId() << " failed to fork"; in doMount()
DDisk.cpp126 if (vol->getId() == id) { in findVolume()
140 list.push_back(vol->getId()); in listVolumes()
175 vol->setDiskId(getId()); in createPublicVolume()
205 vol->setDiskId(getId()); in createPrivateVolume()
519 getId().c_str(), false); in notifyEvent()
524 StringPrintf("%s %s", getId().c_str(), value.c_str()).c_str(), false); in notifyEvent()
DDisk.h57 const std::string& getId() { return mId; } in getId() function
DVolumeBase.h77 const std::string& getId() { return mId; } in getId() function
DVolumeManager.cpp358 if (disk->getId() == id) { in findDisk()
366 if (mInternalEmulated->getId() == id) { in findVolume()
/system/extras/verity/
DUtils.java69 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 …]
/system/weaved/libweaved/
Dcommand.cc63 if (binder_proxy_->getId(&id16).isOk()) in GetID()
71 if (binder_proxy_->getId(&name16).isOk()) in GetName()
79 if (binder_proxy_->getId(&component16).isOk()) in GetComponent()
/system/weaved/brillo/android/weave/
DIWeaveCommand.aidl20 String getId(); in getId() method
/system/weaved/buffet/
Dbinder_command_proxy.h35 android::binder::Status getId(android::String16* id) override;
Dbinder_command_proxy_unittest.cc123 EXPECT_TRUE(GetCommandProxy()->getId(&result).isOk()); in TEST_F()
Dbinder_command_proxy.cc41 android::binder::Status BinderCommandProxy::getId(android::String16* id) { in getId() function in buffet::BinderCommandProxy