Home
last modified time | relevance | path

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

1234

/frameworks/base/docs/html/guide/components/
Dbound-services.jd60 service, you must implement the {@link android.app.Service#onBind onBind()} callback method. This
78 <p>Although you should usually implement either {@link android.app.Service#onBind onBind()}
102 {@link android.app.Service#onBind onBind()} method to retrieve the {@link android.os.IBinder} only
104 additional clients that bind, without calling {@link android.app.Service#onBind onBind()} again.</p>
110 that your {@link android.app.Service#onBind onBind()} callback method returns. There are a few
127 {@link android.app.Service#onBind onBind()}. The client receives the {@link android.os.Binder} and
195 android.app.Service#onBind onBind()} callback method.</li>
228 public IBinder onBind(Intent intent) {
354 returns to clients from {@link android.app.Service#onBind onBind()}.</li>
401 public IBinder onBind(Intent intent) {
[all …]
Dservices.jd83 android.app.Service#onBind onBind()} to allow binding.</p>
138 <dt>{@link android.app.Service#onBind onBind()}</dt>
147 {@link android.app.Service#onBind onBind()}). If the service is already running, this method is not
306 <li>Provides default implementation of {@link android.app.IntentService#onBind onBind()} that
374 from which you don't need to call the super class is {@link android.app.IntentService#onBind
375 onBind()} (but you only need to implement that if your service allows binding).</p>
453 public IBinder onBind(Intent intent) {
590 android.app.Service#onBind onBind()} callback method to return an {@link android.os.IBinder} that
601 return from the {@link android.app.Service#onBind
602 onBind()} callback method. Once the client receives the {@link android.os.IBinder}, it can begin
[all …]
/frameworks/base/core/tests/coretests/EnabledTestApp/src/com/android/frameworks/coretests/enabled_app/
DDisabledService.java29 public IBinder onBind(Intent intent) { in onBind() method in DisabledService
DEnabledService.java29 public IBinder onBind(Intent intent) { in onBind() method in EnabledService
/frameworks/base/core/tests/coretests/apks/install_complete_package_info/src/com/android/frameworks/coretests/
DTestService.java27 public IBinder onBind(Intent intent) { in onBind() method in TestService
/frameworks/base/packages/FakeOemFeatures/src/com/android/fakeoemfeatures/
DFakeCoreService.java28 public IBinder onBind(Intent intent) { in onBind() method in FakeCoreService
/frameworks/base/core/java/com/android/internal/backup/
DLocalTransportService.java34 public IBinder onBind(Intent intent) { in onBind() method in LocalTransportService
/frameworks/base/core/java/android/nfc/cardemulation/
DOffHostApduService.java153 public abstract IBinder onBind(Intent intent); in onBind() method in OffHostApduService
/frameworks/base/packages/FusedLocation/src/com/android/location/fused/
DFusedLocationService.java27 public IBinder onBind(Intent intent) { in onBind() method in FusedLocationService
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
DServiceUserTarget.java38 public IBinder onBind(Intent intent) { in onBind() method in ServiceUserTarget
DSingleUserService.java38 public IBinder onBind(Intent intent) { in onBind() method in SingleUserService
/frameworks/testing/uiautomator/utils/SleepUtils/AlarmService/src/com/android/testing/alarmservice/
DAlarmService.java36 public IBinder onBind(Intent intent) { in onBind() method in AlarmService
/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/tests/FrameworkPerf/src/com/android/frameworkperf/
DSchedulerService.java43 public IBinder onBind(Intent intent) { in onBind() method in SchedulerService
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
DRawTexture.java58 protected boolean onBind(GLCanvas canvas) { in onBind() method in RawTexture
/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/packages/SystemUI/src/com/android/systemui/screenshot/
DTakeScreenshotService.java55 public IBinder onBind(Intent intent) { in onBind() method in TakeScreenshotService
/frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
DProxyService.java58 public IBinder onBind(Intent intent) { in onBind() method in ProxyService
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DSystemUIService.java35 public IBinder onBind(Intent intent) { in onBind() method in SystemUIService
/frameworks/base/docs/html-intl/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/com/android/internal/util/
DAsyncService.java125 public IBinder onBind(Intent intent) { in onBind() method in AsyncService
/frameworks/base/core/java/android/app/
DIntentService.java145 public IBinder onBind(Intent intent) { in onBind() method in IntentService
/frameworks/support/v4/java/android/support/v4/app/
DNotificationCompatSideChannelService.java46 public IBinder onBind(Intent intent) { in onBind() method in NotificationCompatSideChannelService

1234