Lines Matching refs:first_packet
79 struct packet *first_packet; //fist packet to be delivered to app member
113 struct packet *p = sock->first_packet; in packet_get_head_l()
119 *data = sock->first_packet->data; in packet_get_head_l()
121 *len = sock->first_packet->len; in packet_get_head_l()
122 sock->first_packet = p->next; in packet_get_head_l()
123 if (sock->first_packet) in packet_get_head_l()
124 sock->first_packet->prev = NULL; in packet_get_head_l()
163 p->next = sock->first_packet; in packet_put_head_l()
164 sock->first_packet = p; in packet_put_head_l()
196 sock->first_packet = p; in packet_put_tail_l()
332 sock->first_packet = NULL; in btsock_l2cap_alloc_l()