Searched defs:resetPassword (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/app/admin/
H A DDevicePolicyManager.java2710 * Flag for {@link #resetPasswordWithToken} and {@link #resetPassword}: don't allow other admins
2716 * Flag for {@link #resetPasswordWithToken} and {@link #resetPassword}: don't ask for user
2767 public boolean resetPassword(String password, int flags) { method in class:DevicePolicyManager
2768 throwIfParentInstance("resetPassword");
2771 return mService.resetPassword(password, flags);
2865 * Unlike {@link #resetPassword}, this API can change the password even before the user or
2892 throwIfParentInstance("resetPassword");
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DDevicePolicyManagerService.java4268 public boolean resetPassword(String passwordOrNull, int flags) throws RemoteException { method in class:DevicePolicyManagerService
4287 throw new SecurityException("resetPassword() is deprecated for DPC targeting O"
4359 Slog.w(LOG_TAG, "resetPassword: password quality 0x"
4369 Slog.w(LOG_TAG, "resetPassword: password length " + password.length()
4376 Slog.w(LOG_TAG, "resetPassword: number of letters " + metrics.letters
4382 Slog.w(LOG_TAG, "resetPassword: number of numerical digits " + metrics.numeric
4390 Slog.w(LOG_TAG, "resetPassword: number of lowercase letters "
4399 Slog.w(LOG_TAG, "resetPassword: number of uppercase letters "
4407 Slog.w(LOG_TAG, "resetPassword: number of special symbols " + metrics.symbols
4414 Slog.w(LOG_TAG, "resetPassword
[all...]

Completed in 55 milliseconds