/openthread-3.4.0/src/posix/platform/ |
D | platform-posix.h | 193 void platformRadioUpdateFdSet(fd_set *aReadFdSet, fd_set *aWriteFdSet, int *aMaxFd, struct timeval … 227 …platformUartUpdateFdSet(fd_set *aReadFdSet, fd_set *aWriteFdSet, fd_set *aErrorFdSet, int *aMaxFd); 284 …latformNetifUpdateFdSet(fd_set *aReadFdSet, fd_set *aWriteFdSet, fd_set *aErrorFdSet, int *aMaxFd); 346 int *aMaxFd, 412 void platformTrelUpdateFdSet(fd_set *aReadFdSet, fd_set *aWriteFdSet, int *aMaxFd, struct timeval *…
|
D | trel.cpp | 391 OT_TOOL_WEAK void trelDnssdUpdateFdSet(fd_set *aReadFdSet, fd_set *aWriteFdSet, int *aMaxFd, struct… in trelDnssdUpdateFdSet() argument 398 OT_UNUSED_VARIABLE(aMaxFd); in trelDnssdUpdateFdSet() 528 void platformTrelUpdateFdSet(fd_set *aReadFdSet, fd_set *aWriteFdSet, int *aMaxFd, struct timeval *… in platformTrelUpdateFdSet() argument 530 assert((aReadFdSet != NULL) && (aWriteFdSet != NULL) && (aMaxFd != NULL) && (aTimeout != NULL)); in platformTrelUpdateFdSet() 541 if (*aMaxFd < sSocket) in platformTrelUpdateFdSet() 543 *aMaxFd = sSocket; in platformTrelUpdateFdSet() 546 trelDnssdUpdateFdSet(aReadFdSet, aWriteFdSet, aMaxFd, aTimeout); in platformTrelUpdateFdSet()
|
D | virtual_time.cpp | 165 int *aMaxFd, in virtualTimeUpdateFdSet() argument 173 if (*aMaxFd < sSockFd) in virtualTimeUpdateFdSet() 175 *aMaxFd = sSockFd; in virtualTimeUpdateFdSet()
|
D | vendor_interface_example.cpp | 111 void VendorInterface::UpdateFdSet(fd_set &aReadFdSet, fd_set &aWriteFdSet, int &aMaxFd, struct time… in UpdateFdSet() argument 115 OT_UNUSED_VARIABLE(aMaxFd); in UpdateFdSet()
|
D | resolver.cpp | 260 void Resolver::UpdateFdSet(fd_set *aReadFdSet, fd_set *aErrorFdSet, int *aMaxFd) in UpdateFdSet() argument 268 if (txn.mUdpFd > *aMaxFd) in UpdateFdSet() 270 *aMaxFd = txn.mUdpFd; in UpdateFdSet()
|
D | vendor_interface.hpp | 128 … void UpdateFdSet(fd_set &aReadFdSet, fd_set &aWriteFdSet, int &aMaxFd, struct timeval &aTimeout);
|
D | resolver.hpp | 81 void UpdateFdSet(fd_set *aReadFdSet, fd_set *aErrorFdSet, int *aMaxFd);
|
D | hdlc_interface.hpp | 129 … void UpdateFdSet(fd_set &aReadFdSet, fd_set &aWriteFdSet, int &aMaxFd, struct timeval &aTimeout);
|
D | system.cpp | 303 static int trySelect(fd_set *aReadFdSet, fd_set *aWriteFdSet, fd_set *aErrorFdSet, int aMaxFd) in trySelect() argument 311 rval = select(aMaxFd + 1, aReadFdSet, aWriteFdSet, aErrorFdSet, &timeout); in trySelect()
|
D | hdlc_interface.cpp | 337 void HdlcInterface::UpdateFdSet(fd_set &aReadFdSet, fd_set &aWriteFdSet, int &aMaxFd, struct timeva… in UpdateFdSet() argument 344 if (aMaxFd < mSockFd) in UpdateFdSet() 346 aMaxFd = mSockFd; in UpdateFdSet()
|
D | spi_interface.hpp | 131 … void UpdateFdSet(fd_set &aReadFdSet, fd_set &aWriteFdSet, int &aMaxFd, struct timeval &aTimeout);
|
D | spi_interface.cpp | 632 void SpiInterface::UpdateFdSet(fd_set &aReadFdSet, fd_set &aWriteFdSet, int &aMaxFd, struct timeval… in UpdateFdSet() argument 648 if (aMaxFd < mIntGpioValueFd) in UpdateFdSet() 650 aMaxFd = mIntGpioValueFd; in UpdateFdSet()
|
D | netif.cpp | 1950 …platformNetifUpdateFdSet(fd_set *aReadFdSet, fd_set *aWriteFdSet, fd_set *aErrorFdSet, int *aMaxFd) argument 1970 gResolver.UpdateFdSet(aReadFdSet, aErrorFdSet, aMaxFd); 1973 if (sTunFd > *aMaxFd) 1975 *aMaxFd = sTunFd; 1978 if (sNetlinkFd > *aMaxFd) 1980 *aMaxFd = sNetlinkFd; 1984 if (sMLDMonitorFd > *aMaxFd) 1986 *aMaxFd = sMLDMonitorFd;
|
D | radio.cpp | 316 void platformRadioUpdateFdSet(fd_set *aReadFdSet, fd_set *aWriteFdSet, int *aMaxFd, struct timeval … in platformRadioUpdateFdSet() argument 347 sRadioSpinel.GetSpinelInterface().UpdateFdSet(*aReadFdSet, *aWriteFdSet, *aMaxFd, *aTimeout); in platformRadioUpdateFdSet()
|
/openthread-3.4.0/examples/platforms/simulation/ |
D | uart.c | 173 … platformUartUpdateFdSet(fd_set *aReadFdSet, fd_set *aWriteFdSet, fd_set *aErrorFdSet, int *aMaxFd) in platformUartUpdateFdSet() argument 184 if (aMaxFd != NULL && *aMaxFd < s_in_fd) in platformUartUpdateFdSet() 186 *aMaxFd = s_in_fd; in platformUartUpdateFdSet() 199 if (aMaxFd != NULL && *aMaxFd < s_out_fd) in platformUartUpdateFdSet() 201 *aMaxFd = s_out_fd; in platformUartUpdateFdSet()
|
D | platform-simulation.h | 170 …rmRadioUpdateFdSet(fd_set *aReadFdSet, fd_set *aWriteFdSet, struct timeval *aTimeout, int *aMaxFd); 218 …platformUartUpdateFdSet(fd_set *aReadFdSet, fd_set *aWriteFdSet, fd_set *aErrorFdSet, int *aMaxFd); 294 …ormTrelUpdateFdSet(fd_set *aReadFdSet, fd_set *aWriteFdSet, struct timeval *aTimeout, int *aMaxFd);
|
D | trel.c | 424 …formTrelUpdateFdSet(fd_set *aReadFdSet, fd_set *aWriteFdSet, struct timeval *aTimeout, int *aMaxFd) in platformTrelUpdateFdSet() argument 433 if (aMaxFd != NULL && *aMaxFd < sRxFd) in platformTrelUpdateFdSet() 435 *aMaxFd = sRxFd; in platformTrelUpdateFdSet() 443 if (aMaxFd != NULL && *aMaxFd < sTxFd) in platformTrelUpdateFdSet() 445 *aMaxFd = sTxFd; in platformTrelUpdateFdSet()
|
D | radio.c | 860 …ormRadioUpdateFdSet(fd_set *aReadFdSet, fd_set *aWriteFdSet, struct timeval *aTimeout, int *aMaxFd) in platformRadioUpdateFdSet() argument 866 if (aMaxFd != NULL && *aMaxFd < sRxFd) in platformRadioUpdateFdSet() 868 *aMaxFd = sRxFd; in platformRadioUpdateFdSet() 876 if (aMaxFd != NULL && *aMaxFd < sTxFd) in platformRadioUpdateFdSet() 878 *aMaxFd = sTxFd; in platformRadioUpdateFdSet()
|