Lines Matching refs:cb_param
486 esp_hidd_event_data_t cb_param = { in hid_event_handler() local
489 …st_to(dev->event_loop_handle, ESP_HIDD_EVENTS, ESP_HIDD_CONNECT_EVENT, &cb_param, sizeof(esp_hidd_… in hid_event_handler()
497 esp_hidd_event_data_t cb_param = {0}; in hid_event_handler() local
498 cb_param.disconnect.dev = dev->dev; in hid_event_handler()
499 cb_param.disconnect.reason = param->disconnect.reason; in hid_event_handler()
500 …to(dev->event_loop_handle, ESP_HIDD_EVENTS, ESP_HIDD_DISCONNECT_EVENT, &cb_param, sizeof(esp_hidd_… in hid_event_handler()
516 esp_hidd_event_data_t cb_param = {0}; in hid_event_handler() local
517 cb_param.control.dev = dev->dev; in hid_event_handler()
518 cb_param.control.control = dev->control; in hid_event_handler()
519 cb_param.control.map_index = device_index; in hid_event_handler()
520 …st_to(dev->event_loop_handle, ESP_HIDD_EVENTS, ESP_HIDD_CONTROL_EVENT, &cb_param, sizeof(esp_hidd_… in hid_event_handler()
524 esp_hidd_event_data_t cb_param = {}; in hid_event_handler() local
525 cb_param.protocol_mode.dev = dev->dev; in hid_event_handler()
526 cb_param.protocol_mode.protocol_mode = dev->protocol; in hid_event_handler()
527 cb_param.protocol_mode.map_index = device_index; in hid_event_handler()
528 …dev->event_loop_handle, ESP_HIDD_EVENTS, ESP_HIDD_PROTOCOL_MODE_EVENT, &cb_param, sizeof(esp_hidd_… in hid_event_handler()