Symbol: channel_t
usr.sbin/btpand/bnep.c
229
bnep_recv_control(channel_t *chan, uint8_t *ptr, size_t size, bool isext)
usr.sbin/btpand/bnep.c
286
bnep_recv_control_command_not_understood(channel_t *chan, uint8_t *ptr, size_t size)
usr.sbin/btpand/bnep.c
303
bnep_recv_setup_connection_req(channel_t *chan, uint8_t *ptr, size_t size)
usr.sbin/btpand/bnep.c
381
bnep_recv_setup_connection_rsp(channel_t *chan, uint8_t *ptr, size_t size)
usr.sbin/btpand/bnep.c
40
static size_t bnep_recv_control(channel_t *, uint8_t *, size_t, bool);
usr.sbin/btpand/bnep.c
41
static size_t bnep_recv_control_command_not_understood(channel_t *, uint8_t *, size_t);
usr.sbin/btpand/bnep.c
411
bnep_recv_filter_net_type_set(channel_t *chan, uint8_t *ptr, size_t size)
usr.sbin/btpand/bnep.c
42
static size_t bnep_recv_setup_connection_req(channel_t *, uint8_t *, size_t);
usr.sbin/btpand/bnep.c
43
static size_t bnep_recv_setup_connection_rsp(channel_t *, uint8_t *, size_t);
usr.sbin/btpand/bnep.c
44
static size_t bnep_recv_filter_net_type_set(channel_t *, uint8_t *, size_t);
usr.sbin/btpand/bnep.c
45
static size_t bnep_recv_filter_net_type_rsp(channel_t *, uint8_t *, size_t);
usr.sbin/btpand/bnep.c
46
static size_t bnep_recv_filter_multi_addr_set(channel_t *, uint8_t *, size_t);
usr.sbin/btpand/bnep.c
47
static size_t bnep_recv_filter_multi_addr_rsp(channel_t *, uint8_t *, size_t);
usr.sbin/btpand/bnep.c
476
bnep_recv_filter_net_type_rsp(channel_t *chan, uint8_t *ptr, size_t size)
usr.sbin/btpand/bnep.c
49
static bool bnep_pfilter(channel_t *, packet_t *);
usr.sbin/btpand/bnep.c
497
bnep_recv_filter_multi_addr_set(channel_t *chan, uint8_t *ptr, size_t size)
usr.sbin/btpand/bnep.c
50
static bool bnep_mfilter(channel_t *, packet_t *);
usr.sbin/btpand/bnep.c
569
bnep_recv_filter_multi_addr_rsp(channel_t *chan, uint8_t *ptr, size_t size)
usr.sbin/btpand/bnep.c
590
bnep_send_control(channel_t *chan, int type, ...)
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/btpand.h
112
channel_t * chan; /* source channel */
usr.sbin/btpand/btpand.h
169
bool bnep_send(channel_t *, packet_t *);
usr.sbin/btpand/btpand.h
171
void bnep_send_control(channel_t *, int, ...);
usr.sbin/btpand/btpand.h
175
channel_t * channel_alloc(void);
usr.sbin/btpand/btpand.h
176
bool channel_open(channel_t *, int);
usr.sbin/btpand/btpand.h
177
void channel_close(channel_t *);
usr.sbin/btpand/btpand.h
178
void channel_free(channel_t *);
usr.sbin/btpand/btpand.h
179
void channel_timeout(channel_t *, int);
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
88
bool (*send)(channel_t *, packet_t *);
usr.sbin/btpand/btpand.h
90
void (*down)(channel_t *);
usr.sbin/btpand/channel.c
113
channel_close(channel_t *chan)
usr.sbin/btpand/channel.c
139
channel_free(channel_t *chan)
usr.sbin/btpand/channel.c
157
channel_t *chan = arg;
usr.sbin/btpand/channel.c
186
channel_t *chan = arg;
usr.sbin/btpand/channel.c
220
channel_t *chan;
usr.sbin/btpand/channel.c
260
channel_put(channel_t *chan, packet_t *pkt)
usr.sbin/btpand/channel.c
280
channel_timeout(channel_t *chan, int to)
usr.sbin/btpand/channel.c
299
channel_t *chan, *next;
usr.sbin/btpand/channel.c
52
channel_t *
usr.sbin/btpand/channel.c
55
channel_t *chan;
usr.sbin/btpand/channel.c
57
chan = malloc(sizeof(channel_t));
usr.sbin/btpand/channel.c
63
memset(chan, 0, sizeof(channel_t));
usr.sbin/btpand/channel.c
72
channel_open(channel_t *chan, int fd)
usr.sbin/btpand/client.c
168
client_down(channel_t *chan)
usr.sbin/btpand/client.c
39
__dead static void client_down(channel_t *);
usr.sbin/btpand/client.c
46
channel_t *chan;
usr.sbin/btpand/packet.c
34
packet_alloc(channel_t *chan)
usr.sbin/btpand/server.c
135
channel_t *chan;
usr.sbin/btpand/server.c
256
server_down(channel_t *chan)
usr.sbin/btpand/server.c
57
static void server_down(channel_t *);
usr.sbin/btpand/tap.c
159
tap_send(channel_t *chan, packet_t *pkt)
usr.sbin/btpand/tap.c
198
tap_down(channel_t *chan)
usr.sbin/btpand/tap.c
44
static bool tap_send(channel_t *, packet_t *);
usr.sbin/btpand/tap.c
46
static void tap_down(channel_t *);
usr.sbin/btpand/tap.c
51
channel_t *chan;