Home
last modified time | relevance | path

Searched refs:BT_SUGGESTED_BUFFER_SIZE (Results 1 – 7 of 7) sorted by relevance

/external/bluetooth/bluez/audio/
Dctl_bluetooth.c151 memset(req, 0, BT_SUGGESTED_BUFFER_SIZE); in bluetooth_send_ctl()
159 ret = send(data->sock, req, BT_SUGGESTED_BUFFER_SIZE, MSG_NOSIGNAL); in bluetooth_send_ctl()
165 ret = recv(data->sock, rsp, BT_SUGGESTED_BUFFER_SIZE, 0); in bluetooth_send_ctl()
207 char buf[BT_SUGGESTED_BUFFER_SIZE]; in bluetooth_read_integer()
228 char buf[BT_SUGGESTED_BUFFER_SIZE]; in bluetooth_write_integer()
260 char buf[BT_SUGGESTED_BUFFER_SIZE]; in bluetooth_read_event()
269 ret = recv(data->sock, ind, BT_SUGGESTED_BUFFER_SIZE, MSG_DONTWAIT); in bluetooth_read_event()
Dunix.c158 char buf[BT_SUGGESTED_BUFFER_SIZE]; in unix_ipc_error()
253 char buf[BT_SUGGESTED_BUFFER_SIZE]; in headset_discovery_complete()
286 char buf[BT_SUGGESTED_BUFFER_SIZE]; in headset_setup_complete()
316 char buf[BT_SUGGESTED_BUFFER_SIZE]; in gateway_setup_complete()
342 char buf[BT_SUGGESTED_BUFFER_SIZE]; in headset_resume_complete()
386 char buf[BT_SUGGESTED_BUFFER_SIZE]; in gateway_resume_complete()
416 char buf[BT_SUGGESTED_BUFFER_SIZE]; in headset_suspend_complete()
497 if (rsp->h.length > BT_SUGGESTED_BUFFER_SIZE) in a2dp_append_codec()
500 space_left = BT_SUGGESTED_BUFFER_SIZE - rsp->h.length; in a2dp_append_codec()
576 char buf[BT_SUGGESTED_BUFFER_SIZE]; in a2dp_discovery_complete()
[all …]
Dliba2dp.c187 char buf[BT_SUGGESTED_BUFFER_SIZE]; in bluetooth_start()
196 memset(start_req, 0, BT_SUGGESTED_BUFFER_SIZE); in bluetooth_start()
249 char buf[BT_SUGGESTED_BUFFER_SIZE]; in bluetooth_stop()
263 memset(stop_req, 0, BT_SUGGESTED_BUFFER_SIZE); in bluetooth_stop()
464 char buf[BT_SUGGESTED_BUFFER_SIZE]; in bluetooth_a2dp_hw_params()
471 memset(open_req, 0, BT_SUGGESTED_BUFFER_SIZE); in bluetooth_a2dp_hw_params()
493 memset(setconf_req, 0, BT_SUGGESTED_BUFFER_SIZE); in bluetooth_a2dp_hw_params()
701 length = msg->length ? msg->length : BT_SUGGESTED_BUFFER_SIZE; in audioservice_send()
725 length = inmsg->length ? inmsg->length : BT_SUGGESTED_BUFFER_SIZE; in audioservice_recv()
840 char buf[BT_SUGGESTED_BUFFER_SIZE]; in bluetooth_configure()
[all …]
Dipctest.c132 length = msg->length ? msg->length : BT_SUGGESTED_BUFFER_SIZE; in service_send()
156 length = rsp->length ? : BT_SUGGESTED_BUFFER_SIZE; in service_recv()
303 uint8_t buf[BT_SUGGESTED_BUFFER_SIZE]; in get_caps()
576 uint8_t buf[BT_SUGGESTED_BUFFER_SIZE]; in bt_open()
608 uint8_t buf[BT_SUGGESTED_BUFFER_SIZE]; in set_conf()
834 uint8_t buf[BT_SUGGESTED_BUFFER_SIZE]; in start_stream()
850 memset(msg.buf, 0, BT_SUGGESTED_BUFFER_SIZE); in start_stream()
890 uint8_t buf[BT_SUGGESTED_BUFFER_SIZE]; in stop_stream()
905 memset(msg.buf, 0, BT_SUGGESTED_BUFFER_SIZE); in stop_stream()
Dpcm_bluetooth.c335 char buf[BT_SUGGESTED_BUFFER_SIZE]; in bluetooth_prepare()
366 memset(req, 0, BT_SUGGESTED_BUFFER_SIZE); in bluetooth_prepare()
432 char buf[BT_SUGGESTED_BUFFER_SIZE]; in bluetooth_hsp_hw_params()
442 memset(req, 0, BT_SUGGESTED_BUFFER_SIZE); in bluetooth_hsp_hw_params()
462 memset(req, 0, BT_SUGGESTED_BUFFER_SIZE); in bluetooth_hsp_hw_params()
692 char buf[BT_SUGGESTED_BUFFER_SIZE]; in bluetooth_a2dp_hw_params()
702 memset(req, 0, BT_SUGGESTED_BUFFER_SIZE); in bluetooth_a2dp_hw_params()
726 memset(req, 0, BT_SUGGESTED_BUFFER_SIZE); in bluetooth_a2dp_hw_params()
1534 length = msg->length ? msg->length : BT_SUGGESTED_BUFFER_SIZE; in audioservice_send()
1556 length = inmsg->length ? inmsg->length : BT_SUGGESTED_BUFFER_SIZE; in audioservice_recv()
[all …]
Dgstavdtpsink.c763 gchar *buf[BT_SUGGESTED_BUFFER_SIZE]; in gst_avdtp_sink_get_capabilities()
768 memset(req, 0, BT_SUGGESTED_BUFFER_SIZE); in gst_avdtp_sink_get_capabilities()
913 gchar buf[BT_SUGGESTED_BUFFER_SIZE]; in gst_avdtp_sink_stream_start()
1035 gchar buf[BT_SUGGESTED_BUFFER_SIZE]; in gst_avdtp_sink_configure()
1063 memset(req, 0, BT_SUGGESTED_BUFFER_SIZE); in gst_avdtp_sink_configure()
1268 length = msg->length ? msg->length : BT_SUGGESTED_BUFFER_SIZE; in gst_avdtp_sink_audioservice_send()
1293 length = inmsg->length ? inmsg->length : BT_SUGGESTED_BUFFER_SIZE; in gst_avdtp_sink_audioservice_recv()
Dipc.h74 #define BT_SUGGESTED_BUFFER_SIZE 512 macro