Home
last modified time | relevance | path

Searched refs:scopes (Results 1 – 10 of 10) 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.java71 final List<String> scopes = mDpm.getDelegatedScopes(null, packageName); in amIBlockUninstallDelegate() local
72 return scopes.contains(DELEGATION_BLOCK_UNINSTALL); in amIBlockUninstallDelegate()
DEnableSystemAppDelegateTest.java81 final List<String> scopes = mDpm.getDelegatedScopes(null, packageName); in amIEnableSystemAppDelegate() local
82 return scopes.contains(DELEGATION_ENABLE_SYSTEM_APP); in amIEnableSystemAppDelegate()
DPermissionGrantDelegateTest.java99 final List<String> scopes = mDpm.getDelegatedScopes(null, packageName); in amIPermissionGrantDelegate() local
100 return scopes.contains(DELEGATION_PERMISSION_GRANT); in amIPermissionGrantDelegate()
DPackageAccessDelegateTest.java100 final List<String> scopes = mDpm.getDelegatedScopes(null, packageName); in amIPackageAccessDelegate() local
101 return scopes.contains(DELEGATION_PACKAGE_ACCESS); in amIPackageAccessDelegate()
DCertInstallDelegateTest.java193 final List<String> scopes = mDpm.getDelegatedScopes(null, packageName); in amICertInstallDelegate() local
194 return scopes.contains(DELEGATION_CERT_INSTALL); in amICertInstallDelegate()
DAppRestrictionsDelegateTest.java163 final List<String> scopes = mDpm.getDelegatedScopes(null, mContext.getPackageName()); in amIAppRestrictionsDelegate() local
164 return scopes.contains(DELEGATION_APP_RESTRICTIONS); in amIAppRestrictionsDelegate()
/cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/
DDelegationTest.java107 final List<String> scopes = Arrays.asList( in testDelegateReceivesScopeChangedBroadcast() local
117 mDevicePolicyManager.setDelegatedScopes(ADMIN_RECEIVER_COMPONENT, DELEGATE_PKG, scopes); in testDelegateReceivesScopeChangedBroadcast()
125 scopes, reportedScopes); in testDelegateReceivesScopeChangedBroadcast()
131 final List<String> scopes = Arrays.asList( in testCantDelegateToUninstalledPackage() local
137 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.java378 final List<String> scopes = getDelegationScopes(); in testDelegation() local
379 setDelegatedScopes(DELEGATE_APP_PKG, scopes); in testDelegation()
381 ImmutableMap.of("scopes", String.join(",", scopes))); in testDelegation()
1937 protected void setDelegatedScopes(String packageName, List<String> scopes) in setDelegatedScopes() argument
1941 if (scopes != null && scopes.size() > 0) { in setDelegatedScopes()
1942 scopesExtra = "--esa extra-scopes-list " + scopes.get(0); in setDelegatedScopes()
1943 for (int i = 1; i < scopes.size(); ++i) { in setDelegatedScopes()
1944 scopesExtra += "," + scopes.get(i); in setDelegatedScopes()