Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/dsoftbus/tests/adapter/unittest/
H A Dsoftbus_socket_test.cpp1315 SoftBusFdSet exceptFds; variable
1324 SoftBusSocketFdZero(&exceptFds);
1325 SoftBusSocketFdSet(socketFd, &exceptFds);
1326 fdSelect = exceptFds;
1342 SoftBusFdSet readFds, writeFds, exceptFds; variable
1349 SoftBusSocketFdZero(&exceptFds);
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
313 if (exceptFds != NULL) { in SoftBusSocketSelect()
314 tempExceptSet = (fd_set *)exceptFds->fdsBits; in SoftBusSocketSelect()
/ohos5.0/foundation/communication/dsoftbus/adapter/common/include/
H A Dsoftbus_adapter_socket.h155 …sSocketSelect(int32_t nfds, SoftBusFdSet *readFds, SoftBusFdSet *writeFds, SoftBusFdSet *exceptFds,
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/include/
H A Dcallbacks.h114 IO void *exceptFds, /* fd for errors */
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/src/
H A Dcallbacks.c317 IO void *exceptFds, /* fd for errors */ in FillpSelect() argument
321 return lwip_select(maxFd, rdFds, wrFds, exceptFds, timeout); in FillpSelect()
323 return select(maxFd, rdFds, wrFds, exceptFds, timeout); in FillpSelect()
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/include/
H A Dfillpcallbacks.h146 IN void *writeFds, IO void *exceptFds, IN void *timeVal);