HomeSort by relevance Sort by last modified time
    Searched refs:startIntent (Results 1 - 15 of 15) sorted by null

  /development/samples/ApiDemos/tests/src/com/example/android/apis/app/
LocalServiceTest.java 65 Intent startIntent = new Intent();
66 startIntent.setClass(getContext(), LocalService.class);
67 startService(startIntent);
75 Intent startIntent = new Intent();
76 startIntent.setClass(getContext(), LocalService.class);
77 IBinder service = bindService(startIntent);
  /developers/build/prebuilts/gradle/DelayedConfirmation/Wearable/src/main/java/com/example/android/wearable/delayedconfirmation/
WearableMessageListenerService.java 33 Intent startIntent = new Intent(this, MainActivity.class);
34 startIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
35 startActivity(startIntent);
  /developers/samples/android/wearable/wear/DelayedConfirmation/Wearable/src/main/java/com/example/android/wearable/delayedconfirmation/
WearableMessageListenerService.java 33 Intent startIntent = new Intent(this, MainActivity.class);
34 startIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
35 startActivity(startIntent);
  /development/samples/browseable/DelayedConfirmation/Wearable/src/com.example.android.wearable.delayedconfirmation/
WearableMessageListenerService.java 33 Intent startIntent = new Intent(this, MainActivity.class);
34 startIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
35 startActivity(startIntent);
  /packages/apps/Settings/src/com/android/settings/
SetupEncryptionInterstitial.java 42 Intent startIntent = EncryptionInterstitial.createStartIntent(ctx, quality,
44 startIntent.setClass(ctx, SetupEncryptionInterstitial.class);
45 startIntent.putExtra(EXTRA_PREFS_SHOW_BUTTON_BAR, false)
47 return startIntent;
SetupRedactionInterstitial.java 41 Intent startIntent = RedactionInterstitial.createStartIntent(ctx);
42 startIntent.setClass(ctx, SetupRedactionInterstitial.class);
43 startIntent.putExtra(EXTRA_PREFS_SHOW_BUTTON_BAR, false)
45 return startIntent;
  /developers/build/prebuilts/gradle/DataLayer/Wearable/src/main/java/com/example/android/wearable/datalayer/
DataLayerListenerService.java 99 Intent startIntent = new Intent(this, MainActivity.class);
100 startIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
101 startActivity(startIntent);
  /developers/samples/android/wearable/wear/DataLayer/Wearable/src/main/java/com/example/android/wearable/datalayer/
DataLayerListenerService.java 99 Intent startIntent = new Intent(this, MainActivity.class);
100 startIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
101 startActivity(startIntent);
  /development/samples/browseable/DataLayer/Wearable/src/com.example.android.wearable.datalayer/
DataLayerListenerService.java 99 Intent startIntent = new Intent(this, MainActivity.class);
100 startIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
101 startActivity(startIntent);
  /frameworks/base/tests/AppLaunch/src/com/android/tests/applaunch/
AppLaunch.java 190 Intent startIntent = new Intent(intentToResolve);
191 startIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
193 startIntent.setClassName(ri.activityInfo.packageName,
197 mNameToIntent.put(appName, startIntent);
208 Intent startIntent = mNameToIntent.get(appName);
209 if (startIntent == null) {
214 AppLaunchRunnable runnable = new AppLaunchRunnable(startIntent, forceStopBeforeLaunch);
278 Intent startIntent = mNameToIntent.get(appName);
279 if (startIntent != null) {
280 String packageName = startIntent.getComponent().getPackageName()
    [all...]
  /frameworks/base/tests/MemoryUsage/src/com/android/tests/memoryusage/
MemoryUsageTest.java 168 Intent startIntent = new Intent(intentToResolve);
169 startIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
171 startIntent.setClassName(ri.activityInfo.packageName,
173 mNameToIntent.put(ri.loadLabel(pm).toString(), startIntent);
187 Intent startIntent = mNameToIntent.get(appName);
189 AppLaunchRunnable runnable = new AppLaunchRunnable(startIntent);
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
MyRssReader5.java 202 Intent startIntent = new Intent(RssService.class);
203 startIntent.putExtras(startupVals);
204 startService(startIntent);
  /external/chromium_org/sync/android/javatests/src/org/chromium/sync/notifier/
InvalidationServiceTest.java 467 Intent startIntent = createStartIntent();
468 getService().onHandleIntent(startIntent);
493 Intent startIntent = createStartIntent();
494 getService().onHandleIntent(startIntent);
501 getService().onHandleIntent(startIntent);
    [all...]
  /external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/
InvalidationService.java 269 Intent startIntent = AndroidListener.createStartIntent(this, CLIENT_TYPE, clientName);
270 startService(startIntent);
  /frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/
WapPushTest.java 481 Intent startIntent = new Intent();
482 startIntent.setClass(getContext(), WapPushManager.class);
483 IBinder service = bindService(startIntent);
    [all...]

Completed in 716 milliseconds