/frameworks/base/docs/html/guide/topics/fundamentals/ |
D | bound-services.jd | 66 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 …]
|
D | services.jd | 98 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/ |
D | TestPlugin.java | 26 public IBinder onBind(Intent intent) { in onBind() method in TestPlugin
|
/frameworks/base/core/tests/coretests/EnabledTestApp/src/com/android/frameworks/coretests/enabled_app/ |
D | EnabledService.java | 29 public IBinder onBind(Intent intent) { in onBind() method in EnabledService
|
D | DisabledService.java | 29 public IBinder onBind(Intent intent) { in onBind() method in DisabledService
|
/frameworks/base/core/tests/coretests/src/android/os/ |
D | MessengerService.java | 46 public IBinder onBind(Intent intent) { in onBind() method in MessengerService
|
D | BinderThreadPriorityService.java | 59 public IBinder onBind(Intent intent) { in onBind() method in BinderThreadPriorityService
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/ |
D | TakeScreenshotService.java | 55 public IBinder onBind(Intent intent) { in onBind() method in TakeScreenshotService
|
/frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/ |
D | ReceiverService.java | 40 public IBinder onBind(Intent intent) { in onBind() method in ReceiverService
|
D | DataVerify.java | 113 public IBinder onBind(Intent arg0) { in onBind() method in DataVerify
|
/frameworks/base/docs/html/intl/ja/guide/topics/ |
D | fundamentals.jd | 171 …ーネントと対象となるサービスの間の継続中の接続を確立できます。サービスは、<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… 828 …onBind onBind()}</code> コールバックには {@code bindService()} に渡された Intent オブジェクトが渡され、<code>{@link androi… 832 …記述していますが、作成された方法に関係なく,すべてのサービスはクライアントからのバインドを許可できます。したがって、どのサービスも {@code onBind()} および{@code onUnb…
|
/frameworks/base/core/java/android/app/ |
D | IntentService.java | 145 public IBinder onBind(Intent intent) { in onBind() method in IntentService
|
D | Service.java | 481 public abstract IBinder onBind(Intent intent); in onBind() method in Service
|
/frameworks/base/core/java/com/android/internal/util/ |
D | AsyncService.java | 125 public IBinder onBind(Intent intent) { in onBind() method in AsyncService
|
/frameworks/base/core/java/android/inputmethodservice/ |
D | AbstractInputMethodService.java | 185 final public IBinder onBind(Intent intent) { in onBind() method in AbstractInputMethodService
|
/frameworks/base/core/java/android/accessibilityservice/ |
D | AccessibilityService.java | 281 public final IBinder onBind(Intent intent) { in onBind() method in AccessibilityService
|
/frameworks/base/test-runner/src/android/test/ |
D | ServiceTestCase.java | 239 IBinder result = mService.onBind(intent); in bindService()
|
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
D | LocalService.java | 87 public IBinder onBind(Intent intent) { in onBind() method in LocalService
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | SystemUIService.java | 108 public IBinder onBind(Intent intent) { in onBind() method in SystemUIService
|
/frameworks/base/core/java/android/service/textservice/ |
D | SpellCheckerService.java | 75 public final IBinder onBind(final Intent intent) { in onBind() method in SpellCheckerService
|
/frameworks/base/core/java/android/widget/ |
D | RemoteViewsService.java | 232 public IBinder onBind(Intent intent) { in onBind() method in RemoteViewsService
|
/frameworks/base/docs/html/guide/developing/tools/ |
D | aidl.jd | 101 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/ |
D | VpnService.java | 211 public IBinder onBind(Intent intent) { in onBind() method in VpnService
|
/frameworks/base/core/java/android/speech/ |
D | RecognitionService.java | 196 public final IBinder onBind(final Intent intent) { in onBind() method in RecognitionService
|
/frameworks/base/core/java/com/android/internal/os/storage/ |
D | ExternalStorageFormatter.java | 117 public IBinder onBind(Intent intent) { in onBind() method in ExternalStorageFormatter
|