/frameworks/base/services/java/com/android/server/ |
D | SystemServer.java | 312 mInstaller = mSystemServiceManager.startService(Installer.class); in startBootstrapServices() 315 mActivityManagerService = mSystemServiceManager.startService( in startBootstrapServices() 323 mPowerManagerService = mSystemServiceManager.startService(PowerManagerService.class); in startBootstrapServices() 331 mDisplayManagerService = mSystemServiceManager.startService(DisplayManagerService.class); in startBootstrapServices() 368 mSystemServiceManager.startService(LightsService.class); in startCoreServices() 371 mSystemServiceManager.startService(BatteryService.class); in startCoreServices() 374 mSystemServiceManager.startService(UsageStatsService.class); in startCoreServices() 379 mSystemServiceManager.startService(WebViewUpdateService.class); in startCoreServices() 462 mSystemServiceManager.startService(AlarmManagerService.class); in startOtherServices() 589 mSystemServiceManager.startService(PersistentDataBlockService.class); in startOtherServices() [all …]
|
/frameworks/base/docs/html/training/run-background-service/ |
D | send-request.jd | 40 {@link android.content.Context#startService startService()}. 61 Call {@link android.content.Context#startService startService()} 65 getActivity().startService(mServiceIntent); 74 Once you call {@link android.content.Context#startService startService()},
|
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
D | ServiceTest.java | 201 getContext().startService(new Intent(service).putExtras(bundle)); in startExpectResult() 205 getContext().startService(new Intent(service).putExtras(bundle)); in startExpectResult() 225 getContext().startService(service); in startExpectNoPermission() 240 getContext().startService(service); in bindExpectResult() 275 getContext().startService(service); in bindExpectResult() 305 getContext().startService(service); in bindExpectResult()
|
/frameworks/base/services/core/java/com/android/server/ |
D | SystemServiceManager.java | 53 public SystemService startService(String className) { in startService() method in SystemServiceManager 65 return startService(serviceClass); in startService() 77 public <T extends SystemService> T startService(Class<T> serviceClass) { in startService() method in SystemServiceManager
|
/frameworks/base/docs/html/guide/components/ |
D | services.jd | 65 calling {@link android.content.Context#startService startService()}. Once started, a service 132 requests that the service be started, by calling {@link android.content.Context#startService 133 startService()}. Once this method executes, the service is started and can run in the 156 android.content.Context#startService startService()} (which results in a call to {@link 242 android.content.Context#startService startService()}, resulting in a call to the service's 252 android.content.Context#startService startService()} and passing an {@link android.content.Intent} 259 android.content.Context#startService startService()}. The service receives the intent in {@link 509 android.content.Context#startService startService()}. The Android system calls the service's {@link 515 HelloSevice}) using an explicit intent with {@link android.content.Context#startService 516 startService()}:</p> [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | ServiceMonitor.java | 73 startService(); 210 startService(); in packageIntent() 223 private void startService() { in startService() method in ServiceMonitor 262 startService(); in checkBound()
|
/frameworks/base/docs/html-intl/intl/ja/guide/topics/ |
D | fundamentals.jd | 166 android.content.Context#startService Context.startService()}</code> に Intent オブジェクトを渡します。Android によ… 787 …startService Context.startService()}</code> が呼び出されて開始し、<code>{@link android.content.Context#stopSe… 794 …ードは、完全に分離されているわけではありません。{@code startService()} で開始されたサービスにバインドすることも可能です。たとえば、再生する曲を指定した Intent オブジ… 810 ….app.Service#onStart onStart()}</code> を呼び出したときに始まります。このメソッドには、{@code startService()} に渡された Intent… 818 …startService Context.startService()}</code> または <code>{@link android.content.Context#bindService C… 832 次の図に、サービスのコールバック メソッドを示します。なお、{@code startService()} で作成されたサービスと、{@code bindService()} で作成されたサービスを分… 902 <li><p><b>サービス プロセス</b>は、<code>{@link android.content.Context#startService startService()}</code> メ…
|
/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/ |
D | VoiceInteractionMain.java | 46 startService(new Intent(VoiceInteractionMain.this, MainInteractionService.class));
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | BootReceiver.java | 40 context.startService(loadavg); in onReceive()
|
/frameworks/base/docs/html/tools/testing/ |
D | service_testing.jd | 86 call {@link android.test.ServiceTestCase#startService(Intent) ServiceTestCase.startService()} or 152 {@link android.content.Context#startService(Intent) Context.startService()} or 162 <code>Context.startService()</code>. Only the first call triggers 166 In addition, remember that <code>startService()</code> calls don't
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | WifiScanningService.java | 50 mImpl.startService(getContext()); in onBootPhase()
|
D | RttService.java | 116 public void startService(Context context) { in startService() method in RttService.RttServiceImpl 442 mImpl.startService(getContext()); in onBootPhase()
|
/frameworks/support/v4/java/android/support/v4/content/ |
D | WakefulBroadcastReceiver.java | 89 ComponentName comp = context.startService(intent); in startWakefulService()
|
/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestServicesTests/src/com/android/framework/multidexlegacytestservices/test/ |
D | ServicesTests.java | 50 getInstrumentation().getContext().startService(new Intent(SERVICE_BASE_ACTION + i)); in testStressConcurentFirstLaunch()
|
/frameworks/base/test-runner/src/android/test/ |
D | ServiceTestCase.java | 185 protected void startService(Intent intent) { in startService() method in ServiceTestCase
|
/frameworks/base/core/java/com/android/internal/app/ |
D | ExternalMediaFormatActivity.java | 97 startService(intent); in onClick()
|
/frameworks/testing/uiautomator/utils/SleepUtils/SleepHelper/src/com/android/testing/sleephelper/ |
D | SetAlarm.java | 111 ComponentName cn = getContext().startService(mServceIntent); in connectToAlarmService()
|
/frameworks/base/tests/OneMedia/src/com/android/onemedia/ |
D | PlayerService.java | 80 startService(onCreateServiceIntent()); in onPlaybackStarted()
|
/frameworks/base/packages/FakeOemFeatures/src/com/android/fakeoemfeatures/ |
D | FakeApp.java | 54 startService(new Intent(FakeApp.this, FakeBackgroundService.class));
|
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/ |
D | TrackerActivity.java | 96 startService(new Intent(TrackerActivity.this, in onOptionsItemSelected()
|
/frameworks/base/tests/JobSchedulerTestApp/src/com/android/demo/jobSchedulerApp/ |
D | MainActivity.java | 74 startService(startServiceIntent); in onCreate()
|
/frameworks/base/docs/html/guide/topics/processes/ |
D | process-lifecycle.jd | 77 {@link android.content.Context#startService startService()} method. Though these
|
/frameworks/base/core/java/android/content/ |
D | ContextWrapper.java | 514 public ComponentName startService(Intent service) { in startService() method in ContextWrapper 515 return mBase.startService(service); in startService()
|
/frameworks/base/docs/html/training/scheduling/ |
D | wakelock.jd | 175 This method is comparable to {@link android.content.Context#startService startService()}, except th…
|
/frameworks/base/services/usb/java/com/android/server/usb/ |
D | UsbDebuggingManager.java | 284 if (mContext.startService(intent) != null) { in startConfirmationService()
|