Searched refs:aIndentSize (Results 1 – 8 of 8) sorted by relevance
/openthread-latest/src/cli/ |
D | cli.hpp | 261 void OutputMode(uint8_t aIndentSize, const otLinkModeConfig &aMode); 262 void OutputConnectivity(uint8_t aIndentSize, const otNetworkDiagConnectivity &aConnectivity); 263 void OutputRoute(uint8_t aIndentSize, const otNetworkDiagRoute &aRoute); 264 void OutputRouteData(uint8_t aIndentSize, const otNetworkDiagRouteData &aRouteData); 265 void OutputLeaderData(uint8_t aIndentSize, const otLeaderData &aLeaderData); 266 …void OutputNetworkDiagMacCounters(uint8_t aIndentSize, const otNetworkDiagMacCounters &aMacCounter… 267 …void OutputNetworkDiagMleCounters(uint8_t aIndentSize, const otNetworkDiagMleCounters &aMleCounter… 268 void OutputChildTableEntry(uint8_t aIndentSize, const otNetworkDiagChildEntry &aChildEntry);
|
D | cli_srp_client.hpp | 87 void OutputHostInfo(uint8_t aIndentSize, const otSrpClientHostInfo &aHostInfo); 88 void OutputServiceList(uint8_t aIndentSize, const otSrpClientService *aServices); 89 void OutputService(uint8_t aIndentSize, const otSrpClientService &aService);
|
D | cli.cpp | 7666 void Interpreter::OutputMode(uint8_t aIndentSize, const otLinkModeConfig &aMode) in OutputMode() argument 7668 OutputLine(aIndentSize, "RxOnWhenIdle: %d", aMode.mRxOnWhenIdle); in OutputMode() 7669 OutputLine(aIndentSize, "DeviceType: %d", aMode.mDeviceType); in OutputMode() 7670 OutputLine(aIndentSize, "NetworkData: %d", aMode.mNetworkData); in OutputMode() 7673 void Interpreter::OutputConnectivity(uint8_t aIndentSize, const otNetworkDiagConnectivity &aConnect… in OutputConnectivity() argument 7675 OutputLine(aIndentSize, "ParentPriority: %d", aConnectivity.mParentPriority); in OutputConnectivity() 7676 OutputLine(aIndentSize, "LinkQuality3: %u", aConnectivity.mLinkQuality3); in OutputConnectivity() 7677 OutputLine(aIndentSize, "LinkQuality2: %u", aConnectivity.mLinkQuality2); in OutputConnectivity() 7678 OutputLine(aIndentSize, "LinkQuality1: %u", aConnectivity.mLinkQuality1); in OutputConnectivity() 7679 OutputLine(aIndentSize, "LeaderCost: %u", aConnectivity.mLeaderCost); in OutputConnectivity() [all …]
|
D | cli_srp_client.cpp | 781 void SrpClient::OutputHostInfo(uint8_t aIndentSize, const otSrpClientHostInfo &aHostInfo) in OutputHostInfo() argument 783 OutputFormat(aIndentSize, "name:"); in OutputHostInfo() 818 void SrpClient::OutputServiceList(uint8_t aIndentSize, const otSrpClientService *aServices) in OutputServiceList() argument 822 OutputService(aIndentSize, *aServices); in OutputServiceList() 827 void SrpClient::OutputService(uint8_t aIndentSize, const otSrpClientService &aService) in OutputService() argument 829 OutputFormat(aIndentSize, "instance:\"%s\", name:\"%s", aService.mInstanceName, aService.mName); in OutputService()
|
D | cli_dns.cpp | 553 void Dns::OutputDnsServiceInfo(uint8_t aIndentSize, const otDnsServiceInfo &aServiceInfo) in OutputDnsServiceInfo() argument 555 …OutputLine(aIndentSize, "Port:%d, Priority:%d, Weight:%d, TTL:%lu", aServiceInfo.mPort, aServiceIn… in OutputDnsServiceInfo() 557 OutputLine(aIndentSize, "Host:%s", aServiceInfo.mHostNameBuffer); in OutputDnsServiceInfo() 558 OutputFormat(aIndentSize, "HostAddress:"); in OutputDnsServiceInfo() 561 OutputFormat(aIndentSize, "TXT:"); in OutputDnsServiceInfo()
|
D | cli_utils.cpp | 72 void Utils::OutputFormat(uint8_t aIndentSize, const char *aFormat, ...) in OutputFormat() argument 76 OutputSpaces(aIndentSize); in OutputFormat() 94 void Utils::OutputLine(uint8_t aIndentSize, const char *aFormat, ...) in OutputLine() argument 98 OutputSpaces(aIndentSize); in OutputLine()
|
D | cli_dns.hpp | 118 void OutputDnsServiceInfo(uint8_t aIndentSize, const otDnsServiceInfo &aServiceInfo);
|
D | cli_utils.hpp | 236 …void OutputFormat(uint8_t aIndentSize, const char *aFormat, ...) OT_TOOL_PRINTF_STYLE_FORMAT_ARG_C… 254 …void OutputLine(uint8_t aIndentSize, const char *aFormat, ...) OT_TOOL_PRINTF_STYLE_FORMAT_ARG_CHE…
|