HomeSort by relevance Sort by last modified time
    Searched refs:startIntent (Results 1 - 5 of 5) 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);
  /frameworks/base/tests/AppLaunch/src/com/android/tests/applaunch/
AppLaunch.java 174 Intent startIntent = new Intent(intentToResolve);
175 startIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
177 startIntent.setClassName(ri.activityInfo.packageName,
181 mNameToIntent.put(appName, startIntent);
192 Intent startIntent = mNameToIntent.get(appName);
193 if (startIntent == null) {
198 AppLaunchRunnable runnable = new AppLaunchRunnable(startIntent, forceStopBeforeLaunch);
262 Intent startIntent = mNameToIntent.get(appName);
263 if (startIntent != null) {
264 String packageName = startIntent.getComponent().getPackageName()
    [all...]
  /frameworks/base/tests/MemoryUsage/src/com/android/tests/memoryusage/
MemoryUsageTest.java 126 Intent startIntent = new Intent(intentToResolve);
127 startIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
129 startIntent.setClassName(ri.activityInfo.packageName,
131 mNameToIntent.put(ri.loadLabel(pm).toString(), startIntent);
145 Intent startIntent = mNameToIntent.get(appName);
147 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);
  /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 149 milliseconds