Symbol: bt_devfilter
lib/libbluetooth/bluetooth.h
174
int bt_devfilter(int s, struct bt_devfilter const *newp,
lib/libbluetooth/bluetooth.h
175
struct bt_devfilter *oldp);
lib/libbluetooth/bluetooth.h
176
void bt_devfilter_pkt_set(struct bt_devfilter *filter, uint8_t type);
lib/libbluetooth/bluetooth.h
177
void bt_devfilter_pkt_clr(struct bt_devfilter *filter, uint8_t type);
lib/libbluetooth/bluetooth.h
178
int bt_devfilter_pkt_tst(struct bt_devfilter const *filter, uint8_t type);
lib/libbluetooth/bluetooth.h
179
void bt_devfilter_evt_set(struct bt_devfilter *filter, uint8_t event);
lib/libbluetooth/bluetooth.h
180
void bt_devfilter_evt_clr(struct bt_devfilter *filter, uint8_t event);
lib/libbluetooth/bluetooth.h
181
int bt_devfilter_evt_tst(struct bt_devfilter const *filter, uint8_t event);
lib/libbluetooth/hci.c
219
struct bt_devfilter old, new;
lib/libbluetooth/hci.c
243
if (bt_devfilter(s, &new, &old) < 0)
lib/libbluetooth/hci.c
322
bt_devfilter(s, &old, NULL);
lib/libbluetooth/hci.c
333
bt_devfilter(int s, struct bt_devfilter const *new, struct bt_devfilter *old)
lib/libbluetooth/hci.c
371
bt_devfilter_pkt_set(struct bt_devfilter *filter, uint8_t type)
lib/libbluetooth/hci.c
377
bt_devfilter_pkt_clr(struct bt_devfilter *filter, uint8_t type)
lib/libbluetooth/hci.c
383
bt_devfilter_pkt_tst(struct bt_devfilter const *filter, uint8_t type)
lib/libbluetooth/hci.c
389
bt_devfilter_evt_set(struct bt_devfilter *filter, uint8_t event)
lib/libbluetooth/hci.c
395
bt_devfilter_evt_clr(struct bt_devfilter *filter, uint8_t event)
lib/libbluetooth/hci.c
401
bt_devfilter_evt_tst(struct bt_devfilter const *filter, uint8_t event)
lib/libbluetooth/hci.c
412
struct bt_devfilter f;
lib/libbluetooth/hci.c
442
if (bt_devfilter(s, NULL, &f) < 0) {
lib/libbluetooth/hci.c
450
if (bt_devfilter(s, &f, NULL) < 0) {