Home
last modified time | relevance | path

Searched refs:restrictionsIntent (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Settings/src/com/android/settings/users/
DAppRestrictionsFragment.java362 Intent restrictionsIntent = new Intent(Intent.ACTION_GET_RESTRICTION_ENTRIES); in populateApps() local
363 final List<ResolveInfo> receivers = pm.queryBroadcastReceivers(restrictionsIntent, 0); in populateApps()
632 Intent restrictionsIntent = results.getParcelable(CUSTOM_RESTRICTIONS_INTENT); in onReceive() local
633 if (restrictions != null && restrictionsIntent == null) { in onReceive()
639 } else if (restrictionsIntent != null) { in onReceive()
643 assertSafeToStartCustomActivity(restrictionsIntent); in onReceive()
654 restrictionsIntent, requestCode); in onReceive()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/users/
DAppRestrictionsFragment.java436 Intent restrictionsIntent = new Intent(Intent.ACTION_GET_RESTRICTION_ENTRIES); in populateApps() local
437 final List<ResolveInfo> receivers = pm.queryBroadcastReceivers(restrictionsIntent, 0); in populateApps()
732 Intent restrictionsIntent = results != null in onReceive() local
734 if (restrictions != null && restrictionsIntent == null) { in onReceive()
740 } else if (restrictionsIntent != null) { in onReceive()
747 p.setIntent(SafeIntents.forCallback(restrictionsIntent)); in onReceive()