Lines Matching refs:Status

57 static binder::Status error(const std::string& msg) {  in error()
59 return binder::Status::fromServiceSpecificError(errno, String8(msg.c_str())); in error()
62 static binder::Status translate(int status) { in translate()
64 return binder::Status::ok(); in translate()
66 return binder::Status::fromServiceSpecificError(status); in translate()
70 static binder::Status translateBool(bool status) { in translateBool()
72 return binder::Status::ok(); in translateBool()
74 return binder::Status::fromServiceSpecificError(status); in translateBool()
80 binder::Status status = CheckUidOrRoot(AID_SYSTEM); \
88 binder::Status status = CheckArgumentId((id)); \
96 binder::Status status = CheckArgumentPath((path)); \
104 binder::Status status = CheckArgumentHex((hex)); \
134 const binder::Status dump_permission = CheckPermission(kDump); in dump()
145 binder::Status VoldNativeService::setListener( in setListener()
154 binder::Status VoldNativeService::monitor() { in monitor()
164 binder::Status VoldNativeService::reset() { in reset()
171 binder::Status VoldNativeService::shutdown() { in shutdown()
178 binder::Status VoldNativeService::onUserAdded(int32_t userId, int32_t userSerial) { in onUserAdded()
185 binder::Status VoldNativeService::onUserRemoved(int32_t userId) { in onUserRemoved()
192 binder::Status VoldNativeService::onUserStarted(int32_t userId) { in onUserStarted()
199 binder::Status VoldNativeService::onUserStopped(int32_t userId) { in onUserStopped()
206 binder::Status VoldNativeService::addAppIds(const std::vector<std::string>& packageNames, in addAppIds()
211 binder::Status VoldNativeService::addSandboxIds(const std::vector<int32_t>& appIds, in addSandboxIds()
216 binder::Status VoldNativeService::onSecureKeyguardStateChanged(bool isShowing) { in onSecureKeyguardStateChanged()
223 binder::Status VoldNativeService::partition(const std::string& diskId, int32_t partitionType, in partition()
245 binder::Status VoldNativeService::forgetPartition(const std::string& partGuid, in forgetPartition()
255 binder::Status VoldNativeService::mount(const std::string& volId, int32_t mountFlags, in mount()
282 binder::Status VoldNativeService::unmount(const std::string& volId) { in unmount()
294 binder::Status VoldNativeService::format(const std::string& volId, const std::string& fsType) { in format()
306 static binder::Status pathForVolId(const std::string& volId, std::string* path) { in pathForVolId()
328 binder::Status VoldNativeService::benchmark( in benchmark()
342 binder::Status VoldNativeService::moveStorage( in moveStorage()
362 binder::Status VoldNativeService::remountUid(int32_t uid, int32_t remountMode) { in remountUid()
369 binder::Status VoldNativeService::mkdirs(const std::string& path) { in mkdirs()
377 binder::Status VoldNativeService::createObb(const std::string& sourcePath, in createObb()
389 binder::Status VoldNativeService::destroyObb(const std::string& volId) { in destroyObb()
397 binder::Status VoldNativeService::createStubVolume( in createStubVolume()
412 binder::Status VoldNativeService::destroyStubVolume(const std::string& volId) { in destroyStubVolume()
420 binder::Status VoldNativeService::fstrim( in fstrim()
429 binder::Status VoldNativeService::runIdleMaint( in runIdleMaint()
438 binder::Status VoldNativeService::abortIdleMaint( in abortIdleMaint()
447 binder::Status VoldNativeService::mountAppFuse(int32_t uid, int32_t mountId, in mountAppFuse()
455 binder::Status VoldNativeService::unmountAppFuse(int32_t uid, int32_t mountId) { in unmountAppFuse()
462 binder::Status VoldNativeService::openAppFuseFile(int32_t uid, int32_t mountId, int32_t fileId, in openAppFuseFile()
479 binder::Status VoldNativeService::fdeCheckPassword(const std::string& password) { in fdeCheckPassword()
486 binder::Status VoldNativeService::fdeRestart() { in fdeRestart()
496 binder::Status VoldNativeService::fdeComplete(int32_t* _aidl_return) { in fdeComplete()
526 binder::Status VoldNativeService::fdeEnable(int32_t passwordType, const std::string& password, in fdeEnable()
544 binder::Status VoldNativeService::fdeChangePassword(int32_t passwordType, in fdeChangePassword()
552 binder::Status VoldNativeService::fdeVerifyPassword(const std::string& password) { in fdeVerifyPassword()
559 binder::Status VoldNativeService::fdeGetField(const std::string& key, std::string* _aidl_return) { in fdeGetField()
572 binder::Status VoldNativeService::fdeSetField(const std::string& key, const std::string& value) { in fdeSetField()
579 binder::Status VoldNativeService::fdeGetPasswordType(int32_t* _aidl_return) { in fdeGetPasswordType()
587 binder::Status VoldNativeService::fdeGetPassword(std::string* _aidl_return) { in fdeGetPassword()
598 binder::Status VoldNativeService::fdeClearPassword() { in fdeClearPassword()
606 binder::Status VoldNativeService::fbeEnable() { in fbeEnable()
613 binder::Status VoldNativeService::mountDefaultEncrypted() { in mountDefaultEncrypted()
625 binder::Status VoldNativeService::initUser0() { in initUser0()
632 binder::Status VoldNativeService::isConvertibleToFbe(bool* _aidl_return) { in isConvertibleToFbe()
640 binder::Status VoldNativeService::mountFstab(const std::string& blkDevice, in mountFstab()
648 binder::Status VoldNativeService::encryptFstab(const std::string& blkDevice, in encryptFstab()
656 binder::Status VoldNativeService::createUserKey(int32_t userId, int32_t userSerial, bool ephemeral)… in createUserKey()
663 binder::Status VoldNativeService::destroyUserKey(int32_t userId) { in destroyUserKey()
670 binder::Status VoldNativeService::addUserKeyAuth(int32_t userId, int32_t userSerial, in addUserKeyAuth()
679 binder::Status VoldNativeService::clearUserKeyAuth(int32_t userId, int32_t userSerial, in clearUserKeyAuth()
688 binder::Status VoldNativeService::fixateNewestUserKeyAuth(int32_t userId) { in fixateNewestUserKeyAuth()
695 binder::Status VoldNativeService::unlockUserKey(int32_t userId, int32_t userSerial, in unlockUserKey()
704 binder::Status VoldNativeService::lockUserKey(int32_t userId) { in lockUserKey()
711 binder::Status VoldNativeService::prepareUserStorage(const std::optional<std::string>& uuid, in prepareUserStorage()
723 binder::Status VoldNativeService::destroyUserStorage(const std::optional<std::string>& uuid, in destroyUserStorage()
734 binder::Status VoldNativeService::prepareSandboxForApp(const std::string& packageName, in prepareSandboxForApp()
740 binder::Status VoldNativeService::destroySandboxForApp(const std::string& packageName, in destroySandboxForApp()
746 binder::Status VoldNativeService::startCheckpoint(int32_t retry) { in startCheckpoint()
753 binder::Status VoldNativeService::needsRollback(bool* _aidl_return) { in needsRollback()
761 binder::Status VoldNativeService::needsCheckpoint(bool* _aidl_return) { in needsCheckpoint()
769 binder::Status VoldNativeService::isCheckpointing(bool* _aidl_return) { in isCheckpointing()
777 binder::Status VoldNativeService::commitChanges() { in commitChanges()
784 binder::Status VoldNativeService::prepareCheckpoint() { in prepareCheckpoint()
791 binder::Status VoldNativeService::restoreCheckpoint(const std::string& mountPoint) { in restoreCheckpoint()
799 binder::Status VoldNativeService::restoreCheckpointPart(const std::string& mountPoint, int count) { in restoreCheckpointPart()
807 binder::Status VoldNativeService::markBootAttempt() { in markBootAttempt()
814 binder::Status VoldNativeService::abortChanges(const std::string& message, bool retry) { in abortChanges()
822 binder::Status VoldNativeService::supportsCheckpoint(bool* _aidl_return) { in supportsCheckpoint()
829 binder::Status VoldNativeService::supportsBlockCheckpoint(bool* _aidl_return) { in supportsBlockCheckpoint()
836 binder::Status VoldNativeService::supportsFileCheckpoint(bool* _aidl_return) { in supportsFileCheckpoint()
843 binder::Status VoldNativeService::resetCheckpoint() { in resetCheckpoint()
851 binder::Status VoldNativeService::incFsEnabled(bool* _aidl_return) { in incFsEnabled()
858 binder::Status VoldNativeService::mountIncFs( in mountIncFs()
883 binder::Status VoldNativeService::unmountIncFs(const std::string& dir) { in unmountIncFs()
890 binder::Status VoldNativeService::bindMount(const std::string& sourceDir, in bindMount()