Lines Matching refs:mService

117     private IBluetoothA2dp mService;
128 mService = null;
137 if (mService == null) {
193 if (mService != null) {
195 mService = null;
232 if (mService != null && isEnabled() &&
235 return mService.connect(device);
241 if (mService == null) Log.w(TAG, "Proxy not attached to service");
273 if (mService != null && isEnabled() &&
276 return mService.disconnect(device);
282 if (mService == null) Log.w(TAG, "Proxy not attached to service");
291 if (mService != null && isEnabled()) {
293 return mService.getConnectedDevices();
299 if (mService == null) Log.w(TAG, "Proxy not attached to service");
308 if (mService != null && isEnabled()) {
310 return mService.getDevicesMatchingConnectionStates(states);
316 if (mService == null) Log.w(TAG, "Proxy not attached to service");
325 if (mService != null && isEnabled()
328 return mService.getConnectionState(device);
334 if (mService == null) Log.w(TAG, "Proxy not attached to service");
355 if (mService != null && isEnabled()
362 return mService.setPriority(device, priority);
368 if (mService == null) Log.w(TAG, "Proxy not attached to service");
388 if (mService != null && isEnabled()
391 return mService.getPriority(device);
397 if (mService == null) Log.w(TAG, "Proxy not attached to service");
409 if (mService != null && isEnabled()) {
411 return mService.isAvrcpAbsoluteVolumeSupported();
417 if (mService == null) Log.w(TAG, "Proxy not attached to service");
436 if (mService != null && isEnabled()) {
438 mService.adjustAvrcpAbsoluteVolume(direction);
445 if (mService == null) Log.w(TAG, "Proxy not attached to service");
456 if (mService != null && isEnabled()) {
458 mService.setAvrcpAbsoluteVolume(volume);
465 if (mService == null) Log.w(TAG, "Proxy not attached to service");
476 if (mService != null && isEnabled()
479 return mService.isA2dpPlaying(device);
485 if (mService == null) Log.w(TAG, "Proxy not attached to service");
537 mService = IBluetoothA2dp.Stub.asInterface(service);
545 mService = null;