Home
last modified time | relevance | path

Searched refs:qos (Results 1 – 5 of 5) sorted by relevance

/system/bt/stack/l2cap/
Dl2c_main.cc511 STREAM_TO_UINT8(cfg_info.qos.qos_flags, p); in process_l2cap_cmd()
512 STREAM_TO_UINT8(cfg_info.qos.service_type, p); in process_l2cap_cmd()
513 STREAM_TO_UINT32(cfg_info.qos.token_rate, p); in process_l2cap_cmd()
514 STREAM_TO_UINT32(cfg_info.qos.token_bucket_size, p); in process_l2cap_cmd()
515 STREAM_TO_UINT32(cfg_info.qos.peak_bandwidth, p); in process_l2cap_cmd()
516 STREAM_TO_UINT32(cfg_info.qos.latency, p); in process_l2cap_cmd()
517 STREAM_TO_UINT32(cfg_info.qos.delay_variation, p); in process_l2cap_cmd()
639 STREAM_TO_UINT8(cfg_info.qos.qos_flags, p); in process_l2cap_cmd()
640 STREAM_TO_UINT8(cfg_info.qos.service_type, p); in process_l2cap_cmd()
641 STREAM_TO_UINT32(cfg_info.qos.token_rate, p); in process_l2cap_cmd()
[all …]
Dl2c_utils.cc589 UINT8_TO_STREAM(p, p_cfg->qos.qos_flags); in l2cu_send_peer_config_req()
590 UINT8_TO_STREAM(p, p_cfg->qos.service_type); in l2cu_send_peer_config_req()
591 UINT32_TO_STREAM(p, p_cfg->qos.token_rate); in l2cu_send_peer_config_req()
592 UINT32_TO_STREAM(p, p_cfg->qos.token_bucket_size); in l2cu_send_peer_config_req()
593 UINT32_TO_STREAM(p, p_cfg->qos.peak_bandwidth); in l2cu_send_peer_config_req()
594 UINT32_TO_STREAM(p, p_cfg->qos.latency); in l2cu_send_peer_config_req()
595 UINT32_TO_STREAM(p, p_cfg->qos.delay_variation); in l2cu_send_peer_config_req()
685 UINT8_TO_STREAM(p, p_cfg->qos.qos_flags); in l2cu_send_peer_config_rsp()
686 UINT8_TO_STREAM(p, p_cfg->qos.service_type); in l2cu_send_peer_config_rsp()
687 UINT32_TO_STREAM(p, p_cfg->qos.token_rate); in l2cu_send_peer_config_rsp()
[all …]
/system/bt/stack/hid/
Dhidd_api.cc629 hd_cb.l2cap_intr_cfg.qos.service_type = service_type; in HID_DevSetOutgoingQos()
630 hd_cb.l2cap_intr_cfg.qos.token_rate = token_rate; in HID_DevSetOutgoingQos()
631 hd_cb.l2cap_intr_cfg.qos.token_bucket_size = token_bucket_size; in HID_DevSetOutgoingQos()
632 hd_cb.l2cap_intr_cfg.qos.peak_bandwidth = peak_bandwidth; in HID_DevSetOutgoingQos()
633 hd_cb.l2cap_intr_cfg.qos.latency = latency; in HID_DevSetOutgoingQos()
634 hd_cb.l2cap_intr_cfg.qos.delay_variation = delay_variation; in HID_DevSetOutgoingQos()
Dhidd_conn.cc359 memcpy(&p_cfg->qos, &hd_cb.in_qos, sizeof(FLOW_SPEC)); in hidd_l2cif_config_ind()
422 memcpy(&new_qos.qos, &p_cfg->qos, sizeof(FLOW_SPEC)); in hidd_l2cif_config_cfm()
/system/bt/stack/include/
Dl2c_api.h138 FLOW_SPEC qos; member