Home
last modified time | relevance | path

Searched refs:onBind (Results 1 – 25 of 39) sorted by relevance

12

/frameworks/base/docs/html/guide/topics/fundamentals/
Dbound-services.jd66 service, you must implement the {@link android.app.Service#onBind onBind()} callback method. This
84 <p>Although you should usually implement either {@link android.app.Service#onBind onBind()}
108 {@link android.app.Service#onBind onBind()} method to retrieve the {@link android.os.IBinder} only
110 additional clients that bind, without calling {@link android.app.Service#onBind onBind()} again.</p>
116 that your {@link android.app.Service#onBind onBind()} callback method returns. There are a few
133 {@link android.app.Service#onBind onBind()}. The client receives the {@link android.os.Binder} and
201 android.app.Service#onBind onBind()} callback method.</li>
234 public IBinder onBind(Intent intent) {
360 returns to clients from {@link android.app.Service#onBind onBind()}.</li>
407 public IBinder onBind(Intent intent) {
[all …]
Dservices.jd98 android.app.Service#onBind onBind()} to allow binding.</p>
153 <dt>{@link android.app.Service#onBind onBind()}</dt>
162 {@link android.app.Service#onBind onBind()}). If the service is already running, this method is not
340 <li>Provides default implementation of {@link android.app.IntentService#onBind onBind()} that
408 from which you don't need to call the super class is {@link android.app.IntentService#onBind
409 onBind()} (but you only need to implement that if your service allows binding).</p>
487 public IBinder onBind(Intent intent) {
624 android.app.Service#onBind onBind()} callback method to return an {@link android.os.IBinder} that
635 return from the {@link android.app.Service#onBind
636 onBind()} callback method. Once the client receives the {@link android.os.IBinder}, it can begin
[all …]
/frameworks/base/tests/BrowserTestPlugin/src/com/android/testplugin/
DTestPlugin.java26 public IBinder onBind(Intent intent) { in onBind() method in TestPlugin
/frameworks/base/core/tests/coretests/EnabledTestApp/src/com/android/frameworks/coretests/enabled_app/
DEnabledService.java29 public IBinder onBind(Intent intent) { in onBind() method in EnabledService
DDisabledService.java29 public IBinder onBind(Intent intent) { in onBind() method in DisabledService
/frameworks/base/core/tests/coretests/src/android/os/
DMessengerService.java46 public IBinder onBind(Intent intent) { in onBind() method in MessengerService
DBinderThreadPriorityService.java59 public IBinder onBind(Intent intent) { in onBind() method in BinderThreadPriorityService
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
DTakeScreenshotService.java55 public IBinder onBind(Intent intent) { in onBind() method in TakeScreenshotService
/frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/
DReceiverService.java40 public IBinder onBind(Intent intent) { in onBind() method in ReceiverService
DDataVerify.java113 public IBinder onBind(Intent arg0) { in onBind() method in DataVerify
/frameworks/base/docs/html/intl/ja/guide/topics/
Dfundamentals.jd171 …ーネントと対象となるサービスの間の継続中の接続を確立できます。サービスは、<code>{@link android.app.Service#onBind onBind()}</code> 呼び出し…
555 サービスの <code>{@link android.app.Service#onBind onBind()}</code> メソッドは、受け取ったインテント({@code bindService(…
574 …るスレッドのプールから選択されたスレッドで実行されます。たとえば、サービスの {@code onBind()} メソッドはそのサービスのプロセスのメイン スレッドから呼び出されるのに対し、{@co…
825 <p style="margin-left: 2em">{@code IBinder onBind(Intent <i>intent</i>)} <br/>{@code boolean onUnbi…
828onBind onBind()}</code> コールバックには {@code bindService()} に渡された Intent オブジェクトが渡され、<code>{@link androi…
832 …記述していますが、作成された方法に関係なく,すべてのサービスはクライアントからのバインドを許可できます。したがって、どのサービスも {@code onBind()} および{@code onUnb…
/frameworks/base/core/java/android/app/
DIntentService.java145 public IBinder onBind(Intent intent) { in onBind() method in IntentService
DService.java481 public abstract IBinder onBind(Intent intent); in onBind() method in Service
/frameworks/base/core/java/com/android/internal/util/
DAsyncService.java125 public IBinder onBind(Intent intent) { in onBind() method in AsyncService
/frameworks/base/core/java/android/inputmethodservice/
DAbstractInputMethodService.java185 final public IBinder onBind(Intent intent) { in onBind() method in AbstractInputMethodService
/frameworks/base/core/java/android/accessibilityservice/
DAccessibilityService.java281 public final IBinder onBind(Intent intent) { in onBind() method in AccessibilityService
/frameworks/base/test-runner/src/android/test/
DServiceTestCase.java239 IBinder result = mService.onBind(intent); in bindService()
/frameworks/base/core/tests/coretests/src/android/app/activity/
DLocalService.java87 public IBinder onBind(Intent intent) { in onBind() method in LocalService
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DSystemUIService.java108 public IBinder onBind(Intent intent) { in onBind() method in SystemUIService
/frameworks/base/core/java/android/service/textservice/
DSpellCheckerService.java75 public final IBinder onBind(final Intent intent) { in onBind() method in SpellCheckerService
/frameworks/base/core/java/android/widget/
DRemoteViewsService.java232 public IBinder onBind(Intent intent) { in onBind() method in RemoteViewsService
/frameworks/base/docs/html/guide/developing/tools/
Daidl.jd101 android.app.Service#onBind onBind()} to return your implementation of the {@code Stub}
254 android.app.Service#onBind onBind()} to return an instance of your class that implements
266 public IBinder onBind(Intent intent) {
286 {@code mBinder} instance returned by the service's {@link android.app.Service#onBind onBind()}
/frameworks/base/core/java/android/net/
DVpnService.java211 public IBinder onBind(Intent intent) { in onBind() method in VpnService
/frameworks/base/core/java/android/speech/
DRecognitionService.java196 public final IBinder onBind(final Intent intent) { in onBind() method in RecognitionService
/frameworks/base/core/java/com/android/internal/os/storage/
DExternalStorageFormatter.java117 public IBinder onBind(Intent intent) { in onBind() method in ExternalStorageFormatter

12