HomeSort by relevance Sort by last modified time
    Searched refs:mServiceConnection (Results 1 - 9 of 9) sorted by null

  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/
BaseBindingActivity.java 39 private ServiceConnection mServiceConnection;
109 if (mServiceConnection == null) {
112 mServiceConnection = new ServiceConnection() {
143 mServiceConnection,
152 if (mServiceConnection != null) {
154 mServiceConnection.onServiceDisconnected(null /*name*/);
155 unbindService(mServiceConnection);
156 mServiceConnection = null;
  /frameworks/base/services/java/com/android/server/location/
GeocoderProxy.java 47 private final Object mMutex = new Object(); // synchronizes access to mServiceConnection
48 private Connection mServiceConnection; // never null after ctor
59 if (mServiceConnection != null) {
60 mContext.unbindService(mServiceConnection);
62 mServiceConnection = new Connection();
64 mContext.bindService(mIntent, mServiceConnection,
97 provider = mServiceConnection.getProvider();
116 provider = mServiceConnection.getProvider();
LocationProviderProxy.java 53 private Connection mServiceConnection; // never null after ctor
76 if (mServiceConnection != null) {
77 mContext.unbindService(mServiceConnection);
79 mServiceConnection = new Connection();
81 mContext.bindService(mIntent, mServiceConnection,
119 if (mServiceConnection != this) {
172 return mServiceConnection.getCachedAttributes();
259 ILocationProvider provider = mServiceConnection.getProvider();
292 ILocationProvider provider = mServiceConnection.getProvider();
305 ILocationProvider provider = mServiceConnection.getProvider()
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
TokenWatcherTest.java 39 private ServiceConnection mServiceConnection;
66 mServiceConnection = new ServiceConnection() {
86 mServiceConnection, Context.BIND_AUTO_CREATE);
102 getContext().unbindService(mServiceConnection);
  /frameworks/base/core/java/android/speech/tts/
TextToSpeech.java 481 private Connection mServiceConnection;
566 if (mServiceConnection == null) {
570 return mServiceConnection.runAction(action, errorResult, method, reconnect);
647 return mServiceConnection.getCallerIdentity();
661 mServiceConnection.disconnect();
669 mServiceConnection = null;
    [all...]
  /frameworks/base/core/java/android/widget/
RemoteViewsAdapter.java 68 private RemoteViewsAdapterServiceConnection mServiceConnection;
165 adapter.mServiceConnection.getRemoteViewsFactory();
743 mServiceConnection = new RemoteViewsAdapterServiceConnection(this);
762 if (mServiceConnection.isConnected()) {
    [all...]
  /frameworks/base/packages/FakeOemFeatures/src/com/android/fakeoemfeatures/
FakeApp.java 65 ServiceConnection mServiceConnection = new ServiceConnection() {
135 bindService(new Intent(this, FakeCoreService.class), mServiceConnection,
  /packages/apps/KeyChain/tests/src/com/android/keychain/tests/
KeyChainServiceTest.java 63 private ServiceConnection mServiceConnection = new ServiceConnection() {
86 mServiceConnection,
96 unbindService(mServiceConnection);
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
LayoutTestsExecutor.java 124 private ServiceConnection mServiceConnection = new ServiceConnection() {
314 bindService(new Intent(this, ManagerService.class), mServiceConnection,
558 unbindService(mServiceConnection);

Completed in 125 milliseconds