Home | History | Annotate | Download | only in bluetooth

Lines Matching refs:service

80                         if (VDBG) Log.d(TAG, "Unbinding service...");
93 if (VDBG) Log.d(TAG, "Binding service...");
129 Log.e(TAG, "Could not bind to Bluetooth MAP MCE Service with " + intent);
144 * Close the connection to the backing service.
175 * currently connected to the Map service.
179 final IBluetoothMapClient service = mService;
180 if (service != null) {
182 return service.isConnected(device);
187 Log.w(TAG, "Proxy not attached to service");
199 final IBluetoothMapClient service = mService;
200 if (service != null) {
202 return service.connect(device);
207 Log.w(TAG, "Proxy not attached to service");
221 final IBluetoothMapClient service = mService;
222 if (service != null && isEnabled() && isValidDevice(device)) {
224 return service.disconnect(device);
229 if (service == null) Log.w(TAG, "Proxy not attached to service");
241 final IBluetoothMapClient service = mService;
242 if (service != null && isEnabled()) {
244 return service.getConnectedDevices();
250 if (service == null) Log.w(TAG, "Proxy not attached to service");
262 final IBluetoothMapClient service = mService;
263 if (service != null && isEnabled()) {
265 return service.getDevicesMatchingConnectionStates(states);
271 if (service == null) Log.w(TAG, "Proxy not attached to service");
283 final IBluetoothMapClient service = mService;
284 if (service != null && isEnabled() && isValidDevice(device)) {
286 return service.getConnectionState(device);
292 if (service == null) Log.w(TAG, "Proxy not attached to service");
307 final IBluetoothMapClient service = mService;
308 if (service != null && isEnabled() && isValidDevice(device)) {
314 return service.setPriority(device, priority);
320 if (service == null) Log.w(TAG, "Proxy not attached to service");
336 final IBluetoothMapClient service = mService;
337 if (service != null && isEnabled() && isValidDevice(device)) {
339 return service.getPriority(device);
345 if (service == null) Log.w(TAG, "Proxy not attached to service");
364 final IBluetoothMapClient service = mService;
365 if (service != null && isEnabled() && isValidDevice(device)) {
367 return service.sendMessage(device, contacts, message, sentIntent, deliveredIntent);
384 final IBluetoothMapClient service = mService;
385 if (service != null && isEnabled() && isValidDevice(device)) {
387 return service.getUnreadMessages(device);
397 public void onServiceConnected(ComponentName className, IBinder service) {
399 mService = IBluetoothMapClient.Stub.asInterface(service);