Lines Matching refs:aContext
391 OT_TOOL_WEAK void trelDnssdUpdateFdSet(otSysMainloopContext *aContext) in trelDnssdUpdateFdSet() argument
396 OT_UNUSED_VARIABLE(aContext); in trelDnssdUpdateFdSet()
399 OT_TOOL_WEAK void trelDnssdProcess(otInstance *aInstance, const otSysMainloopContext *aContext) in trelDnssdProcess() argument
404 OT_UNUSED_VARIABLE(aContext); in trelDnssdProcess()
524 void platformTrelUpdateFdSet(otSysMainloopContext *aContext) in platformTrelUpdateFdSet() argument
526 assert(aContext != nullptr); in platformTrelUpdateFdSet()
530 FD_SET(sSocket, &aContext->mReadFdSet); in platformTrelUpdateFdSet()
534 FD_SET(sSocket, &aContext->mWriteFdSet); in platformTrelUpdateFdSet()
537 if (aContext->mMaxFd < sSocket) in platformTrelUpdateFdSet()
539 aContext->mMaxFd = sSocket; in platformTrelUpdateFdSet()
542 trelDnssdUpdateFdSet(aContext); in platformTrelUpdateFdSet()
548 void platformTrelProcess(otInstance *aInstance, const otSysMainloopContext *aContext) in platformTrelProcess() argument
552 if (FD_ISSET(sSocket, &aContext->mWriteFdSet)) in platformTrelProcess()
557 if (FD_ISSET(sSocket, &aContext->mReadFdSet)) in platformTrelProcess()
562 trelDnssdProcess(aInstance, aContext); in platformTrelProcess()