Home | History | Annotate | Download | only in delegate

Lines Matching defs:mDpm

67     private DevicePolicyManager mDpm;
76 mDpm = mContext.getSystemService(DevicePolicyManager.class);
93 mDpm.setApplicationRestrictions(null, APP_RESTRICTIONS_TARGET_PKG, null);
98 mDpm.getApplicationRestrictions(null, APP_RESTRICTIONS_TARGET_PKG);
105 mDpm.setApplicationRestrictions(null, APP_RESTRICTIONS_TARGET_PKG, BUNDLE_0);
106 assertBundle0(mDpm.getApplicationRestrictions(null, APP_RESTRICTIONS_TARGET_PKG));
112 mDpm.setApplicationRestrictions(null, APP_RESTRICTIONS_TARGET_PKG, BUNDLE_1);
113 assertBundle1(mDpm.getApplicationRestrictions(null, APP_RESTRICTIONS_TARGET_PKG));
116 mDpm.setApplicationRestrictions(null, APP_RESTRICTIONS_TARGET_PKG, new Bundle());
118 mDpm.getApplicationRestrictions(null, APP_RESTRICTIONS_TARGET_PKG).isEmpty());
163 final List<String> scopes = mDpm.getDelegatedScopes(null, mContext.getPackageName());