Symbol: packet_t
usr.sbin/bluetooth/btpand/bnep.c
181
bnep_recv_extension(packet_t *pkt)
usr.sbin/bluetooth/btpand/bnep.c
45
static bool bnep_recv_extension(packet_t *);
usr.sbin/bluetooth/btpand/bnep.c
55
static bool bnep_pfilter(channel_t *, packet_t *);
usr.sbin/bluetooth/btpand/bnep.c
56
static bool bnep_mfilter(channel_t *, packet_t *);
usr.sbin/bluetooth/btpand/bnep.c
580
packet_t *pkt;
usr.sbin/bluetooth/btpand/bnep.c
635
bnep_send(channel_t *chan, packet_t *pkt)
usr.sbin/bluetooth/btpand/bnep.c
721
bnep_pfilter(channel_t *chan, packet_t *pkt)
usr.sbin/bluetooth/btpand/bnep.c
743
bnep_mfilter(channel_t *chan, packet_t *pkt)
usr.sbin/bluetooth/btpand/bnep.c
87
bnep_recv(packet_t *pkt)
usr.sbin/bluetooth/btpand/btpand.h
105
bool (*send)(channel_t *, packet_t *);
usr.sbin/bluetooth/btpand/btpand.h
106
bool (*recv)(packet_t *);
usr.sbin/bluetooth/btpand/btpand.h
151
packet_t * data;
usr.sbin/bluetooth/btpand/btpand.h
185
bool bnep_send(channel_t *, packet_t *);
usr.sbin/bluetooth/btpand/btpand.h
186
bool bnep_recv(packet_t *);
usr.sbin/bluetooth/btpand/btpand.h
196
void channel_put(channel_t *, packet_t *);
usr.sbin/bluetooth/btpand/btpand.h
202
packet_t * packet_alloc(channel_t *);
usr.sbin/bluetooth/btpand/btpand.h
203
void packet_free(packet_t *);
usr.sbin/bluetooth/btpand/btpand.h
204
void packet_adj(packet_t *, size_t);
usr.sbin/bluetooth/btpand/btpand.h
205
pkthdr_t * pkthdr_alloc(packet_t *);
usr.sbin/bluetooth/btpand/channel.c
204
packet_t *pkt;
usr.sbin/bluetooth/btpand/channel.c
235
channel_dispatch(packet_t *pkt)
usr.sbin/bluetooth/btpand/channel.c
277
channel_put(channel_t *chan, packet_t *pkt)
usr.sbin/bluetooth/btpand/channel.c
48
static void channel_dispatch(packet_t *);
usr.sbin/bluetooth/btpand/packet.c
37
packet_t *
usr.sbin/bluetooth/btpand/packet.c
40
packet_t *pkt;
usr.sbin/bluetooth/btpand/packet.c
42
pkt = malloc(sizeof(packet_t) + chan->mru);
usr.sbin/bluetooth/btpand/packet.c
48
memset(pkt, 0, sizeof(packet_t));
usr.sbin/bluetooth/btpand/packet.c
59
packet_free(packet_t *pkt)
usr.sbin/bluetooth/btpand/packet.c
79
packet_adj(packet_t *pkt, size_t size)
usr.sbin/bluetooth/btpand/packet.c
90
pkthdr_alloc(packet_t *pkt)
usr.sbin/bluetooth/btpand/tap.c
133
tap_send(channel_t *chan, packet_t *pkt)
usr.sbin/bluetooth/btpand/tap.c
155
tap_recv(packet_t *pkt)
usr.sbin/bluetooth/btpand/tap.c
50
static bool tap_send(channel_t *, packet_t *);
usr.sbin/bluetooth/btpand/tap.c
51
static bool tap_recv(packet_t *);