Home
last modified time | relevance | path

Searched refs:Intent (Results 1 – 25 of 285) sorted by relevance

12345678910>>...12

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowPendingIntentTest.java16 import android.content.Intent;
39 Intent intent = new Intent(); in getBroadcast_shouldCreateIntentForBroadcast()
54 Intent intent = new Intent(); in getActivity_shouldCreateIntentForBroadcast()
69 Intent[] intents = {new Intent(Intent.ACTION_VIEW), new Intent(Intent.ACTION_PICK)}; in getActivities_shouldCreateIntentForBroadcast()
83 Intent[] intents = {new Intent(Intent.ACTION_VIEW), new Intent(Intent.ACTION_PICK)}; in getActivities_withBundle_shouldCreateIntentForBroadcast()
98 Intent intent = new Intent(); in getService_shouldCreateIntentForBroadcast()
133 Intent intent = new Intent(); in send_shouldFillInIntentData()
138 Intent fillIntent = new Intent().putExtra("TEST", 23); in send_shouldFillInIntentData()
141 Intent i = shadowOf(otherContext).getNextStartedActivity(); in send_shouldFillInIntentData()
149 Intent[] intents = {new Intent("first"), new Intent("second")}; in send_shouldFillInLastIntentData()
[all …]
DShadowIntentTest.java13 import android.content.Intent;
38 Intent intent = new Intent(); in resolveActivityInfo_shouldReturnActivityInfoForExistingActivity()
46 Intent intent = new Intent(); in testGetExtraReturnsNull_whenThereAreNoExtrasAdded()
52 Intent intent = new Intent(); in testStringExtra()
59 Intent intent = new Intent(); in testCharSequenceExtra()
67 Intent intent = new Intent(); in testIntExtra()
75 Intent intent = new Intent(); in testDoubleExtra()
83 Intent intent = new Intent(); in testFloatExtra()
91 Intent intent = new Intent(); in testIntArrayExtra()
102 Intent intent = new Intent(); in testLongArrayExtra()
[all …]
DShadowContextWrapperTest.java17 import android.content.Intent;
54 contextWrapper.sendBroadcast(new Intent("foo")); in registerReceiver_shouldRegisterForAllIntentFilterActions()
58 contextWrapper.sendBroadcast(new Intent("womp")); in registerReceiver_shouldRegisterForAllIntentFilterActions()
61 contextWrapper.sendBroadcast(new Intent("baz")); in registerReceiver_shouldRegisterForAllIntentFilterActions()
73 contextWrapper.sendBroadcast(new Intent("foo")); in sendBroadcast_shouldSendIntentToEveryInterestedReceiver()
77 contextWrapper.sendBroadcast(new Intent("womp")); in sendBroadcast_shouldSendIntentToEveryInterestedReceiver()
80 contextWrapper.sendBroadcast(new Intent("baz")); in sendBroadcast_shouldSendIntentToEveryInterestedReceiver()
89 contextWrapper.sendBroadcast(new Intent("foo")); in sendBroadcast_shouldOnlySendIntentWithMatchingReceiverPermission()
92 contextWrapper.sendBroadcast(new Intent("foo"), null); in sendBroadcast_shouldOnlySendIntentWithMatchingReceiverPermission()
95 contextWrapper.sendBroadcast(new Intent("foo"), "wrongPermission"); in sendBroadcast_shouldOnlySendIntentWithMatchingReceiverPermission()
[all …]
DShadowAlarmManagerTest.java16 import android.content.Intent;
46 PendingIntent.getActivity(activity, 0, new Intent(activity, activity.getClass()), 0)); in set_shouldRegisterAlarm()
55 PendingIntent.getActivity(activity, 0, new Intent(activity, activity.getClass()), 0)); in setAndAllowWhileIdle_shouldRegisterAlarm()
64 PendingIntent.getActivity(activity, 0, new Intent(activity, activity.getClass()), 0)); in setExactAndAllowWhileIdle_shouldRegisterAlarm()
73 PendingIntent.getActivity(activity, 0, new Intent(activity, activity.getClass()), 0)); in setExact_shouldRegisterAlarm_forApi19()
82 PendingIntent.getActivity(activity, 0, new Intent(activity, activity.getClass()), 0)); in setWindow_shouldRegisterAlarm_forApi19()
90 PendingIntent.getActivity(activity, 0, new Intent(activity, activity.getClass()), 0)); in setRepeating_shouldRegisterAlarm()
97 PendingIntent.getActivity(activity, 0, new Intent(activity, activity.getClass()), 0)); in set_shouldReplaceAlarmsWithSameIntentReceiver()
99 PendingIntent.getActivity(activity, 0, new Intent(activity, activity.getClass()), 0)); in set_shouldReplaceAlarmsWithSameIntentReceiver()
106 PendingIntent.getActivity(activity, 0, new Intent(activity, activity.getClass()), 0)); in set_shouldReplaceDuplicates()
[all …]
DShadowPackageManagerTest.java48 import android.content.Intent;
199 Intent intent = new Intent("org.robolectric.ACTION_RECEIVER_PERMISSION_PACKAGE"); in testQueryBroadcastReceiverSucceeds()
214 Intent intent = new Intent("org.robolectric.ACTION_ONE_MORE_PACKAGE"); in testQueryBroadcastReceiverFailsForMissingPackageName()
221 Intent intent = new Intent(); in testQueryBroadcastReceiver_matchAllWithoutIntentFilter()
481 Intent i = new Intent(Intent.ACTION_APP_ERROR, null); in queryIntentActivities_EmptyResult()
482 i.addCategory(Intent.CATEGORY_APP_BROWSER); in queryIntentActivities_EmptyResult()
490 Intent i = new Intent(Intent.ACTION_MAIN, null); in queryIntentActivities_Match()
491 i.addCategory(Intent.CATEGORY_LAUNCHER); in queryIntentActivities_Match()
507 Intent i = new Intent(Intent.ACTION_APP_ERROR, null); in queryIntentActivitiesAsUser_EmptyResult()
508 i.addCategory(Intent.CATEGORY_APP_BROWSER); in queryIntentActivitiesAsUser_EmptyResult()
[all …]
DShadowApplicationTest.java26 import android.content.Intent;
176 RuntimeEnvironment.application.bindService(new Intent(""), service, Context.BIND_AUTO_CREATE); in bindServiceShouldCallOnServiceConnectedWithDefaultValues()
187 RuntimeEnvironment.application.bindService(new Intent(""), service, Context.BIND_AUTO_CREATE); in bindServiceShouldCallOnServiceConnectedWithNullValues()
197 Intent expectedIntent = new Intent("expected"); in bindServiceShouldCallOnServiceConnectedWhenNotPaused()
217 Intent expectedIntent = new Intent("expected"); in unbindServiceShouldCallOnServiceDisconnectedWhenNotPaused()
233 Intent expectedIntent = new Intent("expected"); in unbindServiceAddsEntryToUnboundServicesCollection()
248 Intent expectedIntent = new Intent("refuseToBind"); in declaringServiceUnbindableMakesBindServiceReturnFalse()
264 Intent expectedIntentOne = new Intent("expected_one"); in bindServiceWithMultipleIntentsMapping()
267 Intent expectedIntentTwo = new Intent("expected_two"); in bindServiceWithMultipleIntentsMapping()
284 Intent expectedIntentOne = new Intent("expected_one"); in bindServiceWithMultipleIntentsMappingWithDefault()
[all …]
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DIntentTest.java16 import android.content.Intent;
37 Intent intent = new Intent(); in testStringExtra()
44 Intent intent = new Intent(); in testCharSequenceExtra()
52 Intent intent = new Intent(); in testIntExtra()
60 Intent intent = new Intent(); in testDoubleExtra()
68 Intent intent = new Intent(); in testFloatExtra()
76 Intent intent = new Intent(); in testIntArrayExtra()
87 Intent intent = new Intent(); in testLongArrayExtra()
98 Intent intent = new Intent(); in testSerializableExtra()
109 Intent intent = new Intent(); in testParcelableExtra()
[all …]
DPendingIntentTest.java13 import android.content.Intent;
28 Intent expectedIntent = new Intent(); in shouldGetIntentSender()
37 Intent intent = new Intent(); in getBroadcast__shouldCreateIntentForBroadcast()
49 Intent intent = new Intent(); in getActivity__shouldCreateIntentForBroadcast()
61 Intent intent = new Intent(); in getService__shouldCreateIntentForBroadcast()
73 Intent intent = new Intent(); in send__shouldFillInIntentData()
78 Intent fillIntent = new Intent(); in send__shouldFillInIntentData()
82 Intent i = shadowOf(otherContext).getNextStartedActivity(); in send__shouldFillInIntentData()
90 new Intent("action"), 100); in testEquals()
91 PendingIntent pi2 = PendingIntent.getActivity(null, 99, new Intent("action"), 100); in testEquals()
[all …]
DAlarmManagerTest.java8 import android.content.Intent;
43 …mManager.ELAPSED_REALTIME, 0, PendingIntent.getActivity(activity, 0, new Intent(activity, activity… in shouldSupportSet()
53 … PendingIntent.getActivity(activity, 0, new Intent(activity, activity.getClass()), 0)); in shouldSupportSetRepeating()
60 …mManager.ELAPSED_REALTIME, 0, PendingIntent.getActivity(activity, 0, new Intent(activity, activity… in setShouldReplaceDuplicates()
61 …mManager.ELAPSED_REALTIME, 0, PendingIntent.getActivity(activity, 0, new Intent(activity, activity… in setShouldReplaceDuplicates()
66 …, AlarmManager.INTERVAL_HOUR, PendingIntent.getActivity(activity, 0, new Intent(activity, activity… in setRepeatingShouldReplaceDuplicates()
67 …, AlarmManager.INTERVAL_HOUR, PendingIntent.getActivity(activity, 0, new Intent(activity, activity… in setRepeatingShouldReplaceDuplicates()
76 …PendingIntent pendingIntent = PendingIntent.getActivity(activity, 0, new Intent(activity, activity… in shouldSupportGetNextScheduledAlarm()
89 …PendingIntent pendingIntent = PendingIntent.getActivity(activity, 0, new Intent(activity, activity… in shouldSupportGetNextScheduledAlarmForRepeatingAlarms()
102 …PendingIntent pendingIntent = PendingIntent.getActivity(activity, 0, new Intent(activity, activity… in shouldSupportPeekScheduledAlarm()
[all …]
/external/sl4a/Common/src/com/googlecode/android_scripting/
DIntentBuilders.java22 import android.content.Intent;
37 public static Intent buildTriggerServiceIntent() { in buildTriggerServiceIntent()
38 Intent intent = new Intent(); in buildTriggerServiceIntent()
50 public static Intent buildStartInBackgroundIntent(File script) { in buildStartInBackgroundIntent()
52 Intent intent = new Intent(); in buildStartInBackgroundIntent()
66 public static Intent buildStartInTerminalIntent(File script) { in buildStartInTerminalIntent()
68 Intent intent = new Intent(); in buildStartInTerminalIntent()
82 public static Intent buildStartInterpreterIntent(String interpreterName) { in buildStartInterpreterIntent()
84 Intent intent = new Intent(); in buildStartInterpreterIntent()
100 public static Intent buildInterpreterShortcutIntent(Interpreter interpreter, in buildInterpreterShortcutIntent()
[all …]
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/res/
DRobolectricPackageManagerTest.java14 import android.content.Intent;
65 Intent i = new Intent(Intent.ACTION_MAIN, null); in queryIntentActivities__EmptyResult()
66 i.addCategory(Intent.CATEGORY_LAUNCHER); in queryIntentActivities__EmptyResult()
75 Intent i = new Intent(Intent.ACTION_MAIN, null); in queryIntentActivities__Match()
76 i.addCategory(Intent.CATEGORY_LAUNCHER); in queryIntentActivities__Match()
91 Intent i = new Intent(Intent.ACTION_MAIN, null); in queryBroadcastReceivers__EmptyResult()
92 i.addCategory(Intent.CATEGORY_LAUNCHER); in queryBroadcastReceivers__EmptyResult()
100 Intent i = new Intent(Intent.ACTION_MAIN, null); in queryBroadcastReceivers__Match()
115 Intent i = new Intent(Intent.ACTION_MAIN, null).addCategory(Intent.CATEGORY_LAUNCHER); in resolveActivity__Match()
125 Intent i = new Intent(); in resolveActivity__NoMatch()
[all …]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowIntent.java5 import android.content.Intent;
21 import static android.content.Intent.*;
25 @Implements(Intent.class)
27 @RealObject private Intent realIntent;
53 public void __constructor__(Intent intent) { in __constructor__()
67 public static Intent createChooser(Intent target, CharSequence title) { in createChooser()
68 Intent intent = new Intent(Intent.ACTION_CHOOSER); in createChooser()
69 intent.putExtra(Intent.EXTRA_INTENT, target); in createChooser()
71 intent.putExtra(Intent.EXTRA_TITLE, title); in createChooser()
77 public Intent setAction(String action) { in setAction()
[all …]
DShadowApplication.java9 import android.content.Intent;
74 private List<Intent> startedActivities = new ArrayList<Intent>();
75 private List<Intent> startedServices = new ArrayList<Intent>();
76 private List<Intent> stoppedServies = new ArrayList<Intent>();
77 private List<Intent> broadcastIntents = new ArrayList<Intent>();
80 private Map<String, Intent> stickyIntents = new HashMap<String, Intent>();
172 public void startActivity(Intent intent) { in startActivity()
178 public ComponentName startService(Intent intent) { in startService()
185 public boolean stopService(Intent name) { in stopService()
197 public boolean bindService(Intent intent, final ServiceConnection serviceConnection, int i) { in bindService()
[all …]
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/
DDefaultPackageManagerIntentComparatorTest.java5 import android.content.Intent;
19 assertThat(intentComparator.compare(new Intent(), null)).isEqualTo(1); in validCompareResult()
20 assertThat(intentComparator.compare(null, new Intent())).isEqualTo(-1); in validCompareResult()
22 Intent intent1 = new Intent(); in validCompareResult()
23 Intent intent2 = new Intent(); in validCompareResult()
32 Intent intent1 = new Intent("actionstring0"); in canSustainConcurrentModification()
33 Intent intent2 = new Intent("actionstring1"); in canSustainConcurrentModification()
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
DApplicationManagerFacade.java23 import android.content.Intent;
65 Intent intent = new Intent(Intent.ACTION_MAIN); in getLaunchableApplications()
66 intent.addCategory(Intent.CATEGORY_LAUNCHER); in getLaunchableApplications()
77 Intent intent = new Intent(Intent.ACTION_MAIN); in launch()
84 public Intent launchForResult(@RpcParameter(name = "className") String className) { in launchForResult()
85 Intent intent = new Intent(Intent.ACTION_MAIN); in launchForResult()
93 Intent LaunchIntent = mPackageManager.getLaunchIntentForPackage(name); in appLaunch()
98 public Intent launchForResultWithIntent( in launchForResultWithIntent()
99 @RpcParameter(name = "intent") Intent intent, in launchForResultWithIntent()
109 public Intent createIntentForClassName( in createIntentForClassName()
[all …]
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowPendingIntent.java14 import android.content.Intent;
40 @NonNull private Intent[] savedIntents;
50 Context context, int requestCode, @NonNull Intent intent, int flags) { in getActivity()
51 return create(context, new Intent[] {intent}, Type.ACTIVITY, requestCode, flags); in getActivity()
56 Context context, int requestCode, @NonNull Intent intent, int flags, Bundle options) { in getActivity()
57 return create(context, new Intent[] {intent}, Type.ACTIVITY, requestCode, flags); in getActivity()
62 Context context, int requestCode, @NonNull Intent[] intents, int flags) { in getActivities()
68 Context context, int requestCode, @NonNull Intent[] intents, int flags, Bundle options) { in getActivities()
74 Context context, int requestCode, @NonNull Intent intent, int flags) { in getBroadcast()
75 return create(context, new Intent[] {intent}, Type.BROADCAST, requestCode, flags); in getBroadcast()
[all …]
DShadowApplication.java17 import android.content.Intent;
62 private List<Intent> startedActivities = new ArrayList<>();
63 private List<Intent.FilterComparison> startedServices = new ArrayList<>();
64 private List<Intent.FilterComparison> stoppedServices = new ArrayList<>();
65 private List<Intent> broadcastIntents = new ArrayList<>();
69 private Map<String, Intent> stickyIntents = new LinkedHashMap<>();
81 …private Map<Intent.FilterComparison, ServiceConnectionDataWrapper> serviceConnectionDataForIntent …
169 public void startActivity(Intent intent) { in startActivity()
175 public void startActivity(Intent intent, Bundle options) { in startActivity()
181 public ComponentName startService(Intent intent) { in startService()
[all …]
/external/robolectric-shadows/shadows/supportv4/src/test/java/org/robolectric/shadows/support/v4/
DShadowLocalBroadcastManagerTest.java12 import android.content.Intent;
41 public void onReceive(Context context, Intent intent) { in shouldSendBroadcasts()
47 instance.sendBroadcast(new Intent("com.bar")); in shouldSendBroadcasts()
49 instance.sendBroadcast(new Intent("com.foo")); in shouldSendBroadcasts()
59 public void onReceive(Context context, Intent intent) { in shouldSendBroadcastsWithDataScheme()
67 instance.sendBroadcast(new Intent("com.foo", Uri.parse("ftp://robolectric.org"))); in shouldSendBroadcastsWithDataScheme()
69 instance.sendBroadcast(new Intent("com.foo", Uri.parse("http://robolectric.org"))); in shouldSendBroadcastsWithDataScheme()
79 public void onReceive(Context context, Intent intent) { in shouldUnregisterReceiver()
85 instance.sendBroadcast(new Intent("com.foo")); in shouldUnregisterReceiver()
93 @Override public void onReceive(Context context, Intent intent) { in testGetBroadcastIntents()
[all …]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/matchers/
DStartedMatcher.java6 import android.content.Intent;
14 private final Intent expectedIntent;
18 public StartedMatcher(Intent expectedIntent) { in StartedMatcher()
46Intent actualStartedIntent = shadowOf((ContextWrapper) actualContext).getNextStartedActivity(); in matchesSafely()
67 …public static Intent createIntent(Class<? extends Activity> activityClass, String extraKey, String… in createIntent()
68 Intent intent = createIntent(activityClass); in createIntent()
73 public static Intent createIntent(Class<? extends Activity> activityClass, String action) { in createIntent()
74 Intent intent = createIntent(activityClass); in createIntent()
79 public static Intent createIntent(Class<? extends Activity> activityClass) { in createIntent()
84 public static Intent createIntent(String packageName, Class<? extends Activity> activityClass) { in createIntent()
[all …]
DStartedServiceMatcher.java6 import android.content.Intent;
17 private final Intent expectedIntent;
21 public StartedServiceMatcher(Intent expectedIntent) { in StartedServiceMatcher()
55Intent actualStartedIntent = shadowOf((ContextWrapper) actualContext).getNextStartedService(); in matchesSafely()
87 …public static Intent createIntent(Class<? extends Service> serviceClass, String extraKey, String e… in createIntent()
88 Intent intent = createIntent(serviceClass); in createIntent()
93 public static Intent createIntent(Class<? extends Service> serviceClass, String action) { in createIntent()
94 Intent intent = createIntent(serviceClass); in createIntent()
99 public static Intent createIntent(Class<? extends Service> serviceClass) { in createIntent()
109 public static Intent createIntent(String packageName, Class<? extends Service> serviceClass) { in createIntent()
[all …]
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
DLauncherUtils.java32 import android.content.Intent;
52 Intent intent = new Intent(context, PollingService.class); in launchPollingService()
64 Intent intent = new Intent(context, PollingService.class); in stopPollingService()
71 Intent intent = new Intent(context, EABService.class); in launchEabService()
78 Intent intent = new Intent(context, EABService.class); in stopEabService()
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
DMainActivity.java20 import android.content.Intent;
38 startActivity(new Intent(MainActivity.this, SimplePieChartActivity.class)); in onCreate()
46 startActivity(new Intent(MainActivity.this, DynamicXYPlotActivity.class)); in onCreate()
54 startActivity(new Intent(MainActivity.this, SimpleXYPlotActivity.class)); in onCreate()
62 startActivity(new Intent(MainActivity.this, BarPlotExampleActivity.class)); in onCreate()
70 … startActivity(new Intent(MainActivity.this, OrientationSensorExampleActivity.class)); in onCreate()
78 startActivity(new Intent(MainActivity.this, TimeSeriesActivity.class)); in onCreate()
86 startActivity(new Intent(MainActivity.this, StepChartExampleActivity.class)); in onCreate()
94 startActivity(new Intent(MainActivity.this, TouchZoomExampleActivity.class)); in onCreate()
102 startActivity(new Intent(MainActivity.this, XYRegionExampleActivity.class)); in onCreate()
[all …]
/external/pdfium/third_party/lcms/src/
Dcmssamp.c65 cmsUInt32Number Intent, in BlackPointAsDarkerColorant() argument
80 if (!cmsIsIntentSupported(hInput, Intent, LCMS_USED_AS_INPUT)) { in BlackPointAsDarkerColorant()
113 hLab, TYPE_Lab_DBL, Intent, cmsFLAGS_NOOPTIMIZE|cmsFLAGS_NOCACHE); in BlackPointAsDarkerColorant()
191 …tBlackPoint(cmsCIEXYZ* BlackPoint, cmsHPROFILE hProfile, cmsUInt32Number Intent, cmsUInt32Number d… in cmsDetectBlackPoint() argument
205 if (Intent != INTENT_PERCEPTUAL && in cmsDetectBlackPoint()
206 Intent != INTENT_RELATIVE_COLORIMETRIC && in cmsDetectBlackPoint()
207 Intent != INTENT_SATURATION) { in cmsDetectBlackPoint()
215 (Intent == INTENT_PERCEPTUAL || Intent == INTENT_SATURATION)) { in cmsDetectBlackPoint()
234 Intent == INTENT_RELATIVE_COLORIMETRIC) { in cmsDetectBlackPoint()
267 if (Intent == INTENT_RELATIVE_COLORIMETRIC && in cmsDetectBlackPoint()
[all …]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
DRobolectricPackageManager.java11 import android.content.Intent;
23 private Map<Intent, List<ResolveInfo>> resolveList = new HashMap<Intent, List<ResolveInfo>>();
76 public List<ResolveInfo> queryIntentActivities( Intent intent, int flags ) { in queryIntentActivities()
81 public List<ResolveInfo> queryIntentServices( Intent intent, int flags ) { in queryIntentServices()
86 public List<ResolveInfo> queryBroadcastReceivers(Intent intent, int flags) { in queryBroadcastReceivers()
91 public ResolveInfo resolveActivity(Intent intent, int flags) { in resolveActivity()
97 public ResolveInfo resolveService(Intent intent, int flags) { in resolveService()
101 public void addResolveInfoForIntent( Intent intent, List<ResolveInfo> info ) { in addResolveInfoForIntent()
105 public void addResolveInfoForIntent(Intent intent, ResolveInfo info) { in addResolveInfoForIntent()
115 public Drawable getActivityIcon(Intent intent) { in getActivityIcon()
[all …]
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/
DMockContext.java234 public void startActivity(Intent intent) { in startActivity()
239 public void startActivity(Intent intent, Bundle bundle) { in startActivity()
244 public void startActivities(Intent[] intents) { in startActivities()
249 public void startActivities(Intent[] intents, Bundle bundle) { in startActivities()
254 …public void startIntentSender(IntentSender intentSender, Intent intent, int i, int i1, int i2) thr… in startIntentSender()
259 …public void startIntentSender(IntentSender intentSender, Intent intent, int i, int i1, int i2, Bun… in startIntentSender()
264 public void sendBroadcast(Intent intent) { in sendBroadcast()
269 public void sendBroadcast(Intent intent, String s) { in sendBroadcast()
274 public void sendOrderedBroadcast(Intent intent, String s) { in sendOrderedBroadcast()
279 …public void sendOrderedBroadcast(Intent intent, String s, BroadcastReceiver broadcastReceiver, Han… in sendOrderedBroadcast()
[all …]

12345678910>>...12