Home
last modified time | relevance | path

Searched refs:serviceIntent (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/StatementService/src/com/android/statementservice/
DIntentFilterVerificationReceiver.java81 Intent serviceIntent = new Intent(context, DirectStatementService.class); in onReceive() local
82 serviceIntent.setAction(DirectStatementService.CHECK_ALL_ACTION); in onReceive()
130 serviceIntent.putExtras(extras); in onReceive()
131 context.startService(serviceIntent); in onReceive()
/frameworks/base/tests/OneMedia/src/com/android/onemedia/
DPlayerController.java58 public PlayerController(Activity context, Intent serviceIntent) { in PlayerController() argument
60 if (serviceIntent == null) { in PlayerController()
63 mServiceIntent = serviceIntent; in PlayerController()
/frameworks/base/core/java/android/speech/
DSpeechRecognizer.java270 Intent serviceIntent = new Intent(RecognitionService.SERVICE_INTERFACE); in startListening() local
282serviceIntent.setComponent(ComponentName.unflattenFromString(serviceComponent)); in startListening()
284 serviceIntent.setComponent(mServiceComponent); in startListening()
287 if (!mContext.bindService(serviceIntent, mConnection, Context.BIND_AUTO_CREATE)) { in startListening()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DKeyguardBottomAreaView.java383 Intent serviceIntent = new Intent(); in bindCameraPrewarmService() local
384 serviceIntent.setClassName(targetInfo.packageName, clazz); in bindCameraPrewarmService()
385 serviceIntent.setAction(CameraPrewarmService.ACTION_PREWARM); in bindCameraPrewarmService()
387 if (getContext().bindServiceAsUser(serviceIntent, mPrewarmConnection, in bindCameraPrewarmService()
/frameworks/base/services/core/java/com/android/server/
DTextServicesManagerService.java587 final Intent serviceIntent = new Intent(SpellCheckerService.SERVICE_INTERFACE); in startSpellCheckerServiceInnerLocked() local
588 serviceIntent.setComponent(info.getComponent()); in startSpellCheckerServiceInnerLocked()
592 if (!bindCurrentSpellCheckerService(serviceIntent, connection, in startSpellCheckerServiceInnerLocked()
/frameworks/base/core/java/com/android/internal/app/
DChooserActivity.java350 final Intent serviceIntent = new Intent(ChooserTargetService.SERVICE_INTERFACE) in queryTargetServices() local
375 if (bindServiceAsUser(serviceIntent, conn, BIND_AUTO_CREATE | BIND_NOT_FOREGROUND, in queryTargetServices()
379 + " intent " + serviceIntent); in queryTargetServices()
/frameworks/base/docs/html/google/play/billing/
Dbilling_integrate.jd153 Intent serviceIntent = new Intent("com.android.vending.billing.InAppBillingService.BIND");
154 serviceIntent.setPackage("com.android.vending");
155 bindService(serviceIntent, mServiceConn, Context.BIND_AUTO_CREATE);