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

1 2 3

  /development/samples/ApiDemos/src/com/example/android/apis/app/
LocalServiceActivities.java 126 bindService(new Intent(Binding.this,
MessengerServiceActivities.java 116 bindService(new Intent(Binding.this,
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LocalReceiver.java 55 context.bindService(new Intent(context, LocalService.class), sc, 0);
  /frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/
ClientTest.java 163 this.bindService(new Intent(IWapPushManager.class.getName()), conn,
  /frameworks/base/services/java/com/android/server/location/
GeocoderProxy.java 50 mContext.bindService(mIntent, mServiceConnection,
63 mContext.bindService(mIntent, mServiceConnection,
LocationProviderProxy.java 67 mContext.bindService(mIntent, mServiceConnection,
80 mContext.bindService(mIntent, mServiceConnection,
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityDelegateHelper.java 158 context.bindService(intent, this, Context.BIND_AUTO_CREATE);
  /cts/tests/tests/app/src/android/app/cts/
IntentServiceTest.java 119 mContext.bindService(mIntent, conn, Context.BIND_AUTO_CREATE);
ServiceTest.java 178 * The connection is established by calling Context.bindService(),
181 * If the service has not already been launched, bindService() can optionally launch it.
190 mContext.bindService(service, conn, 0);
195 mContext.bindService(service, conn2, 0);
221 mContext.bindService(service, conn, 0);
247 mContext.bindService(service, conn, 0);
267 mContext.bindService(service, conn, 0);
288 mContext.bindService(
305 mContext.bindService(service, conn, Context.BIND_AUTO_CREATE);
836 mContext.bindService(
    [all...]
  /frameworks/base/test-runner/src/android/test/
IsolatedContext.java 80 public boolean bindService(Intent service, ServiceConnection conn, int flags) {
ServiceTestCase.java 52 * test methods calls {@link #startService} or {@link #bindService}. This gives you an
58 * or {@link #bindService ServiceTestCase.bindService()}, the test case calls
61 * {@link android.app.Service#bindService(Intent, ServiceConnection, int)
62 * Service.bindService(Intent, ServiceConnection, int)}, as appropriate. It also stores
86 * startService() or bindService(). The test framework provides a
118 * a test calls {@link #startService} or {@link #bindService}.
143 * by {@link #bindService}.
200 * {@link android.content.Context#bindService(Intent, ServiceConnection, int)
201 * Context.bindService(Intent, ServiceConnection, flags)} with a
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/vcard/
CancelActivity.java 54 bindService(new Intent(CancelActivity.this,
NfcImportVCardActivity.java 210 bindService(intent, this, Context.BIND_AUTO_CREATE);
  /cts/tests/tests/os/src/android/os/cts/
RemoteCallbackListTest.java 68 assertTrue(mContext.bindService(new Intent(ISecondary.class.getName()),
  /frameworks/base/media/java/android/media/
MediaScannerConnection.java 116 mContext.bindService(intent, this, 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()),
  /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();
  /cts/tests/tests/content/src/android/content/cts/
BroadcastReceiverTest.java 339 assertTrue(activity.bindService(intent, msc, Service.BIND_AUTO_CREATE));
  /development/samples/BluetoothHDP/src/com/example/bluetooth/health/
BluetoothHDPActivity.java 280 bindService(intent, mConnection, Context.BIND_AUTO_CREATE);
  /frameworks/base/test-runner/src/android/test/mock/
MockContext.java 332 public boolean bindService(Intent service, ServiceConnection conn, int flags) {
  /packages/apps/Phone/src/com/android/phone/
NetworkSetting.java 235 bindService (new Intent(this, NetworkQueryService.class), mNetworkQueryServiceConnection,
  /frameworks/base/core/java/android/content/
ContextWrapper.java 368 public boolean bindService(Intent service, ServiceConnection conn,
370 return mBase.bindService(service, conn, flags);
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
FrameworkPerfActivity.java 386 bindService(intent, mCurConnection, BIND_AUTO_CREATE|BIND_IMPORTANT);
  /packages/experimental/RpcPerformance/src/com/android/rpc_performance/
ProviderPerfActivity.java 230 bindService(new Intent(this, MiscService.class),
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadService.java 397 bindService(intent, mMediaScannerConnection, BIND_AUTO_CREATE);

Completed in 556 milliseconds

1 2 3