Lines Matching refs:PingSender
47 PingSender::PingSender(otInstance *aInstance, OutputImplementer &aOutputImplementer) in PingSender() function in ot::Cli::PingSender
53 otError PingSender::Process(Arg aArgs[]) in Process()
139 config.mReplyCallback = PingSender::HandlePingReply; in Process()
140 config.mStatisticsCallback = PingSender::HandlePingStatistics; in Process()
156 otError PingSender::ParsePingInterval(const Arg &aArg, uint32_t &aInterval) in ParsePingInterval()
203 void PingSender::HandlePingReply(const otPingSenderReply *aReply, void *aContext) in HandlePingReply()
205 static_cast<PingSender *>(aContext)->HandlePingReply(aReply); in HandlePingReply()
208 void PingSender::HandlePingReply(const otPingSenderReply *aReply) in HandlePingReply()
215 void PingSender::HandlePingStatistics(const otPingSenderStatistics *aStatistics, void *aContext) in HandlePingStatistics()
217 static_cast<PingSender *>(aContext)->HandlePingStatistics(aStatistics); in HandlePingStatistics()
220 void PingSender::HandlePingStatistics(const otPingSenderStatistics *aStatistics) in HandlePingStatistics()
252 void PingSender::OutputResult(otError aError) { Interpreter::GetInterpreter().OutputResult(aError);… in OutputResult()