Home
last modified time | relevance | path

Searched refs:xReadSet (Results 1 – 2 of 2) sorted by relevance

/hal_espressif-3.4.0/components/freemodbus/tcp_slave/port/
Dport_tcp_slave.c242 fd_set xReadSet; in xMBTCPPortRxPoll() local
252 FD_ZERO(&xReadSet); in xMBTCPPortRxPoll()
253 FD_SET(pxClientInfo->xSockId, &xReadSet); in xMBTCPPortRxPoll()
254 xRet = select(pxClientInfo->xSockId + 1, &xReadSet, NULL, NULL, &xTimeVal); in xMBTCPPortRxPoll()
268 if (FD_ISSET(pxClientInfo->xSockId, &xReadSet)) { in xMBTCPPortRxPoll()
428 fd_set xReadSet; in vMBTCPPortServerTask() local
444 FD_ZERO(&xReadSet); in vMBTCPPortServerTask()
446 FD_SET(xListenSock, &xReadSet); in vMBTCPPortServerTask()
458 FD_SET(xConfig.pxMbClientInfo[i]->xSockId, &xReadSet); in vMBTCPPortServerTask()
464 xErr = select(xMaxSd + 1 , &xReadSet , NULL , NULL , NULL); in vMBTCPPortServerTask()
[all …]
/hal_espressif-3.4.0/components/freemodbus/tcp_master/port/
Dport_tcp_master.c265 fd_set xReadSet = *pxFdSet; in vMBTCPPortMasterRxCheck() local
271 xRes = select(xSd + 1, &xReadSet, NULL, &xErrorSet, &xTimeout); in vMBTCPPortMasterRxCheck()
279 *pxFdSet = xReadSet; in vMBTCPPortMasterRxCheck()
664 fd_set xReadSet; in vMBTCPPortMasterTask() local
788 xReadSet = xConnSet; in vMBTCPPortMasterTask()
808 int xRes = vMBTCPPortMasterRxCheck(pxCurrInfo->xSockId, &xReadSet, xTime); in vMBTCPPortMasterTask()
834 if (FD_ISSET(pxCurrInfo->xSockId, &xReadSet)) { in vMBTCPPortMasterTask()