Searched refs:aErrorFdSet (Results 1 – 6 of 6) sorted by relevance
/openthread-2.7.6/src/posix/platform/ |
D | platform-posix.h | 227 void platformUartUpdateFdSet(fd_set *aReadFdSet, fd_set *aWriteFdSet, fd_set *aErrorFdSet, int *aMa… 237 …latformUartProcess(const fd_set *aReadFdSet, const fd_set *aWriteFdSet, const fd_set *aErrorFdSet); 284 void platformNetifUpdateFdSet(fd_set *aReadFdSet, fd_set *aWriteFdSet, fd_set *aErrorFdSet, int *aM… 294 …atformNetifProcess(const fd_set *aReadFdSet, const fd_set *aWriteFdSet, const fd_set *aErrorFdSet); 330 const fd_set *aErrorFdSet); 345 fd_set * aErrorFdSet,
|
D | virtual_time.cpp | 164 fd_set * aErrorFdSet, in virtualTimeUpdateFdSet() argument 169 OT_UNUSED_VARIABLE(aErrorFdSet); in virtualTimeUpdateFdSet() 182 const fd_set *aErrorFdSet) in virtualTimeProcess() argument 190 OT_UNUSED_VARIABLE(aErrorFdSet); in virtualTimeProcess()
|
D | system.cpp | 264 static int trySelect(fd_set *aReadFdSet, fd_set *aWriteFdSet, fd_set *aErrorFdSet, int aMaxFd) in trySelect() argument 269 fd_set originErrorFdSet = *aErrorFdSet; in trySelect() 272 rval = select(aMaxFd + 1, aReadFdSet, aWriteFdSet, aErrorFdSet, &timeout); in trySelect() 278 *aErrorFdSet = originErrorFdSet; in trySelect()
|
D | netif.cpp | 1689 void platformNetifUpdateFdSet(fd_set *aReadFdSet, fd_set *aWriteFdSet, fd_set *aErrorFdSet, int *aM… argument 1700 FD_SET(sTunFd, aErrorFdSet); 1702 FD_SET(sNetlinkFd, aErrorFdSet); 1705 FD_SET(sMLDMonitorFd, aErrorFdSet); 1728 …latformNetifProcess(const fd_set *aReadFdSet, const fd_set *aWriteFdSet, const fd_set *aErrorFdSet) argument 1733 if (FD_ISSET(sTunFd, aErrorFdSet)) 1739 if (FD_ISSET(sNetlinkFd, aErrorFdSet)) 1746 if (FD_ISSET(sMLDMonitorFd, aErrorFdSet))
|
/openthread-2.7.6/examples/platforms/simulation/ |
D | uart.c | 179 void platformUartUpdateFdSet(fd_set *aReadFdSet, fd_set *aWriteFdSet, fd_set *aErrorFdSet, int *aMa… in platformUartUpdateFdSet() argument 185 if (aErrorFdSet != NULL) in platformUartUpdateFdSet() 187 FD_SET(s_in_fd, aErrorFdSet); in platformUartUpdateFdSet() 200 if (aErrorFdSet != NULL) in platformUartUpdateFdSet() 202 FD_SET(s_out_fd, aErrorFdSet); in platformUartUpdateFdSet()
|
D | platform-simulation.h | 195 void platformUartUpdateFdSet(fd_set *aReadFdSet, fd_set *aWriteFdSet, fd_set *aErrorFdSet, int *aMa…
|