Home
last modified time | relevance | path

Searched refs:iovec (Results 1 - 25 of 28) sorted by relevance

12

/foundation/communication/bluetooth_service/services/bluetooth/service/src/sock/
H A Dsocket_util.cpp53 struct iovec iovec = {}; in SocketSendFd() local
58 (void)memset_s(&iovec, sizeof(iovec), 0, sizeof(iovec)); in SocketSendFd()
69 iovec.iov_base = const_cast<void *>(static_cast<const void *>(buf)); in SocketSendFd()
70 iovec.iov_len = len; in SocketSendFd()
72 msghdr.msg_iov = &iovec; in SocketSendFd()
/foundation/communication/dsoftbus/components/nstackx/fillp/src/app_lib/include/
H A Dsocket_app.h46 FillpErrorType SockReadv(FILLP_INT sockIndex, const struct iovec *iov, FILLP_INT iovCount);
47 FillpErrorType SockWritev(FILLP_INT sockIndex, const struct iovec *iov, FILLP_INT iovCount);
71 struct iovec { struct
79 struct iovec *msg_iov;
/foundation/communication/dsoftbus/components/nstackx/nstackx_util/platform/liteos/
H A Dsys_socket.c96 int32_t SocketSendEx(const Socket *s, uint16_t mss, const struct iovec *iov, uint32_t cnt) in SocketSendEx()
109 mh.msg_iov = (struct iovec *)iov; in SocketSendEx()
/foundation/communication/dsoftbus/components/nstackx/nstackx_util/platform/unix/
H A Dsys_socket.c79 int32_t SocketSendEx(const Socket *s, uint16_t mss, const struct iovec *iov, uint32_t cnt) in SocketSendEx()
92 mh.msg_iov = (struct iovec *)iov; in SocketSendEx()
114 struct iovec iov[IOV_CNT] = { in SendUdpSegment()
/foundation/communication/netmanager_base/services/netmanagernative/src/netsys/
H A Dclatd.cpp184 iovec iov; in ProcessV6Packet()
228 std::vector<iovec> iovPackets(CLATD_MAX); in ProcessV6Packet()
268 std::vector<iovec> iovPackets(CLATD_MAX); in ProcessV4Packet()
297 readLen = read(tunFd_, reinterpret_cast<iovec *>(&readBuf), sizeof(readBuf)); in ReadV4Packet()
312 void Clatd::SendV6OnRawSocket(int fd, std::vector<iovec> &iovPackets, int effectivePos) in SendV6OnRawSocket()
H A Dnetlink_socket.cpp47 struct iovec ioVector; in SendNetlinkMsgToKernel()
H A Dnetlink_socket_diag.cpp213 iovec iov; in SendSockDiagDumpRequest()
222 ssize_t writeLen = writev(dumpSock_, &iov, (sizeof(iov) / sizeof(iovec))); in SendSockDiagDumpRequest()
H A Dfwmark_network.cpp141 iovec iov = {.iov_base = &fwmCmd, .iov_len = sizeof(fwmCmd)}; in SendMessage()
/foundation/communication/dsoftbus/components/nstackx/nstackx_congestion/platform/unix/qdisc/
H A Dnstackx_nlmsg.c72 struct iovec iov[NETLINK_REQUEST_IOV_NUM] = { in SendNetlinkRequest()
123 struct iovec iovRecv; in RecvNetlinkResponse()
/foundation/communication/netmanager_base/services/netmanagernative/include/netsys/
H A Dclatd.h49 void SendV6OnRawSocket(int fd, std::vector<iovec> &iovPackets, int effectivePos);
H A Dclat_utils.h71 typedef iovec ClatdPacket[CLATD_MAX];
H A Dclatd_packet_converter.h44 void GetConvertedPacket(std::vector<iovec> &iovPackets, int &effectivePos);
/foundation/communication/dsoftbus/components/nstackx/nstackx_util/interface/
H A Dnstackx_socket.h47 int32_t SocketSendEx(const Socket *socket, uint16_t mss, const struct iovec *iov, uint32_t cnt);
/foundation/communication/netmanager_base/test/netmanagernative/unittest/netsys_manager_test/
H A Dclatd_packet_converter_test.cpp192 bool IsTranslatedPacketCorrect(std::vector<iovec> iovPackets, const uint8_t *packet);
207 bool ClatdPacketConverterTest::IsTranslatedPacketCorrect(std::vector<iovec> iovPackets, const uint8_t *packet) in IsTranslatedPacketCorrect()
235 std::vector<iovec> iovPackets(CLATD_MAX); in HWTEST_F()
254 std::vector<iovec> iovPackets(CLATD_MAX); in HWTEST_F()
273 std::vector<iovec> iovPackets(CLATD_MAX); in HWTEST_F()
292 std::vector<iovec> iovPackets(CLATD_MAX); in HWTEST_F()
311 std::vector<iovec> iovPackets(CLATD_MAX); in HWTEST_F()
330 std::vector<iovec> iovPackets(CLATD_MAX); in HWTEST_F()
/foundation/communication/netmanager_base/services/netmanagernative/fwmarkclient/src/
H A Dfwmark_client.cpp66 iovec iov; in Send()
/foundation/communication/netmanager_base/services/netmanagernative/src/netsys/wrapper/
H A Ddata_receiver.cpp74 iovec iov = {buffer_, sizeof(buffer_)}; in ReceiveMessage()
/foundation/communication/dsoftbus/components/nstackx/fillp/src/fillp_lib/include/
H A Dnet.h82 struct iovec sendIov[UDP_MAX_SEG];
/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/src/
H A Dcheck_gso_support.c45 struct iovec iov[IOV_CNT] = { in SendUdpSegment()
/foundation/communication/netmanager_ext/frameworks/native/netvpnclient/src/
H A Dvpn_interface.cpp97 iovec iov = { in RecvMsgFromUnixServer()
/foundation/filemanagement/storage_service/services/storage_daemon/netlink/src/
H A Dnetlink_listener.cpp34 struct iovec iov = { buffer, length }; in UeventKernelMulticastRecv()
/foundation/communication/dsoftbus/components/nstackx/fillp/include/
H A Dfillpinc.h175 * @param[in] iov A pointer which points to an array of iovec structures.
179 extern FILLP_INT DLL_API FtWritev(FILLP_INT fd, const struct iovec *iov, FILLP_INT iovCount);
188 * @param[in] iov A pointer which points to an array of iovec structures.
193 extern FILLP_INT DLL_API FtReadv(FILLP_INT fd, const struct iovec *iov, FILLP_INT iovCount);
/foundation/communication/dsoftbus/components/nstackx/fillp/src/app_lib/src/
H A Dsocket_app.c218 struct iovec msgIov; in SockSendFrame()
250 struct iovec *iov = FILLP_NULL_PTR; in SocketMsgGetLen()
560 struct iovec msgIov; in SockRecv()
783 FillpErrorType SockWritev(FILLP_INT sockIndex, const struct iovec *iov, FILLP_INT iovCount) in SockWritev()
798 msg.msg_iov = (struct iovec *)iov; in SockWritev()
804 FillpErrorType SockReadv(FILLP_INT sockIndex, const struct iovec *iov, FILLP_INT iovCount) in SockReadv()
819 msg.msg_iov = (struct iovec *)iov; in SockReadv()
H A Dapi.c167 * iov: A pointer which points to an array of iovec structures.
172 FILLP_INT DLL_API FtWritev(FILLP_INT fd, const struct iovec *iov, FILLP_INT iovCount) in FtWritev()
180 * iov: A pointer which points to an array of iovec structures.
185 FILLP_INT DLL_API FtReadv(FILLP_INT fd, const struct iovec *iov, FILLP_INT iovCount) in FtReadv()
/foundation/communication/netmanager_base/services/netmanagernative/src/manager/
H A Dvpn_manager.cpp255 iovec iov; in SendVpnInterfaceFdToClient()
/foundation/multimedia/audio_framework/services/audio_policy/server/src/service/manager/pnp_server/
H A Daudio_socket_thread.cpp110 iovec iov; in AudioPnpReadUeventMsg()

Completed in 17 milliseconds

12