| /freebsd-12-stable/lib/libbluetooth/ |
| D | bluetooth.h | 63 #define bacmp(ba1, ba2) memcmp((ba1), (ba2), sizeof(bdaddr_t)) 64 #define bacpy(dst, src) memcpy((dst), (src), sizeof(bdaddr_t)) 88 char const * bt_ntoa (bdaddr_t const *ba, char *str); 89 int bt_aton (char const *str, bdaddr_t *ba); 92 int bt_devaddr (char const *devname, bdaddr_t *addr); 93 int bt_devname (char *devname, bdaddr_t const *addr); 109 bdaddr_t bdaddr; 159 bdaddr_t bdaddr; 185 char * bt_devremote_name(char const *devname, const bdaddr_t *remote, 192 bt_devremote_name_gen(char const *btooth_devname, const bdaddr_t *remote) in bt_devremote_name_gen() [all …]
|
| D | dev.c | 43 bdaddr_t const *bdaddr; 49 bt_devaddr(char const *devname, bdaddr_t *addr) in bt_devaddr() 65 bt_devname(char *devname, bdaddr_t const *addr) in bt_devname()
|
| D | bluetooth.c | 48 static bdaddr_t host_addr; 87 if (type != AF_BLUETOOTH || len != sizeof(bdaddr_t)) { in bt_gethostbyaddr() 276 bt_ntoa(bdaddr_t const *ba, char *str) in bt_ntoa() 290 bt_aton(char const *str, bdaddr_t *ba) in bt_aton()
|
| /freebsd-12-stable/sys/netgraph/bluetooth/include/ |
| D | ng_hci.h | 382 } __attribute__ ((packed)) bdaddr_t; typedef 383 typedef bdaddr_t * bdaddr_p; 403 bdaddr_t bdaddr; /* remote unit address */ 424 bdaddr_t bdaddr; /* remote unit address */ 432 bdaddr_t bdaddr; /* remote unit address */ 440 bdaddr_t bdaddr; /* remote unit address */ 565 bdaddr_t bdaddr; /* bdaddr */ 590 bdaddr_t bdaddr; /* remote bdaddr */ 601 bdaddr_t bdaddr; /* bdaddr */ 661 bdaddr_t bdaddr; /* destination address */ [all …]
|
| D | ng_l2cap.h | 369 bdaddr_t bdaddr; /* remote unit address */ 387 bdaddr_t bdaddr; /* remote unit address */ 399 bdaddr_t bdaddr; /* remote unit address */ 460 bdaddr_t bdaddr; /* remote unit address */ 526 bdaddr_t bdaddr; /* remote unit address */ 562 bdaddr_t bdaddr; /* remote unit address */ 570 bdaddr_t bdaddr; /* remote unit address */ 579 bdaddr_t bdaddr; /* remote unit address */ 655 bdaddr_t addr; 676 bdaddr_t remote; /* remote bdaddr */ [all …]
|
| D | ng_btsocket_l2cap.h | 47 bdaddr_t src; /* source BD_ADDR */ 73 bdaddr_t src; /* source address */ 74 bdaddr_t dst; /* dest address */ 134 bdaddr_t src; /* Source address */ 135 bdaddr_t dst; /* Destination address */
|
| D | ng_btsocket.h | 114 bdaddr_t bdaddr; 212 bdaddr_t sco_bdaddr; /* address */ 230 bdaddr_t l2cap_bdaddr; /* address */ 237 bdaddr_t l2cap_bdaddr; /* address */ 339 bdaddr_t rfcomm_bdaddr; /* address */
|
| D | ng_btsocket_sco.h | 47 bdaddr_t src; /* source BD_ADDR */ 73 bdaddr_t src; /* Source address */ 74 bdaddr_t dst; /* Destination address */
|
| /freebsd-12-stable/usr.sbin/bluetooth/sdpd/ |
| D | provider.h | 48 bdaddr_t bdaddr; /* provider's BDADDR */ 57 (memcmp(b, NG_HCI_BDADDR_ANY, sizeof(bdaddr_t)) == 0 || \ 58 memcmp(&(p)->bdaddr, NG_HCI_BDADDR_ANY, sizeof(bdaddr_t)) == 0 || \ 59 memcmp(&(p)->bdaddr, b, sizeof(bdaddr_t)) == 0)
|
| /freebsd-12-stable/usr.sbin/bluetooth/btpand/ |
| D | btpand.c | 58 bdaddr_t local_bdaddr; /* -d <addr> */ 59 bdaddr_t remote_bdaddr; /* -a <addr> */ 97 (bdaddr_t *)he->h_addr); in main() 115 (bdaddr_t *)he->h_addr); in main()
|
| D | btpand.h | 159 extern bdaddr_t local_bdaddr; 160 extern bdaddr_t remote_bdaddr; 171 b2eaddr(void *dst, bdaddr_t *src) in b2eaddr()
|
| /freebsd-12-stable/usr.bin/bluetooth/bthost/ |
| D | bthost.c | 79 bdaddr_t ba; in hostmode() 99 bt_ntoa((bdaddr_t *)(he->h_addr), bastr)); in hostmode() 105 bt_ntoa((bdaddr_t *)(he->h_addr), bastr)); in hostmode()
|
| /freebsd-12-stable/usr.sbin/bluetooth/bthidcontrol/ |
| D | bthidcontrol.c | 53 int32_t hid_sdp_query(bdaddr_t const *local, bdaddr_t const *remote, int32_t *error); 64 bdaddr_t bdaddr; in main()
|
| D | hid.c | 51 hid_dump(bdaddr_t *bdaddr, int argc, char **argv) in hid_dump() 69 hid_forget(bdaddr_t *bdaddr, int argc, char **argv) in hid_forget() 90 hid_known(bdaddr_t *bdaddr, int argc, char **argv) in hid_known()
|
| D | sdp.c | 49 static int32_t hid_sdp_query (bdaddr_t const *local, struct hid_device *hd, int32_t *error); 117 hid_sdp_query(bdaddr_t const *local, struct hid_device *hd, int32_t *error) in hid_sdp_query() 126 bdaddr_t sdp_local; in hid_sdp_query() 475 hid_query(bdaddr_t *bdaddr, int argc, char **argv) in hid_query()
|
| D | bthidcontrol.h | 45 int (*handler)(bdaddr_t *, int, char **);
|
| /freebsd-12-stable/contrib/netbsd-tests/lib/libbluetooth/ |
| D | t_bluetooth.c | 47 bdaddr_t bdaddr; in ATF_TC_BODY() 75 bdaddr_t bdaddr = { { 0x00, 0x11, 0x22, 0x33, 0x44, 0x55 } }; in ATF_TC_BODY()
|
| /freebsd-12-stable/lib/libsdp/ |
| D | session.c | 44 sdp_open(bdaddr_t const *l, bdaddr_t const *r) in sdp_open() 185 sdp_get_lcaddr(void *xss, bdaddr_t *l) in sdp_get_lcaddr()
|
| /freebsd-12-stable/sys/netgraph/bluetooth/hci/ |
| D | ng_hci_var.h | 134 bdaddr_t bdaddr; /* unit address */ 182 bdaddr_t bdaddr; /* remote address */ 207 bdaddr_t bdaddr; /* address */
|
| /freebsd-12-stable/usr.bin/bluetooth/rfcomm_sppd/ |
| D | rfcomm_sppd.c | 62 int rfcomm_channel_lookup (bdaddr_t const *local, 63 bdaddr_t const *remote, 80 bdaddr_t addr; in main() 197 bdaddr_t bt_addr_any; in main()
|
| D | rfcomm_sdp.c | 64 rfcomm_channel_lookup(bdaddr_t const *local, bdaddr_t const *remote, in rfcomm_channel_lookup()
|
| /freebsd-12-stable/usr.sbin/bluetooth/bthidd/ |
| D | bthidd.h | 46 bdaddr_t bdaddr; /* local bdaddr */ 71 bdaddr_t bdaddr;/* remote bdaddr */
|
| D | parser.y | 88 bdaddr_t bdaddr; 329 if (memcmp(&d->bdaddr, bdaddr, sizeof(bdaddr_t)) == 0) in get_hid_device() 494 bdaddr_t bdaddr; in read_hids_file()
|
| /freebsd-12-stable/sys/netgraph/bluetooth/l2cap/ |
| D | ng_l2cap_var.h | 89 bdaddr_t bdaddr; /* unit BDADDR */ 118 bdaddr_t remote; /* remote unit address */
|
| /freebsd-12-stable/usr.sbin/bluetooth/rfcomm_pppd/ |
| D | rfcomm_pppd.c | 52 int rfcomm_channel_lookup (bdaddr_t const *local, 53 bdaddr_t const *remote, 68 bdaddr_t addr; in main()
|