Lines Matching refs:tbs_cbs
86 static struct bt_tbs_cb *tbs_cbs; variable
231 if (tbs_cbs != NULL && tbs_cbs->authorize != NULL) { in is_authorized()
232 return tbs_cbs->authorize(conn); in is_authorized()
1037 if (tbs_cbs == NULL) { in notify_app()
1043 if (tbs_cbs->accept_call != NULL) { in notify_app()
1044 tbs_cbs->accept_call(conn, call_index); in notify_app()
1048 if (tbs_cbs->terminate_call != NULL) { in notify_app()
1049 tbs_cbs->terminate_call(conn, call_index, inst->terminate_reason.reason); in notify_app()
1053 if (tbs_cbs->hold_call != NULL) { in notify_app()
1054 tbs_cbs->hold_call(conn, call_index); in notify_app()
1058 if (tbs_cbs->retrieve_call != NULL) { in notify_app()
1059 tbs_cbs->retrieve_call(conn, call_index); in notify_app()
1077 if (tbs_cbs->originate_call != NULL) { in notify_app()
1078 remote_party_alerted = tbs_cbs->originate_call(conn, call_index, uri); in notify_app()
1099 if (tbs_cbs->join_calls != NULL) { in notify_app()
1100 tbs_cbs->join_calls(conn, call_index_cnt, ccp->join.call_indexes); in notify_app()
1109 if (held_calls_cnt != 0 && tbs_cbs->hold_call != NULL) { in notify_app()
1111 tbs_cbs->hold_call(conn, held_calls[i]->index); in notify_app()
2199 tbs_cbs = cbs; in bt_tbs_register_cb()