Home
last modified time | relevance | path

Searched refs:startAsCaller (Results 1 – 9 of 9) sorted by relevance

/packages/modules/IntentResolver/java/src/com/android/intentresolver/chooser/
DSelectableTargetInfo.java55 boolean startAsCaller(Activity activity, Bundle options, int userId); in startAsCaller() method
224 public boolean startAsCaller(Activity activity, Bundle options, int userId) { in SelectableTargetInfo()
335 public boolean startAsCaller(Activity activity, Bundle options, int userId) { in startAsCaller() method in SelectableTargetInfo
336 return mActivityStarter.startAsCaller(activity, options, userId); in startAsCaller()
DMultiDisplayResolveInfo.java122 public boolean startAsCaller(Activity activity, Bundle options, int userId) { in startAsCaller() method in MultiDisplayResolveInfo
123 return mTargetInfos.get(mSelected).startAsCaller(activity, options, userId); in startAsCaller()
DImmutableTargetInfo.java62 boolean startAsCaller(TargetInfo target, Activity activity, Bundle options, int userId); in startAsCaller() method
464 public boolean startAsCaller(Activity activity, Bundle options, int userId) { in startAsCaller() method in ImmutableTargetInfo
466 return mActivityStarter.startAsCaller(this, activity, options, userId); in startAsCaller()
DNotSelectableTargetInfo.java83 public boolean startAsCaller(
DTargetInfo.java140 boolean startAsCaller(Activity activity, Bundle options, int userId); in startAsCaller() method
DDisplayResolveInfo.java206 public boolean startAsCaller(Activity activity, Bundle options, int userId) { in startAsCaller() method in DisplayResolveInfo
/packages/modules/IntentResolver/tests/unit/src/com/android/intentresolver/chooser/
DImmutableTargetInfoTest.kt438 info.startAsCaller(activity, options, 42) in testActivityStarter_correctNumberOfInvocations_startAsCaller()
452 override fun startAsCaller( in testActivityStarter_correctNumberOfInvocations_startAsUser() method
483 info1.startAsCaller(mock(), Bundle(), 42) in testActivityStarter_invokedWithRespectiveTargetInfoAfterCopy()
485 info2.startAsCaller(mock(), Bundle(), 42) in testActivityStarter_invokedWithRespectiveTargetInfoAfterCopy()
502 override fun startAsCaller( in startAsCaller() method in com.android.intentresolver.chooser.TestActivityStarter
/packages/modules/IntentResolver/java/src/com/android/intentresolver/
DResolverActivity.java1421 if (cti.startAsCaller(this, options, user.getIdentifier())) {
DChooserActivity.java1088 if (cti.startAsCaller(this, options, user.getIdentifier())) { in safelyStartActivityInternal()