Home
last modified time | relevance | path

Searched refs:iovCount (Results 1 - 7 of 7) sorted by relevance

/foundation/communication/dsoftbus/components/nstackx/fillp/src/fillp_lib/src/
H A Dpcb.c104 if (conn->iovCount == 0) { in SpungePcbSendmsgInner()
111 mh.msg_iovlen = conn->iovCount; in SpungePcbSendmsgInner()
113 if (conn->iovCount == 1) { in SpungePcbSendmsgInner()
126 FILLP_LOGDTL("gso send %zu", conn->iovCount); in SpungePcbSendmsgInner()
130 for (size_t i = 0; i < conn->iovCount; i++) { in SpungePcbSendmsgInner()
149 conn->iovCount = 0; in SpungePcbSendmsgInner()
185 conn->sendIov[conn->iovCount].iov_len = (size_t)(FILLP_UINT)size; in SpungePcbSendmsg()
186 conn->sendIov[conn->iovCount].iov_base = (void *)buf; in SpungePcbSendmsg()
187 conn->iovCount++; in SpungePcbSendmsg()
189 if ((conn->iovCount < UDP_MAX_SE in SpungePcbSendmsg()
[all...]
H A Dnet.c144 conn->iovCount = 0; in FillpNetconnAlloc()
/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);
/foundation/communication/dsoftbus/components/nstackx/fillp/src/fillp_lib/include/
H A Dnet.h81 size_t iovCount; member
/foundation/communication/dsoftbus/components/nstackx/fillp/include/
H A Dfillpinc.h176 * @param[in] iovCount buffer count of data described by iov.
179 extern FILLP_INT DLL_API FtWritev(FILLP_INT fd, const struct iovec *iov, FILLP_INT iovCount);
189 * @param[in] iovCount buffers of data described by iov.
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 Dapi.c168 * iovCount: buffer count of data described by iov.
172 FILLP_INT DLL_API FtWritev(FILLP_INT fd, const struct iovec *iov, FILLP_INT iovCount) in FtWritev() argument
174 return SockWritev(fd, iov, iovCount); in FtWritev()
181 * iovCount: buffer count of data described by iov.
185 FILLP_INT DLL_API FtReadv(FILLP_INT fd, const struct iovec *iov, FILLP_INT iovCount) in FtReadv() argument
187 return SockReadv(fd, iov, iovCount); in FtReadv()
H A Dsocket_app.c783 FillpErrorType SockWritev(FILLP_INT sockIndex, const struct iovec *iov, FILLP_INT iovCount) in SockWritev() argument
793 if (iovCount == 0) { in SockWritev()
799 msg.msg_iovlen = (size_t)(FILLP_UINT)iovCount; in SockWritev()
804 FillpErrorType SockReadv(FILLP_INT sockIndex, const struct iovec *iov, FILLP_INT iovCount) in SockReadv() argument
814 if (iovCount == 0) { in SockReadv()
820 msg.msg_iovlen = (size_t)(FILLP_UINT)iovCount; in SockReadv()

Completed in 9 milliseconds