Home
last modified time | relevance | path

Searched defs:report (Results 1 – 19 of 19) sorted by relevance

/btstack/port/mtk/LEScan/src/com/bluekitchen/lescan/
H A DMainActivity.java136 GAPEventAdvertisingReport report = (GAPEventAdvertisingReport) packet; in testCharacteristics() local
237 GAPEventAdvertisingReport report = (GAPEventAdvertisingReport) packet; in testAccelerometer() local
398 GAPEventAdvertisingReport report = (GAPEventAdvertisingReport) packet; in testConnectDisconnect() local
501 GAPEventAdvertisingReport report = (GAPEventAdvertisingReport) packet; in trackRSSI() local
588 GAPEventAdvertisingReport report = (GAPEventAdvertisingReport) packet; in queryBatteryLevel() local
/btstack/src/classic/
H A Dhid_host.c1081 uint8_t report[] = {header}; in hid_host_packet_handler() local
1091 … uint8_t report[] = { (HID_MESSAGE_TYPE_HID_CONTROL << 4) | HID_CONTROL_PARAM_SUSPEND }; in hid_host_packet_handler() local
1097 … uint8_t report[] = { (HID_MESSAGE_TYPE_HID_CONTROL << 4) | HID_CONTROL_PARAM_EXIT_SUSPEND }; in hid_host_packet_handler() local
1103 …uint8_t report[] = { (HID_MESSAGE_TYPE_HID_CONTROL << 4) | HID_CONTROL_PARAM_VIRTUAL_CABLE_UNPLUG … in hid_host_packet_handler() local
1111 uint8_t report[] = {header}; in hid_host_packet_handler() local
1121 uint8_t report[2]; in hid_host_packet_handler() local
1152 uint8_t report[] = {header}; in hid_host_packet_handler() local
1378 …16_t hid_cid, hid_report_type_t report_type, uint16_t report_id, const uint8_t * report, uint8_t r… in hid_host_send_set_report()
1434 uint8_t hid_host_send_report(uint16_t hid_cid, uint16_t report_id, const uint8_t * report, uint8_t … in hid_host_send_report()
H A Dhid_device.c113 …mmy_set_report(uint16_t hid_cid, hid_report_type_t report_type, int report_size, uint8_t * report){ in dummy_set_report()
120 …6_t hid_cid, hid_report_type_t report_type, uint16_t report_id, int report_size, uint8_t * report){ in dummy_report_data()
411 …eport_cmd_is_valid(uint16_t cid, hid_report_type_t report_type, int report_size, uint8_t * report){ in hid_device_set_report_cmd_is_valid()
879 …d (*callback)(uint16_t hid_cid, hid_report_type_t report_type, int report_size, uint8_t * report)){ in hid_device_register_set_report_callback()
886 …nt16_t cid, hid_report_type_t report_type, uint16_t report_id, int report_size, uint8_t * report)){ in hid_device_register_report_data_callback()
H A Dhid_host.h128 const uint8_t * report; member
/btstack/src/ble/gatt-service/
H A Dhids_device.c302 hids_device_report_t * report; in att_read_callback() local
380 hids_device_report_t * report; in att_write_callback() local
494 hids_device_report_t * report = &report_storage[assigned_reports_num]; in hids_device_init_with_storage() local
570 …t_report_for_id(hci_con_handle_t con_handle, uint16_t report_id, const uint8_t * report, uint16_t … in hids_device_send_input_report_for_id()
586 uint8_t hids_device_send_input_report(hci_con_handle_t con_handle, const uint8_t * report, uint16_t… in hids_device_send_input_report()
607 …device_send_boot_mouse_input_report(hci_con_handle_t con_handle, const uint8_t * report, uint16_t … in hids_device_send_boot_mouse_input_report()
619 …ice_send_boot_keyboard_input_report(hci_con_handle_t con_handle, const uint8_t * report, uint16_t … in hids_device_send_boot_keyboard_input_report()
H A Dhids_client.c273 hids_client_report_t report = client->reports[i]; in find_report_index_for_report_id_and_report_type() local
389 hids_client_report_t report = client->reports[i]; in hids_client_get_next_report_index() local
426 hids_client_report_t report = client->reports[i]; in hids_client_get_next_notification_report_index() local
1485 …16_t hids_cid, uint8_t report_id, hid_report_type_t report_type, const uint8_t * report, uint8_t r… in hids_client_send_write_report()
H A Dhids_client.h206 const uint8_t * report; member
/btstack/platform/daemon/binding/java/android/com/bluekitchen/lescan/
H A DMainActivity.java112 GAPEventAdvertisingReport report = (GAPEventAdvertisingReport) packet; in testCharacteristics() local
204 GAPEventAdvertisingReport report = (GAPEventAdvertisingReport) packet; in testAccelerometer() local
365 GAPEventAdvertisingReport report = (GAPEventAdvertisingReport) packet; in testConnectDisconnect() local
/btstack/tool/
H A Ddump_gatt.py49 def report(self, prefix): member in gatt_characteristic
60 def report(self, prefix): member in gatt_service
135 def report(self): member in gatt_server
/btstack/example/
H A Dgatt_browser.c154 static void fill_advertising_report_from_packet(advertising_report_t * report, uint8_t *packet){ in fill_advertising_report_from_packet()
179 advertising_report_t report; in handle_hci_event() local
H A Dhog_mouse_demo.c169 uint8_t report[] = { buttons, (uint8_t) dx, (uint8_t) dy }; in send_report() local
H A Dgatt_battery_query.c83 static advertising_report_t report; variable
H A Dgatt_device_information_query.c84 static advertising_report_t report; variable
H A Dhid_host_demo.c217 static void hid_host_handle_interrupt_report(const uint8_t * report, uint16_t report_len){ in hid_host_handle_interrupt_report()
H A Dhog_keyboard_demo.c256 uint8_t report[] = { modifier, 0, keycode, 0, 0, 0, 0, 0}; in send_report() local
H A Dhog_host_demo.c155 static void hid_handle_input_report(uint8_t service_index, const uint8_t * report, uint16_t report_… in hid_handle_input_report()
/btstack/platform/daemon/binding/java/example/com/bluekitchen/
H A DGATTClientTest.java94 GAPEventAdvertisingReport report = (GAPEventAdvertisingReport) packet; in handlePacket() local
211 GAPEventAdvertisingReport report = (GAPEventAdvertisingReport) packet; in handlePacketAcc() local
H A DLEStreamerClient.java76 GAPEventAdvertisingReport report = (GAPEventAdvertisingReport) packet; in handlePacket() local
/btstack/src/
H A Dbtstack_hid_parser.h179 const uint8_t * report; member