Searched refs:aCounters (Results 1 – 5 of 5) sorted by relevance
/openthread-latest/src/core/net/ |
D | nat64_translator.hpp | 291 void GetCounters(ProtocolCounters &aCounters) const { aCounters = mCounters; } in GetCounters() 300 void GetErrorCounters(ErrorCounters &aCounters) const { aCounters = mErrorCounters; } in GetErrorCounters()
|
/openthread-latest/src/core/api/ |
D | nat64_api.cpp | 86 void otNat64GetCounters(otInstance *aInstance, otNat64ProtocolCounters *aCounters) in otNat64GetCounters() argument 88 AsCoreType(aInstance).Get<Nat64::Translator>().GetCounters(AsCoreType(aCounters)); in otNat64GetCounters() 91 void otNat64GetErrorCounters(otInstance *aInstance, otNat64ErrorCounters *aCounters) in otNat64GetErrorCounters() argument 93 AsCoreType(aInstance).Get<Nat64::Translator>().GetErrorCounters(AsCoreType(aCounters)); in otNat64GetErrorCounters()
|
/openthread-latest/include/openthread/ |
D | nat64.h | 141 void otNat64GetCounters(otInstance *aInstance, otNat64ProtocolCounters *aCounters); 151 void otNat64GetErrorCounters(otInstance *aInstance, otNat64ErrorCounters *aCounters);
|
/openthread-latest/src/cli/ |
D | cli.hpp | 272 void OutputTrelCounters(const otTrelCounters &aCounters); 275 void OutputNat64Counters(const otNat64Counters &aCounters); 293 void OutputBorderAgentCounters(const otBorderAgentCounters &aCounters);
|
D | cli.cpp | 668 void Interpreter::OutputBorderAgentCounters(const otBorderAgentCounters &aCounters) in OutputBorderAgentCounters() argument 699 OutputLine("%s: %lu", counter.mName, ToUlong(aCounters.*counter.mValuePtr)); in OutputBorderAgentCounters() 1008 void Interpreter::OutputNat64Counters(const otNat64Counters &aCounters) in OutputNat64Counters() argument 1012 OutputFormat("| %8s ", Uint64ToString(aCounters.m4To6Packets, u64StringBuffer)); in OutputNat64Counters() 1013 OutputFormat("| %12s ", Uint64ToString(aCounters.m4To6Bytes, u64StringBuffer)); in OutputNat64Counters() 1014 OutputFormat("| %8s ", Uint64ToString(aCounters.m6To4Packets, u64StringBuffer)); in OutputNat64Counters() 1015 OutputLine("| %12s |", Uint64ToString(aCounters.m6To4Bytes, u64StringBuffer)); in OutputNat64Counters() 7268 void Interpreter::OutputTrelCounters(const otTrelCounters &aCounters) in OutputTrelCounters() argument 7272 OutputFormat("Inbound: Packets %s ", Uint64ToString(aCounters.mRxPackets, u64StringBuffer)); in OutputTrelCounters() 7273 OutputLine("Bytes %s", Uint64ToString(aCounters.mRxBytes, u64StringBuffer)); in OutputTrelCounters() [all …]
|