Home | History | Annotate | Download | only in bluetooth

Lines Matching refs:service

36  * <p>BluetoothHidDevice is a proxy object for controlling the Bluetooth HID Device Service via IPC.
397 service...");
402 + "service: ", e);
405 + "service: ", e);
408 Log.d(TAG, "Unbinding service...");
417 public void onServiceConnected(ComponentName className, IBinder service) {
419 mService = IBluetoothHidDevice.Stub.asInterface(service);
458 Log.e(TAG, "Could not bind to Bluetooth HID Device Service with " + intent);
461 Log.d(TAG, "Bound to HID Device Service");
495 final IBluetoothHidDevice service = mService;
496 if (service != null) {
498 return service.getConnectedDevices();
503 Log.w(TAG, "Proxy not attached to service");
512 final IBluetoothHidDevice service = mService;
513 if (service != null) {
515 return service.getDevicesMatchingConnectionStates(states);
520 Log.w(TAG, "Proxy not attached to service");
529 final IBluetoothHidDevice service = mService;
530 if (service != null) {
532 return service.getConnectionState(device);
537 Log.w(TAG, "Proxy not attached to service");
546 * application is registered, the HID Host service will be disabled until it is unregistered.
586 final IBluetoothHidDevice service = mService;
587 if (service != null) {
590 result = service.registerApp(sdp, inQos, outQos, cbw);
595 Log.w(TAG, "Proxy not attached to service");
614 final IBluetoothHidDevice service = mService;
615 if (service != null) {
617 result = service.unregisterApp();
622 Log.w(TAG, "Proxy not attached to service");
639 final IBluetoothHidDevice service = mService;
640 if (service != null) {
642 result = service.sendReport(device, id, data);
647 Log.w(TAG, "Proxy not attached to service");
665 final IBluetoothHidDevice service = mService;
666 if (service != null) {
668 result = service.replyReport(device, type, id, data);
673 Log.w(TAG, "Proxy not attached to service");
689 final IBluetoothHidDevice service = mService;
690 if (service != null) {
692 result = service.reportError(device, error);
697 Log.w(TAG, "Proxy not attached to service");
710 final IBluetoothHidDevice service = mService;
712 if (service != null) {
714 return service.getUserAppName();
719 Log.w(TAG, "Proxy not attached to service");
736 final IBluetoothHidDevice service = mService;
737 if (service != null) {
739 result = service.connect(device);
744 Log.w(TAG, "Proxy not attached to service");
760 final IBluetoothHidDevice service = mService;
761 if (service != null) {
763 result = service.disconnect(device);
768 Log.w(TAG, "Proxy not attached to service");