/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/ |
D | bluetooth_qa.rs | 36 fn get_hid_report(&self, addr: RawAddress, report_type: BthhReportType, report_id: u8); in get_hid_report() 39 fn set_hid_report(&self, addr: RawAddress, report_type: BthhReportType, report: String); in set_hid_report() 151 fn get_hid_report(&self, addr: RawAddress, report_type: BthhReportType, report_id: u8) { in get_hid_report() 154 let _ = txl.send(Message::QaGetHidReport(addr, report_type, report_id)).await; in get_hid_report() 157 fn set_hid_report(&self, addr: RawAddress, report_type: BthhReportType, report: String) { in set_hid_report() 160 let _ = txl.send(Message::QaSetHidReport(addr, report_type, report)).await; in set_hid_report()
|
D | lib.rs | 508 Message::QaGetHidReport(addr, report_type, report_id) => { in dispatch() 511 report_type, in dispatch() 516 Message::QaSetHidReport(addr, report_type, report) => { in dispatch() 519 report_type, in dispatch()
|
D | bluetooth.rs | 294 report_type: BthhReportType, in get_hid_report() 302 report_type: BthhReportType, in set_hid_report() 1057 report_type: BthhReportType, in get_hid_report_internal() 1064 report_type, in get_hid_report_internal() 1074 report_type: BthhReportType, in set_hid_report_internal() 1082 report_type, in set_hid_report_internal() 3219 report_type: BthhReportType, in get_hid_report() 3222 self.get_hid_report_internal(addr, report_type, report_id) in get_hid_report() 3228 report_type: BthhReportType, in set_hid_report() 3231 self.set_hid_report_internal(addr, report_type, report) in set_hid_report()
|
/packages/modules/Bluetooth/floss/pandora/floss/ |
D | qa_client.py | 408 def get_hid_report(self, addr, report_type, report_id): argument 419 self.proxy().GetHIDReport(addr, report_type, report_id) 423 def set_hid_report(self, addr, report_type, report): argument 434 self.proxy().SetHIDReport(addr, report_type, report)
|
/packages/modules/AdServices/adservices/service-core/resources/ |
D | cobalt_registry.textpb | 48 report_type: FLEETWIDE_OCCURRENCE_COUNTS 59 report_type: FLEETWIDE_OCCURRENCE_COUNTS 81 report_type: FLEETWIDE_OCCURRENCE_COUNTS 102 report_type: FLEETWIDE_OCCURRENCE_COUNTS 123 report_type: FLEETWIDE_OCCURRENCE_COUNTS 1950 report_type: STRING_COUNTS 1963 report_type: STRING_COUNTS 2239 report_type: STRING_COUNTS 2253 report_type: STRING_COUNTS 2392 report_type: STRING_COUNTS [all …]
|
/packages/modules/Bluetooth/system/bta/include/ |
D | bta_hd_api.h | 94 uint8_t report_type; member 100 uint8_t report_type; member
|
/packages/modules/Bluetooth/floss/pandora/server/ |
D | hid.py | 67 if request.report_type not in iter(floss_enums.BthhReportType): 70 if not self.bluetooth.set_hid_report(address, request.report_type, request.report):
|
D | bluetooth.py | 326 def set_hid_report(self, addr, report_type, report): argument 327 return self.qa_client.set_hid_report(addr, report_type, report)
|
/packages/modules/Bluetooth/system/gd/rust/linux/service/src/ |
D | iface_bluetooth_qa.rs | 55 fn get_hid_report(&self, addr: RawAddress, report_type: BthhReportType, report_id: u8) { in get_hid_report() 59 fn set_hid_report(&self, addr: RawAddress, report_type: BthhReportType, report: String) { in set_hid_report()
|
D | iface_bluetooth.rs | 1079 report_type: BthhReportType, in get_hid_report() 1089 report_type: BthhReportType, in set_hid_report()
|
/packages/modules/Bluetooth/system/gd/rust/topshim/src/profiles/ |
D | hid_host.rs | 388 report_type: BthhReportType, in get_report() 399 bindings::bthh_report_type_t::from(report_type), in get_report() 411 report_type: BthhReportType, in set_report() 422 bindings::bthh_report_type_t::from(report_type), in set_report()
|
/packages/modules/Bluetooth/pandora/interfaces/pandora_experimental/ |
D | hid.proto | 22 HidReportType report_type = 2; field
|
/packages/modules/Bluetooth/android/pandora/mmi2grpc/mmi2grpc/ |
D | hid.py | 154 report_type=HID_REPORT_TYPE_OUTPUT,
|
/packages/modules/Bluetooth/system/btif/src/ |
D | btif_hd.cc | 236 HAL_CBACK(bt_hd_callbacks, get_report_cb, p_data->get_report.report_type, in btif_hd_upstreams_evt() 241 HAL_CBACK(bt_hd_callbacks, set_report_cb, p_data->set_report.report_type, in btif_hd_upstreams_evt()
|
/packages/modules/Bluetooth/android/app/jni/ |
D | com_android_bluetooth_hid_device.cpp | 364 int report_type = (type & 0x03); in replyReportNative() local 368 sHiddIf->send_report((bthd_report_type_t)report_type, id, size, buf); in replyReportNative()
|
/packages/modules/Bluetooth/system/bta/hd/ |
D | bta_hd_act.cc | 571 ret.report_type = *p_buf & HID_PAR_REP_TYPE_MASK; in bta_hd_get_report_act() 617 ret.report_type = *p_buf & HID_PAR_REP_TYPE_MASK; in bta_hd_set_report_act()
|
/packages/modules/Bluetooth/system/gd/rust/linux/client/src/ |
D | command_handler.rs | 1994 let report_type = match &get_arg(args, 2)?[..] { in cmd_hid() localVariable 2008 report_type, in cmd_hid() 2014 let report_type = match &get_arg(args, 2)?[..] { in cmd_hid() localVariable 2026 report_type, in cmd_hid()
|
D | dbus_iface.rs | 1088 report_type: BthhReportType, in get_hid_report() 1098 report_type: BthhReportType, in set_hid_report() 2553 fn get_hid_report(&self, addr: RawAddress, report_type: BthhReportType, report_id: u8) { in get_hid_report() 2557 fn set_hid_report(&self, addr: RawAddress, report_type: BthhReportType, report: String) { in set_hid_report()
|
/packages/modules/AdServices/adservices/libraries/cobalt/proto/ |
D | report_definition.proto | 404 ReportType report_type = 3; field
|