Home
last modified time | relevance | path

Searched refs:pkt_type (Results 1 – 11 of 11) sorted by relevance

/packages/modules/Bluetooth/system/stack/avct/
Davct_lcb_act.cc59 uint8_t pkt_type; in avct_lcb_msg_asmbl() local
70 pkt_type = AVCT_PKT_TYPE(p); in avct_lcb_msg_asmbl()
73 if (p_buf->len < avct_lcb_pkt_type_len[pkt_type] || in avct_lcb_msg_asmbl()
80 else if (pkt_type == AVCT_PKT_TYPE_SINGLE) { in avct_lcb_msg_asmbl()
89 else if (pkt_type == AVCT_PKT_TYPE_START) { in avct_lcb_msg_asmbl()
130 log::warn("Pkt type={} out of order", pkt_type); in avct_lcb_msg_asmbl()
156 if (pkt_type == AVCT_PKT_TYPE_END) { in avct_lcb_msg_asmbl()
552 uint8_t pkt_type; in avct_lcb_send_msg() local
564 pkt_type = AVCT_PKT_TYPE_SINGLE; in avct_lcb_send_msg()
566 pkt_type = AVCT_PKT_TYPE_START; in avct_lcb_send_msg()
[all …]
Davct_bcb_act.cc79 uint8_t pkt_type; in avct_bcb_msg_asmbl() local
88 pkt_type = AVCT_PKT_TYPE(p); in avct_bcb_msg_asmbl()
91 if (pkt_type != AVCT_PKT_TYPE_SINGLE) { in avct_bcb_msg_asmbl()
93 log::warn("Pkt type={} - fragmentation not allowed. drop it", pkt_type); in avct_bcb_msg_asmbl()
447 uint8_t pkt_type = AVCT_PKT_TYPE_SINGLE; in avct_bcb_send_msg() local
464 hdr_len = avct_lcb_pkt_type_len[pkt_type]; in avct_bcb_send_msg()
473 AVCT_BUILD_HDR(p, p_data->ul_msg.label, pkt_type, p_data->ul_msg.cr); in avct_bcb_send_msg()
/packages/modules/Bluetooth/system/stack/avdt/
Davdt_msg.cc1058 uint8_t pkt_type; in avdt_msg_send() local
1088 pkt_type = AVDT_PKT_TYPE_SINGLE; in avdt_msg_send()
1096 pkt_type = AVDT_PKT_TYPE_START; in avdt_msg_send()
1116 pkt_type = AVDT_PKT_TYPE_CONT; in avdt_msg_send()
1131 pkt_type = AVDT_PKT_TYPE_END; in avdt_msg_send()
1178 AVDT_MSG_BLD_HDR(p, label, pkt_type, msg); in avdt_msg_send()
1179 if (pkt_type == AVDT_PKT_TYPE_START) { in avdt_msg_send()
1182 if ((pkt_type == AVDT_PKT_TYPE_START) || in avdt_msg_send()
1183 (pkt_type == AVDT_PKT_TYPE_SINGLE)) { in avdt_msg_send()
1206 uint8_t pkt_type; in avdt_msg_asmbl() local
[all …]
/packages/modules/Connectivity/bpf_progs/
Dbpf_net_helpers.h80 return skb->pkt_type == PACKET_HOST || skb->pkt_type == PACKET_BROADCAST || in is_received_skb()
81 skb->pkt_type == PACKET_MULTICAST; in is_received_skb()
DdscpPolicy.c227 if (skb->pkt_type != PACKET_HOST) return TC_ACT_PIPE;
Doffload.c137 if (is_ethernet && (skb->pkt_type != PACKET_HOST)) return TC_ACT_PIPE;
564 if (is_ethernet && (skb->pkt_type != PACKET_HOST)) return TC_ACT_PIPE; in do_forward4()
Doffload@mainline.c137 if (is_ethernet && (skb->pkt_type != PACKET_HOST)) return TC_ACT_PIPE;
564 if (is_ethernet && (skb->pkt_type != PACKET_HOST)) return TC_ACT_PIPE; in do_forward4()
Dclatd.c63 if (is_ethernet && (skb->pkt_type != PACKET_HOST)) return TC_ACT_PIPE; in nat64()
/packages/modules/Bluetooth/system/stack/avrc/
Davrc_api.cc382 uint8_t pkt_type; in avrc_proc_vendor_command() local
389 pkt_type = *(p_data + 1) & AVRC_PKT_TYPE_MASK; in avrc_proc_vendor_command()
391 if (pkt_type != AVRC_PKT_SINGLE) { in avrc_proc_vendor_command()
485 uint8_t pkt_type; in avrc_proc_far_msg() local
495 pkt_type = *(p_data + 1) & AVRC_PKT_TYPE_MASK; in avrc_proc_far_msg()
496 log::verbose("pkt_type {}", pkt_type); in avrc_proc_far_msg()
500 if (pkt_type == AVRC_PKT_SINGLE || pkt_type == AVRC_PKT_START) { in avrc_proc_far_msg()
507 if (pkt_type != AVRC_PKT_SINGLE && cr == AVCT_RSP) { in avrc_proc_far_msg()
509 if (pkt_type == AVRC_PKT_START) { in avrc_proc_far_msg()
559 pkt_type = AVRC_PKT_END; in avrc_proc_far_msg()
[all …]
/packages/modules/Bluetooth/system/stack/bnep/
Dbnep_utils.cc47 uint8_t pkt_type);
508 uint8_t pkt_type) { in bnepu_init_hdr() argument
525 *p++ = pkt_type; in bnepu_init_hdr()
/packages/modules/Bluetooth/system/stack/l2cap/
Dl2c_main.cc73 uint8_t pkt_type = HCID_GET_EVENT(handle); in l2c_rcv_acl_data() local
78 if (pkt_type == L2CAP_PKT_CONTINUE) { in l2c_rcv_acl_data()