Searched refs:passwordType (Results 1 – 4 of 4) sorted by relevance
/system/vold/ |
D | VoldNativeService.cpp | 504 static int fdeEnableInternal(int32_t passwordType, const std::string& password, in fdeEnableInternal() argument 510 if (passwordType == VoldNativeService::PASSWORD_TYPE_DEFAULT) { in fdeEnableInternal() 513 rc = cryptfs_enable(passwordType, password.c_str(), noUi); in fdeEnableInternal() 526 binder::Status VoldNativeService::fdeEnable(int32_t passwordType, const std::string& password, in fdeEnable() argument 531 LOG(DEBUG) << "fdeEnable(" << passwordType << ", *, " << encryptionFlags << ")"; in fdeEnable() 540 std::thread(&fdeEnableInternal, passwordType, password, encryptionFlags).detach(); in fdeEnable() 544 binder::Status VoldNativeService::fdeChangePassword(int32_t passwordType, in fdeChangePassword() argument 549 return translate(cryptfs_changepw(passwordType, password.c_str())); in fdeChangePassword()
|
D | vdc.cpp | 97 int passwordType = android::os::IVold::PASSWORD_TYPE_DEFAULT; in main() local 99 checkStatus(args, vold->fdeEnable(passwordType, "", encryptionFlags)); in main()
|
D | VoldNativeService.h | 91 binder::Status fdeEnable(int32_t passwordType, const std::string& password, 93 binder::Status fdeChangePassword(int32_t passwordType, const std::string& password);
|
/system/vold/binder/android/os/ |
D | IVold.aidl | 70 void fdeEnable(int passwordType, @utf8InCpp String password, int encryptionFlags); in fdeEnable() argument 71 void fdeChangePassword(int passwordType, @utf8InCpp String password); in fdeChangePassword() argument
|