Lines Matching refs:bdaddr_t
328 } __packed bdaddr_t;
358 #define BDADDR_ANY (&(bdaddr_t) {{0, 0, 0, 0, 0, 0}})
359 #define BDADDR_NONE (&(bdaddr_t) {{0xff, 0xff, 0xff, 0xff, 0xff, 0xff}})
362 static inline int bacmp(const bdaddr_t *ba1, const bdaddr_t *ba2)
364 return memcmp(ba1, ba2, sizeof(bdaddr_t));
366 static inline void bacpy(bdaddr_t *dst, const bdaddr_t *src)
368 memcpy(dst, src, sizeof(bdaddr_t));
371 void baswap(bdaddr_t *dst, const bdaddr_t *src);
432 bdaddr_t bdaddr;