HomeSort by relevance Sort by last modified time
    Searched refs:onStartCommand (Results 1 - 25 of 66) sorted by null

1 2 3

  /packages/experimental/ExampleImsFramework/src/com/android/example/imsframework/
ImsFrameworkService.java 37 public int onStartCommand(Intent intent, int flags, int startId) {
  /packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
ToastService.java 43 public int onStartCommand(Intent intent, int flags, int startId) {
45 return super.onStartCommand(intent, flags, startId);
ProgressService.java 70 public int onStartCommand(Intent intent, int flags, int startId) {
72 return super.onStartCommand(intent, flags, startId);
  /frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/
ReceiverService.java 45 public int onStartCommand(Intent intent, int flags, int startId) {
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
SchedulerService.java 28 public int onStartCommand(Intent intent, int flags, int startId) {
  /packages/services/Telephony/src/com/android/phone/
HfaService.java 39 public int onStartCommand(Intent intent, int flags, int startId) {
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LocalService.java 72 public int onStartCommand(Intent intent, int flags, int startId) {
ForegroundService.java 148 // platform. On 2.0 or later we override onStartCommand() so this
156 public int onStartCommand(Intent intent, int flags, int startId) {
ServiceStartArguments.java 126 public int onStartCommand(Intent intent, int flags, int startId) {
137 // for some reason in onStartCommand().
  /frameworks/base/core/java/android/app/
IntentService.java 85 * {@link #onStartCommand(Intent, int, int)} will return
92 * {@link #onStartCommand(Intent, int, int)} will return
126 * @see android.app.Service#onStartCommand
129 public int onStartCommand(Intent intent, int flags, int startId) {
Service.java 118 * if needed) and then call its {@link #onStartCommand} method with the
123 * calls to onStartCommand()), so no matter how many times it is started a service
130 * onStartCommand(): {@link #START_STICKY} is used for services that are
139 * doing so), but does not call onStartCommand(). The client will receive the
198 * {@link #onCreate onCreate()}, {@link #onStartCommand onStartCommand()},
222 * consequence of this is that if you implement {@link #onStartCommand onStartCommand()}
310 * @deprecated Implement {@link #onStartCommand(Intent, int, int)} instead.
317 * Bits returned by {@link #onStartCommand} describing how to continu
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
AsyncService.java 40 /** The command sent when a onStartCommand is invoked */
57 * The flags returned by onStartCommand on how to restart.
94 public int onStartCommand(Intent intent, int flags, int startId) {
95 if (DBG) Slog.d(TAG, "onStartCommand");
  /packages/apps/Contacts/src/com/android/contacts/
ViewNotificationService.java 40 public int onStartCommand(Intent intent, int flags, final int startId) {
  /cts/hostsidetests/appsecurity/test-apps/UsePermissionDiffCert/src/com/android/cts/usespermissiondiffcertapp/
ReceiveUriService.java 39 public int onStartCommand(Intent intent, int flags, int startId) {
  /frameworks/base/location/java/android/location/
SettingInjectorService.java 155 public final int onStartCommand(Intent intent, int flags, int startId) {
  /frameworks/base/test-runner/src/android/test/
ServiceTestCase.java 198 mService.onStartCommand(intent, 0, mServiceId);
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertReminder.java 61 public int onStartCommand(Intent intent, int flags, int startId) {
  /development/samples/Support4Demos/src/com/example/android/supportv4/content/
LocalServiceBroadcaster.java 139 public int onStartCommand(Intent intent, int flags, int startId) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
ProfileService.java 108 public int onStartCommand(Intent intent, int flags, int startId) {
109 if (DBG) log("onStartCommand()");
  /packages/apps/DeskClock/src/com/android/deskclock/
TimerRingService.java 82 public int onStartCommand(Intent intent, int flags, int startId) {
  /packages/apps/DeskClock/src/com/android/deskclock/alarms/
AlarmService.java 134 public int onStartCommand(Intent intent, int flags, int startId) {
135 Log.v("AlarmService.onStartCommand() with intent: " + intent.toString());
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryService.java 144 public synchronized int onStartCommand(final Intent intent, final int flags,
161 // Since calls to onStartCommand are serialized, the submissions to the executor
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/service/
ControllerService.java 190 public int onStartCommand(Intent intent, int flags, int startId) {
193 if (DEBUG) Log.d(TAG, "Service onStartCommand");
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadService.java 177 public int onStartCommand(Intent intent, int flags, int startId) {
178 int returnValue = super.onStartCommand(intent, flags, startId);
  /development/apps/Development/src/com/android/development/
BadBehaviorActivity.java 64 public int onStartCommand(Intent intent, int flags, int id) {

Completed in 1160 milliseconds

1 2 3