Lines Matching refs:tbs_cbs
112 static struct bt_tbs_cb *tbs_cbs; variable
196 if (tbs_cbs != NULL && tbs_cbs->authorize != NULL) { in is_authorized()
197 return tbs_cbs->authorize(conn); in is_authorized()
1168 if (tbs_cbs == NULL) { in notify_app()
1174 if (tbs_cbs->accept_call != NULL) { in notify_app()
1175 tbs_cbs->accept_call(conn, call_index); in notify_app()
1179 if (tbs_cbs->terminate_call != NULL) { in notify_app()
1180 tbs_cbs->terminate_call(conn, call_index, in notify_app()
1185 if (tbs_cbs->hold_call != NULL) { in notify_app()
1186 tbs_cbs->hold_call(conn, call_index); in notify_app()
1190 if (tbs_cbs->retrieve_call != NULL) { in notify_app()
1191 tbs_cbs->retrieve_call(conn, call_index); in notify_app()
1210 if (tbs_cbs->originate_call != NULL) { in notify_app()
1211 remote_party_alerted = tbs_cbs->originate_call(conn, in notify_app()
1237 if (tbs_cbs->join_calls != NULL) { in notify_app()
1238 tbs_cbs->join_calls(conn, call_index_cnt, in notify_app()
1248 if (held_calls_cnt != 0 && tbs_cbs->hold_call != NULL) { in notify_app()
1250 tbs_cbs->hold_call(conn, held_calls[i]->index); in notify_app()
2422 tbs_cbs = cbs; in bt_tbs_register_cb()