HomeSort by relevance Sort by last modified time
    Searched refs:bindService (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /development/samples/ApiDemos/tests/src/com/example/android/apis/app/
LocalServiceTest.java 77 IBinder service = bindService(startIntent);
  /cts/tests/tests/app/src/android/app/cts/
ServiceTest.java 173 * The connection is established by calling Context.bindService(),
176 * If the service has not already been launched, bindService() can optionally launch it.
185 mContext.bindService(service, conn, 0);
190 mContext.bindService(service, conn2, 0);
216 mContext.bindService(service, conn, 0);
242 mContext.bindService(service, conn, 0);
262 mContext.bindService(service, conn, 0);
283 mContext.bindService(
300 mContext.bindService(service, conn, Context.BIND_AUTO_CREATE);
454 mContext.bindService(
    [all...]
IntentServiceTest.java 97 mContext.bindService(mIntent, conn, Context.BIND_AUTO_CREATE);
  /frameworks/base/core/tests/coretests/src/android/app/activity/
ServiceTest.java 239 getContext().bindService(service, conn, 0);
244 getContext().bindService(service, conn2, 0);
274 getContext().bindService(service, conn, 0);
304 getContext().bindService(service, conn, 0);
328 getContext().bindService(service, conn, 0);
345 getContext().bindService(
366 getContext().bindService(service, conn, Context.BIND_AUTO_CREATE);
459 getContext().bindService(
LocalReceiver.java 55 context.bindService(new Intent(context, LocalService.class), sc, 0);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
RemoteService.java 364 bindService(new Intent(IRemoteService.class.getName()),
366 bindService(new Intent(ISecondary.class.getName()),
551 if (bindService(new Intent(IRemoteService.class.getName()),
565 if (bindService(new Intent(IRemoteService.class.getName()),
579 if (bindService(new Intent(IRemoteService.class.getName()),
593 if (bindService(new Intent(IRemoteService.class.getName()),
607 if (bindService(new Intent(IRemoteService.class.getName()),
621 if (bindService(new Intent(IRemoteService.class.getName()),
635 if (bindService(new Intent(IRemoteService.class.getName()),
LocalServiceActivities.java 126 bindService(new Intent(Binding.this,
IsolatedService.java 148 if (mActivity.bindService(new Intent(mActivity, mClz),
MessengerServiceActivities.java 116 bindService(new Intent(Binding.this,
  /cts/tests/tests/os/src/android/os/cts/
BinderTest.java 211 getContext().bindService(mService, conn1, 0);
216 getContext().bindService(mService, conn2, 0);
247 getContext().bindService(mService, conn1, 0);
278 getContext().bindService(mService, conn1, 0);
302 getContext().bindService(mService, conn1, 0);
ProcessTest.java 72 getContext().bindService(new Intent(ISecondary.class.getName()),
RemoteCallbackListTest.java 63 assertTrue(mContext.bindService(new Intent(ISecondary.class.getName()),
TokenWatcherTest.java 85 getContext().bindService(new Intent(IEmptyService.class.getName()),
  /frameworks/base/packages/FakeOemFeatures/src/com/android/fakeoemfeatures/
FakeApp.java 135 bindService(new Intent(this, FakeCoreService.class), mServiceConnection,
137 bindService(new Intent(this, FakeCoreService2.class), mServiceConnection2,
139 bindService(new Intent(this, FakeCoreService3.class), mServiceConnection3,
  /packages/apps/KeyChain/tests/src/com/android/keychain/tests/
KeyChainServiceTest.java 79 mIsBoundSupport = bindService(new Intent(IKeyChainServiceTestSupport.class.getName()),
84 private void bindService() {
85 mIsBoundService = bindService(new Intent(IKeyChainService.class.getName()),
195 bindService();
  /frameworks/base/core/tests/coretests/src/android/os/
MessengerTest.java 96 getContext().bindService(new Intent(mContext, MessengerService.class),
BinderThreadPriorityTest.java 63 getContext().bindService(
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
BordeauxManagerService.java 55 context.bindService(new Intent(IBordeauxService.class.getName()),
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/
BaseBindingActivity.java 142 bindService(service,
  /frameworks/base/core/java/android/content/
ContextWrapper.java 392 public boolean bindService(Intent service, ServiceConnection conn,
394 return mBase.bindService(service, conn, flags);
399 public boolean bindService(Intent service, ServiceConnection conn, int flags, int userId) {
400 return mBase.bindService(service, conn, flags, userId);
  /frameworks/base/services/java/com/android/server/location/
GeocoderProxy.java 64 mContext.bindService(mIntent, mServiceConnection,
  /frameworks/base/test-runner/src/android/test/
ServiceTestCase.java 58 * test methods calls {@link #startService} or {@link #bindService}. This gives you an
64 * or {@link #bindService ServiceTestCase.bindService()}, the test case calls
67 * {@link android.app.Service#bindService(Intent, ServiceConnection, int)
68 * Service.bindService(Intent, ServiceConnection, int)}, as appropriate. It also stores
92 * startService() or bindService(). The test framework provides a
124 * a test calls {@link #startService} or {@link #bindService}.
149 * by {@link #bindService}.
206 * {@link android.content.Context#bindService(Intent, ServiceConnection, int)
207 * Context.bindService(Intent, ServiceConnection, flags)} with a
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
ServiceProxy.java 157 return mContext.bindService(mIntent, mConnection, Context.BIND_AUTO_CREATE);
  /frameworks/base/telephony/java/com/android/internal/telephony/
WapPushOverSms.java 83 mOwner.bindService(new Intent(IWapPushManager.class.getName()),
98 mOwner.bindService(new Intent(IWapPushManager.class.getName()),
  /frameworks/base/core/java/android/bluetooth/
BluetoothPbap.java 117 if (!context.bindService(new Intent(IBluetoothPbap.class.getName()), mConnection, 0)) {

Completed in 812 milliseconds

1 2 3 4