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.java96 final List<String> scopes = intent.getStringArrayListExtra(EXTRA_DELEGATION_SCOPES); in handleIntent() local
97 sendScopeReportBroadcast(scopes); in handleIntent()
102 private void sendScopeReportBroadcast(List<String> scopes) { in sendScopeReportBroadcast() argument
105 intent.putExtra(EXTRA_DELEGATION_SCOPES, scopes.toArray(new String[scopes.size()])); in sendScopeReportBroadcast()
106 Log.d(TAG, "Broadcasting " + ACTION_REPORT_SCOPES + " with scopes " + scopes); in sendScopeReportBroadcast()
DBlockUninstallDelegateTest.java59 final List<String> scopes = mDpm.getDelegatedScopes(null, packageName); in amIBlockUninstallDelegate() local
60 return scopes.contains(DELEGATION_BLOCK_UNINSTALL); in amIBlockUninstallDelegate()
DEnableSystemAppDelegateTest.java69 final List<String> scopes = mDpm.getDelegatedScopes(null, packageName); in amIEnableSystemAppDelegate() local
70 return scopes.contains(DELEGATION_ENABLE_SYSTEM_APP); in amIEnableSystemAppDelegate()
DPackageAccessDelegateTest.java87 final List<String> scopes = mDpm.getDelegatedScopes(null, packageName); in amIPackageAccessDelegate() local
88 return scopes.contains(DELEGATION_PACKAGE_ACCESS); in amIPackageAccessDelegate()
DPermissionGrantDelegateTest.java87 final List<String> scopes = mDpm.getDelegatedScopes(null, packageName); in amIPermissionGrantDelegate() local
88 return scopes.contains(DELEGATION_PERMISSION_GRANT); in amIPermissionGrantDelegate()
DCertInstallDelegateTest.java113 final List<String> scopes = mDpm.getDelegatedScopes(null, packageName); in amICertInstallDelegate() local
114 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/
DSetPolicyActivity.java108 List<String> scopes = scopeArray == null ? new ArrayList<>() in handleIntent() local
110 Log.i(TAG, "Setting delegated scopes for package: " + packageName + " " + scopes); in handleIntent()
112 packageName, scopes); in handleIntent()
DDelegationTest.java131 final List<String> scopes = Arrays.asList( in testDelegateReceivesScopeChangedBroadcast() local
141 mDevicePolicyManager.setDelegatedScopes(ADMIN_RECEIVER_COMPONENT, DELEGATE_PKG, scopes); in testDelegateReceivesScopeChangedBroadcast()
149 scopes, reportedScopes); in testDelegateReceivesScopeChangedBroadcast()
155 final List<String> scopes = Arrays.asList( in testCantDelegateToUninstalledPackage() local
161 NON_EXISTENT_PKG, scopes); in testCantDelegateToUninstalledPackage()
/cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/
DDeviceAndProfileOwnerTest.java388 final List<String> scopes = getDelegationScopes(); in testDelegation() local
389 setDelegatedScopes(DELEGATE_APP_PKG, scopes); in testDelegation()
391 ImmutableMap.of("scopes", String.join(",", scopes))); in testDelegation()
1932 protected void setDelegatedScopes(String packageName, List<String> scopes) in setDelegatedScopes() argument
1936 if (scopes != null && scopes.size() > 0) { in setDelegatedScopes()
1937 scopesExtra = "--esa extra-scopes-list " + scopes.get(0); in setDelegatedScopes()
1938 for (int i = 1; i < scopes.size(); ++i) { in setDelegatedScopes()
1939 scopesExtra += "," + scopes.get(i); in setDelegatedScopes()