Searched refs:mServiceConnection (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/services/java/com/android/server/location/
H A DGeocoderProxy.java44 private final Object mMutex = new Object(); // synchronizes access to mServiceConnection
45 private Connection mServiceConnection = new Connection(); // never null field in class:GeocoderProxy
50 mContext.bindService(mIntent, mServiceConnection,
61 mContext.unbindService(mServiceConnection);
62 mServiceConnection = new Connection();
63 mContext.bindService(mIntent, mServiceConnection,
96 provider = mServiceConnection.getProvider();
115 provider = mServiceConnection.getProvider();
H A DLocationProviderProxy.java50 private Connection mServiceConnection = new Connection(); // never null field in class:LocationProviderProxy
67 mContext.bindService(mIntent, mServiceConnection,
78 mContext.unbindService(mServiceConnection);
79 mServiceConnection = new Connection();
80 mContext.bindService(mIntent, mServiceConnection,
118 if (mServiceConnection != this) {
171 return mServiceConnection.getCachedAttributes();
258 ILocationProvider provider = mServiceConnection.getProvider();
291 ILocationProvider provider = mServiceConnection.getProvider();
304 ILocationProvider provider = mServiceConnection
[all...]
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeech.java481 private Connection mServiceConnection; field in class:TextToSpeech
564 if (mServiceConnection == null) {
568 return mServiceConnection.runAction(action, errorResult, method, reconnect);
644 mServiceConnection.disconnect();
652 mServiceConnection = null;
1271 if (mServiceConnection != null) {
1273 mServiceConnection.disconnect();
1275 mServiceConnection = this;
1291 if (mServiceConnection == this) {
1292 mServiceConnection
[all...]
/frameworks/base/core/java/android/widget/
H A DRemoteViewsAdapter.java68 private RemoteViewsAdapterServiceConnection mServiceConnection; field in class:RemoteViewsAdapter
163 adapter.mServiceConnection.getRemoteViewsFactory();
738 mServiceConnection = new RemoteViewsAdapterServiceConnection(this);
757 if (mServiceConnection.isConnected()) {
802 IRemoteViewsFactory factory = mServiceConnection.getRemoteViewsFactory();
831 if (!mServiceConnection.isConnected()) return;
832 IRemoteViewsFactory factory = mServiceConnection.getRemoteViewsFactory();
937 boolean isConnected = mServiceConnection.isConnected();
1040 IRemoteViewsFactory factory = mServiceConnection.getRemoteViewsFactory();
1085 if (!mServiceConnection
[all...]
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DLayoutTestsExecutor.java122 private ServiceConnection mServiceConnection = new ServiceConnection() { field in class:LayoutTestsExecutor
312 bindService(new Intent(this, ManagerService.class), mServiceConnection,
555 unbindService(mServiceConnection);

Completed in 1540 milliseconds