Searched defs:admin (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/app/admin/
H A DDeviceAdminReceiver.java17 package android.app.admin;
56 * <a href="{@docRoot}guide/topics/admin/device-admin.html">Device Administration</a>
81 * disabling your admin, by setting the extra field
84 * to the user before they disable your admin.
92 * impact of disabling your admin.
119 * <p>The calling device admin must have requested
135 * <p>The calling device admin must have requested
147 * <p>The calling device admin must have requested
159 * <p>The calling device admin mus
[all...]
H A DDeviceAdminInfo.java17 package android.app.admin;
55 * A type of policy that this device admin can use: limit the passwords
59 * <p>To control this policy, the device admin must have a "limit-password"
65 * A type of policy that this device admin can use: able to watch login
70 * <p>To control this policy, the device admin must have a "watch-login"
76 * A type of policy that this device admin can use: able to reset the
80 * <p>To control this policy, the device admin must have a "reset-password"
86 * A type of policy that this device admin can use: able to force the device
91 * <p>To control this policy, the device admin must have a "force-lock"
97 * A type of policy that this device admin ca
[all...]
H A DDevicePolicyManager.java17 package android.app.admin;
55 * <a href="{@docRoot}guide/topics/admin/device-admin.html">Device Administration</a>
98 * Activity action: send when any policy admin changes a policy.
115 * admin is being added.
203 * @param admin Which {@link DeviceAdminReceiver} this request is associated with. Must be
207 public boolean hasGrantedPolicy(ComponentName admin, int usesPolicy) { argument
210 return mService.hasGrantedPolicy(admin, usesPolicy, UserHandle.myUserId());
289 * <p>The calling device admin must have requested
293 * @param admin Whic
299 setPasswordQuality(ComponentName admin, int quality) argument
315 getPasswordQuality(ComponentName admin) argument
320 getPasswordQuality(ComponentName admin, int userHandle) argument
352 setPasswordMinimumLength(ComponentName admin, int length) argument
368 getPasswordMinimumLength(ComponentName admin) argument
373 getPasswordMinimumLength(ComponentName admin, int userHandle) argument
406 setPasswordMinimumUpperCase(ComponentName admin, int length) argument
428 getPasswordMinimumUpperCase(ComponentName admin) argument
433 getPasswordMinimumUpperCase(ComponentName admin, int userHandle) argument
466 setPasswordMinimumLowerCase(ComponentName admin, int length) argument
488 getPasswordMinimumLowerCase(ComponentName admin) argument
493 getPasswordMinimumLowerCase(ComponentName admin, int userHandle) argument
525 setPasswordMinimumLetters(ComponentName admin, int length) argument
546 getPasswordMinimumLetters(ComponentName admin) argument
551 getPasswordMinimumLetters(ComponentName admin, int userHandle) argument
583 setPasswordMinimumNumeric(ComponentName admin, int length) argument
604 getPasswordMinimumNumeric(ComponentName admin) argument
609 getPasswordMinimumNumeric(ComponentName admin, int userHandle) argument
641 setPasswordMinimumSymbols(ComponentName admin, int length) argument
662 getPasswordMinimumSymbols(ComponentName admin) argument
667 getPasswordMinimumSymbols(ComponentName admin, int userHandle) argument
699 setPasswordMinimumNonLetter(ComponentName admin, int length) argument
720 getPasswordMinimumNonLetter(ComponentName admin) argument
725 getPasswordMinimumNonLetter(ComponentName admin, int userHandle) argument
758 setPasswordHistoryLength(ComponentName admin, int length) argument
787 setPasswordExpirationTimeout(ComponentName admin, long timeout) argument
806 getPasswordExpirationTimeout(ComponentName admin) argument
826 getPasswordExpiration(ComponentName admin) argument
844 getPasswordHistoryLength(ComponentName admin) argument
849 getPasswordHistoryLength(ComponentName admin, int userHandle) argument
932 setMaximumFailedPasswordsForWipe(ComponentName admin, int num) argument
949 getMaximumFailedPasswordsForWipe(ComponentName admin) argument
954 getMaximumFailedPasswordsForWipe(ComponentName admin, int userHandle) argument
1017 setMaximumTimeToLock(ComponentName admin, long timeMs) argument
1033 getMaximumTimeToLock(ComponentName admin) argument
1038 getMaximumTimeToLock(ComponentName admin, int userHandle) argument
1119 setGlobalProxy(ComponentName admin, Proxy proxySpec, List<String> exclusionList ) argument
1274 setStorageEncryption(ComponentName admin, boolean encrypt) argument
1294 getStorageEncryption(ComponentName admin) argument
1413 setCameraDisabled(ComponentName admin, boolean disabled) argument
1429 getCameraDisabled(ComponentName admin) argument
1434 getCameraDisabled(ComponentName admin, int userHandle) argument
1459 setKeyguardDisabledFeatures(ComponentName admin, int which) argument
1477 getKeyguardDisabledFeatures(ComponentName admin) argument
1482 getKeyguardDisabledFeatures(ComponentName admin, int userHandle) argument
1537 getRemoveWarning(ComponentName admin, RemoteCallback result) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DDevicePolicyManagerService.java41 import android.app.admin.DeviceAdminInfo;
42 import android.app.admin.DeviceAdminReceiver;
43 import android.app.admin.DevicePolicyManager;
44 import android.app.admin.IDevicePolicyManager;
147 * Whether or not device admin feature is supported. If it isn't return defaults for all
454 Slog.w(TAG, "Unknown admin tag: " + tag);
676 ActiveAdmin admin = getUserData(userHandle).mAdminMap.get(who);
677 if (admin != null
678 && who.getPackageName().equals(admin.info.getActivityInfo().packageName)
679 && who.getClassName().equals(admin
718 sendAdminCommandLocked(ActiveAdmin admin, String action) argument
722 sendAdminCommandLocked(ActiveAdmin admin, String action, BroadcastReceiver result) argument
[all...]

Completed in 97 milliseconds