/third_party/ffmpeg/libavfilter/ |
D | f_zmq.c | 157 char *recv_buf, *send_buf; in filter_frame() local 181 send_buf = av_asprintf("%d %s%s%s", in filter_frame() 183 if (!send_buf) { in filter_frame() 189 zmq->command_count, send_buf); in filter_frame() 190 if (zmq_send(zmq->responder, send_buf, strlen(send_buf), 0) == -1) in filter_frame() 195 av_freep(&send_buf); in filter_frame()
|
/third_party/mindspore/mindspore/ccsrc/runtime/hccl_adapter/ |
D | hccl_adapter.h | 68 …HcclResult HcclAllReduce(void *send_buf, void *recv_buf, uint64_t count, HcclDataType dataType, Hc… 70 …HcclResult HcclAllGather(void *send_buf, void *recv_buf, uint64_t count, HcclDataType dataType, ac… 72 …HcclResult HcclReduceScatter(void *send_buf, void *recv_buf, uint64_t count, HcclDataType dataType… 74 …HcclResult HcclSend(void *send_buf, uint64_t count, HcclDataType dataType, uint32_t destRank, aclr…
|
D | hccl_adapter.cc | 279 HcclResult HcclAdapter::HcclAllReduce(void *send_buf, void *recv_buf, uint64_t count, HcclDataType … in HcclAllReduce() argument 284 return launch_hccl_all_reduce_(send_buf, recv_buf, count, dataType, op, hccl_comm, stream); in HcclAllReduce() 287 HcclResult HcclAdapter::HcclReduceScatter(void *send_buf, void *recv_buf, uint64_t count, HcclDataT… in HcclReduceScatter() argument 292 return launch_hccl_reduce_scatter_(send_buf, recv_buf, count, dataType, op, hccl_comm, stream); in HcclReduceScatter() 295 HcclResult HcclAdapter::HcclAllGather(void *send_buf, void *recv_buf, uint64_t count, HcclDataType … in HcclAllGather() argument 300 return launch_hccl_all_gather_(send_buf, recv_buf, count, dataType, hccl_comm, stream); in HcclAllGather() 303 HcclResult HcclAdapter::HcclSend(void *send_buf, uint64_t count, HcclDataType dataType, uint32_t de… in HcclSend() argument 308 return launch_hccl_send_(send_buf, count, dataType, destRank, hccl_comm, stream); in HcclSend()
|
/third_party/ltp/testcases/kernel/syscalls/recvmsg/ |
D | recvmsg03.c | 49 char send_buf[128] = "hello world"; in client() local 73 msg.msg_iov->iov_base = send_buf; in client() 74 msg.msg_iov->iov_len = strlen(send_buf) + 1; in client()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
D | ctrl_iface_named_pipe.c | 282 char *reply = NULL, *send_buf; in wpa_supplicant_ctrl_iface_rx() local 311 send_buf = reply; in wpa_supplicant_ctrl_iface_rx() 314 send_buf = "OK\n"; in wpa_supplicant_ctrl_iface_rx() 317 send_buf = "FAIL\n"; in wpa_supplicant_ctrl_iface_rx() 322 dst->rsp_buf = os_memdup(send_buf, send_len); in wpa_supplicant_ctrl_iface_rx() 717 char *reply = NULL, *send_buf; in wpa_supplicant_global_iface_rx() local 729 send_buf = reply; in wpa_supplicant_global_iface_rx() 732 send_buf = "FAIL\n"; in wpa_supplicant_global_iface_rx() 741 dst->rsp_buf = os_memdup(send_buf, send_len); in wpa_supplicant_global_iface_rx()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
D | ctrl_iface_named_pipe.c | 282 char *reply = NULL, *send_buf; in wpa_supplicant_ctrl_iface_rx() local 311 send_buf = reply; in wpa_supplicant_ctrl_iface_rx() 314 send_buf = "OK\n"; in wpa_supplicant_ctrl_iface_rx() 317 send_buf = "FAIL\n"; in wpa_supplicant_ctrl_iface_rx() 322 dst->rsp_buf = os_memdup(send_buf, send_len); in wpa_supplicant_ctrl_iface_rx() 720 char *reply = NULL, *send_buf; in wpa_supplicant_global_iface_rx() local 732 send_buf = reply; in wpa_supplicant_global_iface_rx() 735 send_buf = "FAIL\n"; in wpa_supplicant_global_iface_rx() 744 dst->rsp_buf = os_memdup(send_buf, send_len); in wpa_supplicant_global_iface_rx()
|
/third_party/boost/libs/asio/example/cpp03/tutorial/daytime4/ |
D | client.cpp | 36 boost::array<char, 1> send_buf = {{ 0 }}; in main() local 37 socket.send_to(boost::asio::buffer(send_buf), receiver_endpoint); in main()
|
/third_party/boost/doc/html/boost_asio/example/cpp11/futures/ |
D | daytime_client.cpp | 37 std::array<char, 1> send_buf = {{ 0 }}; in get_daytime() local 39 socket.async_send_to(boost::asio::buffer(send_buf), in get_daytime()
|
/third_party/boost/libs/asio/example/cpp11/futures/ |
D | daytime_client.cpp | 37 std::array<char, 1> send_buf = {{ 0 }}; in get_daytime() local 39 socket.async_send_to(boost::asio::buffer(send_buf), in get_daytime()
|
/third_party/pulseaudio/src/modules/rtp/ |
D | rtp-gstreamer.c | 60 uint8_t *send_buf; member 182 c->send_buf = pa_xmalloc(c->mtu); in pa_rtp_context_new_send() 266 memcpy(c->send_buf + n, pa_memblock_acquire_chunk(&chunk), k); in pa_rtp_send() 297 memcpy(info.data, c->send_buf, n); in pa_rtp_send() 485 c->send_buf = NULL; in pa_rtp_context_new_recv() 642 pa_xfree(c->send_buf); in pa_rtp_context_free()
|
/third_party/grpc/test/cpp/end2end/ |
D | client_callback_end2end_test.cc | 219 std::unique_ptr<ByteBuffer> send_buf = SerializeToByteBuffer(&request); in SendRpcsRawReq() local 229 &cli_ctx, send_buf.get(), &response, in SendRpcsRawReq() 250 std::unique_ptr<ByteBuffer> send_buf; in SendRpcsGeneric() local 256 send_buf = SerializeToByteBuffer(&request); in SendRpcsGeneric() 262 &cli_ctx, kMethodName, send_buf.get(), &recv_buf, in SendRpcsGeneric()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/ |
D | wps_upnp_web.c | 365 goto send_buf; in web_connection_parse_get() 408 send_buf: in web_connection_parse_get()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/ |
D | wps_upnp_web.c | 365 goto send_buf; in web_connection_parse_get() 408 send_buf: in web_connection_parse_get()
|
/third_party/boost/libs/asio/doc/ |
D | tutorial.qbk | 1548 ``''''''`` boost::array<char, 1> send_buf = {{ 0 }}; 1549 ``''''''`` socket.send_to(boost::asio::buffer(send_buf), receiver_endpoint); 1626 ``''''''`` boost::array<char, 1> send_buf = {{ 0 }}; 1627 ``''''''`` socket.send_to(boost::asio::buffer(send_buf), receiver_endpoint);
|