Searched refs:aServices (Results 1 – 6 of 6) sorted by relevance
/openthread-3.4.0/src/cli/ |
D | cli_srp_client.hpp | 90 void OutputServiceList(uint8_t aIndentSize, const otSrpClientService *aServices); 95 const otSrpClientService *aServices, 100 const otSrpClientService *aServices,
|
D | cli_srp_client.cpp | 495 void SrpClient::OutputServiceList(uint8_t aIndentSize, const otSrpClientService *aServices) in OutputServiceList() argument 497 while (aServices != nullptr) in OutputServiceList() 499 OutputService(aIndentSize, *aServices); in OutputServiceList() 500 aServices = aServices->mNext; in OutputServiceList() 565 const otSrpClientService *aServices, in HandleCallback() argument 569 …static_cast<SrpClient *>(aContext)->HandleCallback(aError, aHostInfo, aServices, aRemovedServices); in HandleCallback() 574 const otSrpClientService *aServices, in HandleCallback() argument 586 OutputServiceList(kIndentSize, aServices); in HandleCallback()
|
/openthread-3.4.0/src/ncp/ |
D | ncp_base.hpp | 614 otError EncodeSrpClientServices(const otSrpClientService *aServices); 618 const otSrpClientService *aServices, 623 const otSrpClientService *aServices,
|
D | ncp_base_mtd.cpp | 3805 otError NcpBase::EncodeSrpClientServices(const otSrpClientService *aServices) in EncodeSrpClientServices() argument 3809 for (; aServices != nullptr; aServices = aServices->mNext) in EncodeSrpClientServices() 3813 SuccessOrExit(error = mEncoder.WriteUtf8(aServices->mName)); in EncodeSrpClientServices() 3814 SuccessOrExit(error = mEncoder.WriteUtf8(aServices->mInstanceName)); in EncodeSrpClientServices() 3815 SuccessOrExit(error = mEncoder.WriteUint16(aServices->mPort)); in EncodeSrpClientServices() 3816 SuccessOrExit(error = mEncoder.WriteUint16(aServices->mPriority)); in EncodeSrpClientServices() 3817 SuccessOrExit(error = mEncoder.WriteUint16(aServices->mWeight)); in EncodeSrpClientServices() 3976 const otSrpClientService *aServices, in HandleSrpClientCallback() argument 3980 …static_cast<NcpBase *>(aContext)->HandleSrpClientCallback(aError, aHostInfo, aServices, aRemovedSe… in HandleSrpClientCallback() 3985 const otSrpClientService *aServices, in HandleSrpClientCallback() argument [all …]
|
/openthread-3.4.0/include/openthread/ |
D | srp_client.h | 178 const otSrpClientService *aServices,
|
/openthread-3.4.0/tests/unit/ |
D | test_srp_server.cpp | 265 const otSrpClientService *aServices, in HandleSrpClientCallback() argument 277 OT_UNUSED_VARIABLE(aServices); in HandleSrpClientCallback()
|