Home
last modified time | relevance | path

Searched refs:scopes (Results 1 – 7 of 7) sorted by relevance

/cts/hostsidetests/devicepolicy/app/DelegateApp/src/com/android/cts/delegate/
DDelegatedScopesReceiverActivity.java92 final List<String> scopes = intent.getStringArrayListExtra(EXTRA_DELEGATION_SCOPES); in handleIntent() local
93 sendScopeReportBroadcast(scopes); in handleIntent()
98 private void sendScopeReportBroadcast(List<String> scopes) { in sendScopeReportBroadcast() argument
101 intent.putExtra(EXTRA_DELEGATION_SCOPES, scopes.toArray(new String[scopes.size()])); in sendScopeReportBroadcast()
DBlockUninstallDelegateTest.java73 final List<String> scopes = mDpm.getDelegatedScopes(null, packageName); in amIBlockUninstallDelegate() local
74 return scopes.contains(DELEGATION_BLOCK_UNINSTALL); in amIBlockUninstallDelegate()
DAppRestrictionsDelegateTest.java168 final List<String> scopes = mDpm.getDelegatedScopes(null, mContext.getPackageName()); in amIAppRestrictionsDelegate() local
169 return scopes.contains(DELEGATION_APP_RESTRICTIONS); in amIAppRestrictionsDelegate()
DCertInstallDelegateTest.java199 final List<String> scopes = mDpm.getDelegatedScopes(null, packageName); in amICertInstallDelegate() local
200 return scopes.contains(DELEGATION_CERT_INSTALL); in amICertInstallDelegate()
/cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/
DDelegationTest.java95 final List<String> scopes = Arrays.asList( in testDelegateReceivesScopeChangedBroadcast() local
105 mDevicePolicyManager.setDelegatedScopes(ADMIN_RECEIVER_COMPONENT, DELEGATE_PKG, scopes); in testDelegateReceivesScopeChangedBroadcast()
113 scopes, reportedScopes); in testDelegateReceivesScopeChangedBroadcast()
119 final List<String> scopes = Arrays.asList( in testCantDelegateToUninstalledPackage() local
125 NON_EXISTENT_PKG, scopes); in testCantDelegateToUninstalledPackage()
DSetPolicyActivity.java113 List<String> scopes = scopeArray == null ? new ArrayList() : Arrays.asList(scopeArray); in handleIntent() local
115 packageName, scopes); in handleIntent()
/cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/
DDeviceAndProfileOwnerTest.java764 private void setDelegatedScopes(String packageName, List<String> scopes) in setDelegatedScopes() argument
768 if (scopes != null && scopes.size() > 0) { in setDelegatedScopes()
769 scopesExtra = "--esa extra-scopes-list " + scopes.get(0); in setDelegatedScopes()
770 for (int i = 1; i < scopes.size(); ++i) { in setDelegatedScopes()
771 scopesExtra += "," + scopes.get(i); in setDelegatedScopes()