Searched refs:remote_uri (Results 1 – 7 of 7) sorted by relevance
/Zephyr-latest/samples/bluetooth/tmap_peripheral/src/ |
D | ccp_call_ctrl.c | 25 static char remote_uri[CONFIG_BT_TBS_MAX_URI_LENGTH]; variable 105 if (i >= sizeof(remote_uri)) { in read_uri_schemes_string_cb() 110 strncpy(remote_uri, value, i); in read_uri_schemes_string_cb() 111 remote_uri[i] = '\0'; in read_uri_schemes_string_cb() 113 printk("CCP: Discovered remote URI: %s\n", remote_uri); in read_uri_schemes_string_cb() 148 strcpy(uri, remote_uri); in ccp_originate_call()
|
/Zephyr-latest/subsys/bluetooth/audio/ |
D | tbs.c | 369 __ASSERT_NO_MSG(uri_len < sizeof(free_call->remote_uri)); in call_alloc() 378 (void)memcpy(free_call->remote_uri, uri, uri_len); in call_alloc() 379 free_call->remote_uri[uri_len] = '\0'; in call_alloc() 449 uri_length = strlen(call->remote_uri); in net_buf_put_current_calls_by_inst() 464 net_buf_simple_add_mem(buf, call->remote_uri, uri_length); in net_buf_put_current_calls_by_inst() 1362 const struct bt_tbs_in_uri *remote_uri = &inst->in_call; in read_incoming_call() local 1365 LOG_DBG("Index: 0x%02x call index 0x%02x, URI %s", inst_index(inst), remote_uri->call_index, in read_incoming_call() 1366 remote_uri->uri); in read_incoming_call() 1368 if (remote_uri->call_index == BT_TBS_FREE_CALL_INDEX) { in read_incoming_call() 1374 val_len = sizeof(remote_uri->call_index) + strlen(remote_uri->uri); in read_incoming_call() [all …]
|
D | tbs_internal.h | 218 char remote_uri[CONFIG_BT_TBS_MAX_URI_LENGTH + 1]; member
|
D | tbs_client.c | 243 (void)memcpy(call->remote_uri, uri, uri_len); in net_buf_pull_call() 244 call->remote_uri[uri_len] = '\0'; in net_buf_pull_call() 278 call->remote_uri = remote_uris[cnt]; in bearer_list_current_calls() 634 const char *remote_uri) in remote_uri_changed() argument 639 if (listener->remote_uri != NULL) { in remote_uri_changed() 640 listener->remote_uri(conn, err, inst_index, remote_uri); in remote_uri_changed()
|
/Zephyr-latest/include/zephyr/bluetooth/audio/ |
D | tbs.h | 575 char *remote_uri; member 770 bt_tbs_client_read_string_cb remote_uri; member
|
/Zephyr-latest/doc/connectivity/bluetooth/shell/audio/ |
D | ccp.rst | 189 gtbs}>] <local_uri> <remote_uri>
|
/Zephyr-latest/tests/bluetooth/tester/src/audio/ |
D | btp_ccp.c | 300 .remote_uri = tbs_client_read_string_cb,
|