Symbol: packet_t
usr.sbin/btpand/bnep.c
180
bnep_recv_extension(packet_t *pkt)
usr.sbin/btpand/bnep.c
39
static bool bnep_recv_extension(packet_t *);
usr.sbin/btpand/bnep.c
49
static bool bnep_pfilter(channel_t *, packet_t *);
usr.sbin/btpand/bnep.c
50
static bool bnep_mfilter(channel_t *, packet_t *);
usr.sbin/btpand/bnep.c
592
packet_t *pkt;
usr.sbin/btpand/bnep.c
651
bnep_send(channel_t *chan, packet_t *pkt)
usr.sbin/btpand/bnep.c
737
bnep_pfilter(channel_t *chan, packet_t *pkt)
usr.sbin/btpand/bnep.c
759
bnep_mfilter(channel_t *chan, packet_t *pkt)
usr.sbin/btpand/bnep.c
81
bnep_recv(packet_t *pkt)
usr.sbin/btpand/btpand.h
133
packet_t * data;
usr.sbin/btpand/btpand.h
169
bool bnep_send(channel_t *, packet_t *);
usr.sbin/btpand/btpand.h
170
bool bnep_recv(packet_t *);
usr.sbin/btpand/btpand.h
180
void channel_put(channel_t *, packet_t *);
usr.sbin/btpand/btpand.h
186
packet_t * packet_alloc(channel_t *);
usr.sbin/btpand/btpand.h
187
void packet_free(packet_t *);
usr.sbin/btpand/btpand.h
188
void packet_adj(packet_t *, size_t);
usr.sbin/btpand/btpand.h
189
pkthdr_t * pkthdr_alloc(packet_t *);
usr.sbin/btpand/btpand.h
88
bool (*send)(channel_t *, packet_t *);
usr.sbin/btpand/btpand.h
89
bool (*recv)(packet_t *);
usr.sbin/btpand/channel.c
187
packet_t *pkt;
usr.sbin/btpand/channel.c
218
channel_dispatch(packet_t *pkt)
usr.sbin/btpand/channel.c
260
channel_put(channel_t *chan, packet_t *pkt)
usr.sbin/btpand/channel.c
42
static void channel_dispatch(packet_t *);
usr.sbin/btpand/packet.c
33
packet_t *
usr.sbin/btpand/packet.c
36
packet_t *pkt;
usr.sbin/btpand/packet.c
38
pkt = malloc(sizeof(packet_t) + chan->mru);
usr.sbin/btpand/packet.c
44
memset(pkt, 0, sizeof(packet_t));
usr.sbin/btpand/packet.c
55
packet_free(packet_t *pkt)
usr.sbin/btpand/packet.c
75
packet_adj(packet_t *pkt, size_t size)
usr.sbin/btpand/packet.c
86
pkthdr_alloc(packet_t *pkt)
usr.sbin/btpand/tap.c
159
tap_send(channel_t *chan, packet_t *pkt)
usr.sbin/btpand/tap.c
181
tap_recv(packet_t *pkt)
usr.sbin/btpand/tap.c
44
static bool tap_send(channel_t *, packet_t *);
usr.sbin/btpand/tap.c
45
static bool tap_recv(packet_t *);