Home
last modified time | relevance | path

Searched refs:checkIntent (Results 1 – 6 of 6) sorted by relevance

/frameworks/support/samples/SupportLeanbackJank/src/main/java/com/google/android/leanbackjank/ui/
DVideoActivity.java51 if (checkIntent(getIntent())) { in onCreate()
63 private boolean checkIntent(Intent intent) { in checkIntent() method in VideoActivity
77 checkIntent(intent); in onNewIntent()
/frameworks/base/services/core/java/com/android/server/firewall/
DIntentFirewall.java129 return checkIntent(mActivityResolver, intent.getComponent(), TYPE_ACTIVITY, intent, in checkStartActivity()
135 return checkIntent(mServiceResolver, resolvedService, TYPE_SERVICE, intent, callerUid, in checkService()
141 return checkIntent(mBroadcastResolver, intent.getComponent(), TYPE_BROADCAST, intent, in checkBroadcast()
145 public boolean checkIntent(FirewallIntentResolver resolver, ComponentName resolvedComponent, in checkIntent() method in IntentFirewall
/frameworks/base/services/tests/servicestests/src/com/android/server/
DNetworkScoreServiceTest.java884 verify(mContext).bindServiceAsUser(MockUtils.checkIntent( in testServiceConnection_bind_notBound()
897 when(mContext.bindServiceAsUser(MockUtils.checkIntent( in testServiceConnection_bind_alreadyBound()
908 verify(mContext, times(1)).bindServiceAsUser(MockUtils.checkIntent( in testServiceConnection_bind_alreadyBound()
921 when(mContext.bindServiceAsUser(MockUtils.checkIntent( in testServiceConnection_bindFails()
948 when(mContext.bindServiceAsUser(MockUtils.checkIntent( in testServiceConnection_unbind_alreadyBound()
/frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
DMockUtils.java90 public static Intent checkIntent(final Intent intent) { in checkIntent() method in MockUtils
DDevicePolicyManagerTest.java791 MockUtils.checkIntent(intent), in testSetActivePasswordState_sendToProfiles()
794 MockUtils.checkIntent(intent), in testSetActivePasswordState_sendToProfiles()
831 MockUtils.checkIntent(intent), in testSetActivePasswordState_notSentToParent()
834 MockUtils.checkIntent(intent), in testSetActivePasswordState_notSentToParent()
4279 MockUtils.checkIntent(intent), in setActivePasswordState()
4726 MockUtils.checkIntent(expectedIntent), in verifyDataSharingChangedBroadcast()
/frameworks/base/services/core/java/com/android/server/am/
DTaskRecord.java2432 Intent checkIntent = intent != null ? intent : affinityIntent; in restoreFromXml() local
2434 if (checkIntent != null) { in restoreFromXml()
2438 checkIntent.getComponent().getPackageName(), in restoreFromXml()
2447 Slog.w(TAG, "Updating task #" + taskId + " for " + checkIntent in restoreFromXml()