Home
last modified time | relevance | path

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

/system/bt/btif/src/
Dbtif_sock_l2cap.cc78 struct packet* first_packet; // fist packet to be delivered to app member
124 struct packet* p = sock->first_packet; in packet_get_head_l()
128 if (data) *data = sock->first_packet->data; in packet_get_head_l()
129 if (len) *len = sock->first_packet->len; in packet_get_head_l()
130 sock->first_packet = p->next; in packet_get_head_l()
131 if (sock->first_packet) in packet_get_head_l()
132 sock->first_packet->prev = NULL; in packet_get_head_l()
168 p->next = sock->first_packet; in packet_put_head_l()
169 sock->first_packet = p; in packet_put_head_l()
195 sock->first_packet = p; in packet_put_tail_l()
[all …]