Home
last modified time | relevance | path

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

/openthread-2.7.6/src/posix/platform/
Dplatform-posix.h227 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,
Dvirtual_time.cpp164 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()
Dsystem.cpp264 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()
Dnetif.cpp1689 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/
Duart.c179 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()
Dplatform-simulation.h195 void platformUartUpdateFdSet(fd_set *aReadFdSet, fd_set *aWriteFdSet, fd_set *aErrorFdSet, int *aMa…