Home
last modified time | relevance | path

Searched refs:gatt_err (Results 1 – 2 of 2) sorted by relevance

/Zephyr-latest/subsys/bluetooth/audio/
Dcsip_set_member.c244 ssize_t gatt_err = BT_GATT_ERR(BT_ATT_ERR_SUCCESS); in read_sirk() local
260 gatt_err = BT_GATT_ERR(BT_ATT_ERR_UNLIKELY); in read_sirk()
267 gatt_err = BT_GATT_ERR(BT_ATT_ERR_AUTHORIZATION); in read_sirk()
269 gatt_err = BT_GATT_ERR(BT_CSIP_ERROR_SIRK_OOB_ONLY); in read_sirk()
272 gatt_err = BT_GATT_ERR(BT_ATT_ERR_UNLIKELY); in read_sirk()
275 if (gatt_err != BT_GATT_ERR(BT_ATT_ERR_SUCCESS)) { in read_sirk()
276 return gatt_err; in read_sirk()
/Zephyr-latest/include/zephyr/bluetooth/
Dgatt.h605 static inline const char *bt_gatt_err_to_str(int gatt_err) in bt_gatt_err_to_str() argument
607 return bt_att_err_to_str((gatt_err) < 0 ? -(gatt_err) : (gatt_err)); in bt_gatt_err_to_str()