Symbol: channel_t
usr.sbin/bluetooth/btpand/bnep.c
230
bnep_recv_control(channel_t *chan, uint8_t *ptr, size_t size, bool isext)
usr.sbin/bluetooth/btpand/bnep.c
287
bnep_recv_control_command_not_understood(channel_t *chan, uint8_t *ptr, size_t size)
usr.sbin/bluetooth/btpand/bnep.c
304
bnep_recv_setup_connection_req(channel_t *chan, uint8_t *ptr, size_t size)
usr.sbin/bluetooth/btpand/bnep.c
378
bnep_recv_setup_connection_rsp(channel_t *chan, uint8_t *ptr, size_t size)
usr.sbin/bluetooth/btpand/bnep.c
406
bnep_recv_filter_net_type_set(channel_t *chan, uint8_t *ptr, size_t size)
usr.sbin/bluetooth/btpand/bnep.c
46
static size_t bnep_recv_control(channel_t *, uint8_t *, size_t, bool);
usr.sbin/bluetooth/btpand/bnep.c
467
bnep_recv_filter_net_type_rsp(channel_t *chan, uint8_t *ptr, size_t size)
usr.sbin/bluetooth/btpand/bnep.c
47
static size_t bnep_recv_control_command_not_understood(channel_t *, uint8_t *, size_t);
usr.sbin/bluetooth/btpand/bnep.c
48
static size_t bnep_recv_setup_connection_req(channel_t *, uint8_t *, size_t);
usr.sbin/bluetooth/btpand/bnep.c
489
bnep_recv_filter_multi_addr_set(channel_t *chan, uint8_t *ptr, size_t size)
usr.sbin/bluetooth/btpand/bnep.c
49
static size_t bnep_recv_setup_connection_rsp(channel_t *, uint8_t *, size_t);
usr.sbin/bluetooth/btpand/bnep.c
50
static size_t bnep_recv_filter_net_type_set(channel_t *, uint8_t *, size_t);
usr.sbin/bluetooth/btpand/bnep.c
51
static size_t bnep_recv_filter_net_type_rsp(channel_t *, uint8_t *, size_t);
usr.sbin/bluetooth/btpand/bnep.c
52
static size_t bnep_recv_filter_multi_addr_set(channel_t *, uint8_t *, size_t);
usr.sbin/bluetooth/btpand/bnep.c
53
static size_t bnep_recv_filter_multi_addr_rsp(channel_t *, uint8_t *, size_t);
usr.sbin/bluetooth/btpand/bnep.c
55
static bool bnep_pfilter(channel_t *, packet_t *);
usr.sbin/bluetooth/btpand/bnep.c
557
bnep_recv_filter_multi_addr_rsp(channel_t *chan, uint8_t *ptr, size_t size)
usr.sbin/bluetooth/btpand/bnep.c
56
static bool bnep_mfilter(channel_t *, packet_t *);
usr.sbin/bluetooth/btpand/bnep.c
578
bnep_send_control(channel_t *chan, unsigned type, ...)
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/btpand.h
105
bool (*send)(channel_t *, packet_t *);
usr.sbin/bluetooth/btpand/btpand.h
130
channel_t * chan; /* source channel */
usr.sbin/bluetooth/btpand/btpand.h
185
bool bnep_send(channel_t *, packet_t *);
usr.sbin/bluetooth/btpand/btpand.h
187
void bnep_send_control(channel_t *, unsigned, ...);
usr.sbin/bluetooth/btpand/btpand.h
191
channel_t * channel_alloc(void);
usr.sbin/bluetooth/btpand/btpand.h
192
bool channel_open(channel_t *, int);
usr.sbin/bluetooth/btpand/btpand.h
193
void channel_close(channel_t *);
usr.sbin/bluetooth/btpand/btpand.h
194
void channel_free(channel_t *);
usr.sbin/bluetooth/btpand/btpand.h
195
void channel_timeout(channel_t *, int);
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/channel.c
118
channel_close(channel_t *chan)
usr.sbin/bluetooth/btpand/channel.c
149
channel_free(channel_t *chan)
usr.sbin/bluetooth/btpand/channel.c
174
channel_t *chan = arg;
usr.sbin/bluetooth/btpand/channel.c
203
channel_t *chan = arg;
usr.sbin/bluetooth/btpand/channel.c
237
channel_t *chan;
usr.sbin/bluetooth/btpand/channel.c
277
channel_put(channel_t *chan, packet_t *pkt)
usr.sbin/bluetooth/btpand/channel.c
297
channel_timeout(channel_t *chan, int to)
usr.sbin/bluetooth/btpand/channel.c
316
channel_t *chan, *next;
usr.sbin/bluetooth/btpand/channel.c
58
channel_t *
usr.sbin/bluetooth/btpand/channel.c
61
channel_t *chan;
usr.sbin/bluetooth/btpand/channel.c
63
chan = malloc(sizeof(channel_t));
usr.sbin/bluetooth/btpand/channel.c
69
memset(chan, 0, sizeof(channel_t));
usr.sbin/bluetooth/btpand/channel.c
80
channel_open(channel_t *chan, int fd)
usr.sbin/bluetooth/btpand/client.c
50
channel_t *chan;
usr.sbin/bluetooth/btpand/packet.c
38
packet_alloc(channel_t *chan)
usr.sbin/bluetooth/btpand/server.c
156
channel_t *chan;
usr.sbin/bluetooth/btpand/tap.c
133
tap_send(channel_t *chan, packet_t *pkt)
usr.sbin/bluetooth/btpand/tap.c
50
static bool tap_send(channel_t *, packet_t *);
usr.sbin/bluetooth/btpand/tap.c
56
channel_t *chan;