HomeSort by relevance Sort by last modified time
    Searched refs:mServiceConnection (Results 1 - 23 of 23) 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/core/java/com/android/server/telecom/
TelecomLoaderService.java 71 private TelecomServiceConnection mServiceConnection;
90 if (mServiceConnection != null) {
92 mContext.unbindService(mServiceConnection);
93 mServiceConnection = null;
103 mServiceConnection = serviceConnection;
  /packages/services/Telecomm/src/com/android/server/telecom/
ServiceBinder.java 82 if (mServiceConnection == null) {
122 mServiceConnection = this;
131 mServiceConnection = null;
151 private ServiceConnection mServiceConnection;
226 if (mServiceConnection == null) {
231 mContext.unbindService(mServiceConnection);
232 mServiceConnection = null;
  /frameworks/base/media/java/android/media/browse/
MediaBrowser.java 74 private MediaServiceConnection mServiceConnection;
123 if (mServiceConnection != null) {
124 throw new RuntimeException("mServiceConnection should be null. Instead it is "
125 + mServiceConnection);
142 final ServiceConnection thisConnection = mServiceConnection = new MediaServiceConnection();
146 bound = mContext.bindService(intent, mServiceConnection, Context.BIND_AUTO_CREATE);
161 if (thisConnection == mServiceConnection) {
211 if (mServiceConnection != null) {
212 mContext.unbindService(mServiceConnection);
215 mServiceConnection = null
    [all...]
  /external/chromium_org/tools/android/memconsumer/java/src/org/chromium/memconsumer/
MemConsumer.java 29 private ServiceConnection mServiceConnection = new ServiceConnection() {
95 mServiceConnection,
101 unbindService(mServiceConnection);
  /cts/tests/tests/os/src/android/os/cts/
TokenWatcherTest.java 39 private ServiceConnection mServiceConnection;
66 mServiceConnection = new ServiceConnection() {
89 getContext().bindService(secondaryIntent, mServiceConnection, Context.BIND_AUTO_CREATE);
105 getContext().unbindService(mServiceConnection);