Lines Matching refs:bdaddr_t
242 } __packed bdaddr_t;
272 #define BDADDR_ANY (&(bdaddr_t) {{0, 0, 0, 0, 0, 0}})
273 #define BDADDR_NONE (&(bdaddr_t) {{0xff, 0xff, 0xff, 0xff, 0xff, 0xff}})
276 static inline int bacmp(const bdaddr_t *ba1, const bdaddr_t *ba2)
278 return memcmp(ba1, ba2, sizeof(bdaddr_t));
280 static inline void bacpy(bdaddr_t *dst, const bdaddr_t *src)
282 memcpy(dst, src, sizeof(bdaddr_t));
285 void baswap(bdaddr_t *dst, const bdaddr_t *src);
343 bdaddr_t bdaddr;