Searched refs:passwordType (Results 1 – 4 of 4) sorted by relevance
/system/vold/ |
D | vdc.cpp | 98 int passwordType = android::os::IVold::PASSWORD_TYPE_DEFAULT; in main() local 100 checkStatus(args, vold->fdeEnable(passwordType, "", encryptionFlags)); in main()
|
D | VoldNativeService.cpp | 552 static int fdeEnableInternal(int32_t passwordType, const std::string& password, in fdeEnableInternal() argument 558 if (passwordType == VoldNativeService::PASSWORD_TYPE_DEFAULT) { in fdeEnableInternal() 561 rc = cryptfs_enable(passwordType, password.c_str(), noUi); in fdeEnableInternal() 574 binder::Status VoldNativeService::fdeEnable(int32_t passwordType, const std::string& password, in fdeEnable() argument 579 LOG(DEBUG) << "fdeEnable(" << passwordType << ", *, " << encryptionFlags << ")"; in fdeEnable() 588 std::thread(&fdeEnableInternal, passwordType, password, encryptionFlags).detach(); in fdeEnable() 592 binder::Status VoldNativeService::fdeChangePassword(int32_t passwordType, in fdeChangePassword() argument 597 return translate(cryptfs_changepw(passwordType, password.c_str())); in fdeChangePassword()
|
D | VoldNativeService.h | 100 binder::Status fdeEnable(int32_t passwordType, const std::string& password, 102 binder::Status fdeChangePassword(int32_t passwordType, const std::string& password);
|
/system/vold/binder/android/os/ |
D | IVold.aidl | 77 void fdeEnable(int passwordType, @utf8InCpp String password, int encryptionFlags); in fdeEnable() argument 78 void fdeChangePassword(int passwordType, @utf8InCpp String password); in fdeChangePassword() argument
|