Home | History | Annotate | Download | only in settingslib

Lines Matching refs:component

71      * @return EnforcedAdmin Object containing the enforced admin component and admin user details,
73 * and profile owner, then the admin component will be set to {@code null} and userId to
137 * @return EnforcedAdmin Object containing the enforced admin component and admin user details,
139 * multiple admins, then the admin component will be set to {@code null} and userId to
218 * @return EnforcedAdmin Object containing the enforced admin component and admin user details,
244 permitted = dpm.isInputMethodPermittedByAdmin(admin.component,
251 permittedByProfileAdmin = dpm.isInputMethodPermittedByAdmin(profileAdmin.component,
297 permitted = dpm.isAccessibilityServicePermittedByAdmin(admin.component,
305 profileAdmin.component, packageName, managedProfileId);
336 * @return EnforcedAdmin Object containing the enforced admin component and admin user details,
367 * @return EnforcedAdmin Object containing the device owner component and
383 * @return EnforcedAdmin Object containing the enforced admin component
385 * multiple device admins, then the admin component will be set to {@code null} and userId to
428 * @return EnforcedAdmin Object containing the enforced admin component and admin user details,
430 * the admin component will be set to {@code null} and userId to {@link UserHandle#USER_NULL}
657 if (admin.component != null) {
658 intent.putExtra(DevicePolicyManager.EXTRA_DEVICE_ADMIN, admin.component);
725 public ComponentName component = null;
731 public EnforcedAdmin(ComponentName component, int userId) {
732 this.component = component;
740 this.component = other.component;
754 if ((component == null && other.component == null) ||
755 (component != null && component.equals(other.component))) {
763 return "EnforcedAdmin{component=" + component + ",userId=" + userId + "}";
770 other.component = component;