Lines Matching refs:bt_keys
51 struct bt_keys { struct
73 #define BT_KEYS_STORAGE_LEN (sizeof(struct bt_keys) - \ argument
74 offsetof(struct bt_keys, storage_start))
76 void bt_keys_foreach(int type, void (*func)(struct bt_keys *keys, void *data),
79 struct bt_keys *bt_keys_get_addr(u8_t id, const bt_addr_le_t *addr);
80 struct bt_keys *bt_keys_get_type(int type, u8_t id, const bt_addr_le_t *addr);
81 struct bt_keys *bt_keys_find(int type, u8_t id, const bt_addr_le_t *addr);
82 struct bt_keys *bt_keys_find_irk(u8_t id, const bt_addr_le_t *addr);
83 struct bt_keys *bt_keys_find_addr(u8_t id, const bt_addr_le_t *addr);
85 void bt_keys_add_type(struct bt_keys *keys, int type);
86 void bt_keys_clear(struct bt_keys *keys);
89 int bt_keys_store(struct bt_keys *keys);
91 static inline int bt_keys_store(struct bt_keys *keys) in bt_keys_store()