Lines Matching full:ccid
1220 static void ccid_changed(struct bt_conn *conn, int err, uint8_t inst_index, uint8_t ccid) in ccid_changed() argument
1225 if (listener->ccid != NULL) { in ccid_changed()
1226 listener->ccid(conn, err, inst_index, ccid); in ccid_changed()
1240 uint8_t ccid = 0; in read_ccid_cb() local
1248 if (length == sizeof(ccid)) { in read_ccid_cb()
1249 (void)memcpy(&ccid, data, length); in read_ccid_cb()
1250 LOG_DBG("0x%02x", ccid); in read_ccid_cb()
1259 ccid_changed(conn, cb_err, inst_index, ccid); in read_ccid_cb()
1520 if (length == sizeof(inst->ccid)) { in disc_read_ccid_cb()
1521 inst->ccid = ((uint8_t *)data)[0]; in disc_read_ccid_cb()
1522 LOG_DBG("0x%02x", inst->ccid); in disc_read_ccid_cb()
1569 /* Read the CCID as the last part of discovering a TBS instance */ in discover_func()
1638 LOG_DBG("CCID"); in discover_func()
2491 uint8_t ccid = POINTER_TO_UINT(user_data); in tbs_instance_ccid_is_eq() local
2493 return inst->ccid == ccid; in tbs_instance_ccid_is_eq()
2497 uint8_t ccid) in bt_tbs_client_get_by_ccid() argument
2508 return tbs_instance_find(server, tbs_instance_ccid_is_eq, UINT_TO_POINTER(ccid)); in bt_tbs_client_get_by_ccid()