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

  /development/samples/ApiDemos/src/com/example/android/apis/app/
RemoteService.java 482 Intent mBindIntent;
552 mBindIntent = new Intent(this, RemoteService.class);
553 mBindIntent.setAction(IRemoteService.class.getName());
563 if (bindService(mBindIntent, conn, Context.BIND_AUTO_CREATE)) {
576 if (bindService(mBindIntent, conn,
590 if (bindService(mBindIntent,
604 if (bindService(mBindIntent, conn,
618 if (bindService(mBindIntent, conn,
632 if (bindService(mBindIntent, conn,
646 if (bindService(mBindIntent, conn
    [all...]
  /frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
VoiceInteractionSessionConnection.java 72 final Intent mBindIntent;
194 mBindIntent = new Intent(VoiceInteractionService.SERVICE_INTERFACE);
195 mBindIntent.setComponent(mSessionComponentName);
196 mBound = mContext.bindServiceAsUser(mBindIntent, this,
230 mFullyBound = mContext.bindServiceAsUser(mBindIntent, mFullConnection,

Completed in 722 milliseconds