Home | History | Annotate | Download | only in bluetooth

Lines Matching refs:service

38  * Service via IPC. Use {@link BluetoothAdapter#getProfileProxy} to get
130 * Bluetooth Service which handles the Pan profile
151 Log.e(TAG, "Could not bind to Bluetooth Pan Service with " + intent);
201 Log.e(TAG, "onBluetoothStateChange: could not bind to PAN service: ",
205 Log.e(TAG, "onBluetoothStateChange: could not bind to PAN service: ",
209 if (VDBG) Log.d(TAG, "Unbinding service...");
241 final IBluetoothPan service = mPanService;
242 if (service != null && isEnabled() && isValidDevice(device)) {
244 return service.connect(device);
250 if (service == null) Log.w(TAG, "Proxy not attached to service");
281 final IBluetoothPan service = mPanService;
282 if (service != null && isEnabled() && isValidDevice(device)) {
284 return service.disconnect(device);
290 if (service == null) Log.w(TAG, "Proxy not attached to service");
300 final IBluetoothPan service = mPanService;
301 if (service != null && isEnabled()) {
303 return service.getConnectedDevices();
309 if (service == null) Log.w(TAG, "Proxy not attached to service");
319 final IBluetoothPan service = mPanService;
320 if (service != null && isEnabled()) {
322 return service.getDevicesMatchingConnectionStates(states);
328 if (service == null) Log.w(TAG, "Proxy not attached to service");
338 final IBluetoothPan service = mPanService;
339 if (service != null && isEnabled() && isValidDevice(device)) {
341 return service.getConnectionState(device);
347 if (service == null) Log.w(TAG, "Proxy not attached to service");
353 final IBluetoothPan service = mPanService;
354 if (service != null && isEnabled()) {
356 service.setBluetoothTethering(value);
365 final IBluetoothPan service = mPanService;
366 if (service != null && isEnabled()) {
368 return service.isTetheringOn();
377 public void onServiceConnected(ComponentName className, IBinder service) {
379 mPanService = IBluetoothPan.Stub.asInterface(Binder.allowBlocking(service));