Home
last modified time | relevance | path

Searched refs:writeFds (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/components/nstackx/nstackx_core/platform/liteos/dfile/
H A Dsys_dfile_session.c25 fd_set writeFds, readFds; in WaitSocketEvent() local
34 FD_ZERO(&writeFds); in WaitSocketEvent()
41 FD_SET(fd, &writeFds); in WaitSocketEvent()
63 int32_t ret = select(nfds, &readFds, &writeFds, NULL, &tv); in WaitSocketEvent()
75 if (FD_ISSET(fd, &writeFds) && (canWrite != NULL)) { in WaitSocketEvent()
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/nstackx_core/platform/unix/dfile/
H A Dsys_dfile_session.c25 fd_set writeFds, readFds; in WaitSocketEvent() local
34 FD_ZERO(&writeFds); in WaitSocketEvent()
41 FD_SET(fd, &writeFds); in WaitSocketEvent()
63 int32_t ret = select(nfds, &readFds, &writeFds, NULL, &tv); in WaitSocketEvent()
75 if (FD_ISSET(fd, &writeFds) && (canWrite != NULL)) { in WaitSocketEvent()
/ohos5.0/foundation/communication/dsoftbus/tests/adapter/unittest/
H A Dsoftbus_socket_test.cpp1287 SoftBusFdSet writeFds; variable
1296 SoftBusSocketFdZero(&writeFds);
1297 SoftBusSocketFdSet(socketFd, &writeFds);
1298 fdSelect = writeFds;
1342 SoftBusFdSet readFds, writeFds, exceptFds; variable
1348 SoftBusSocketFdZero(&writeFds);
1350 int32_t ret = SoftBusSocketSelect(SET_SIZE, &readFds, &writeFds, &exceptFds, &tv);
1382 SoftBusFdSet readFds, writeFds, exceptFds; variable
1383 int32_t ret = SoftBusSocketSelect(SET_SIZE, &readFds, &writeFds, &exceptFds, &tv);
/ohos5.0/foundation/communication/dsoftbus/adapter/common/kernel/posix/
H A Dsoftbus_adapter_socket.c301 …int32_t nfds, SoftBusFdSet *readFds, SoftBusFdSet *writeFds, SoftBusFdSet *exceptFds, SoftBusSockT… in SoftBusSocketSelect() argument
310 if (writeFds != NULL) { in SoftBusSocketSelect()
311 tempWriteSet = (fd_set *)writeFds->fdsBits; in SoftBusSocketSelect()
/ohos5.0/foundation/communication/dsoftbus/adapter/common/include/
H A Dsoftbus_adapter_socket.h155 int32_t SoftBusSocketSelect(int32_t nfds, SoftBusFdSet *readFds, SoftBusFdSet *writeFds, SoftBusFdS…
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/include/
H A Dfillpcallbacks.h146 IN void *writeFds, IO void *exceptFds, IN void *timeVal);