Lines Matching refs:aContext
451 OT_TOOL_WEAK void trelDnssdUpdateFdSet(otSysMainloopContext *aContext) in trelDnssdUpdateFdSet() argument
456 OT_UNUSED_VARIABLE(aContext); in trelDnssdUpdateFdSet()
459 OT_TOOL_WEAK void trelDnssdProcess(otInstance *aInstance, const otSysMainloopContext *aContext) in trelDnssdProcess() argument
464 OT_UNUSED_VARIABLE(aContext); in trelDnssdProcess()
609 void platformTrelUpdateFdSet(otSysMainloopContext *aContext) in platformTrelUpdateFdSet() argument
611 assert(aContext != nullptr); in platformTrelUpdateFdSet()
615 FD_SET(sSocket, &aContext->mReadFdSet); in platformTrelUpdateFdSet()
619 FD_SET(sSocket, &aContext->mWriteFdSet); in platformTrelUpdateFdSet()
622 if (aContext->mMaxFd < sSocket) in platformTrelUpdateFdSet()
624 aContext->mMaxFd = sSocket; in platformTrelUpdateFdSet()
627 trelDnssdUpdateFdSet(aContext); in platformTrelUpdateFdSet()
633 void platformTrelProcess(otInstance *aInstance, const otSysMainloopContext *aContext) in platformTrelProcess() argument
637 if (FD_ISSET(sSocket, &aContext->mWriteFdSet)) in platformTrelProcess()
642 if (FD_ISSET(sSocket, &aContext->mReadFdSet)) in platformTrelProcess()
647 trelDnssdProcess(aInstance, aContext); in platformTrelProcess()