Home
last modified time | relevance | path

Searched refs:aReply (Results 1 – 5 of 5) sorted by relevance

/openthread-3.7.0/src/cli/
Dcli_ping.cpp203 void PingSender::HandlePingReply(const otPingSenderReply *aReply, void *aContext) in HandlePingReply() argument
205 static_cast<PingSender *>(aContext)->HandlePingReply(aReply); in HandlePingReply()
208 void PingSender::HandlePingReply(const otPingSenderReply *aReply) in HandlePingReply() argument
210 OutputFormat("%u bytes from ", static_cast<uint16_t>(aReply->mSize + sizeof(otIcmp6Header))); in HandlePingReply()
211 OutputIp6Address(aReply->mSenderAddress); in HandlePingReply()
212 …OutputLine(": icmp_seq=%u hlim=%u time=%ums", aReply->mSequenceNumber, aReply->mHopLimit, aReply->… in HandlePingReply()
Dcli_ping.hpp82 static void HandlePingReply(const otPingSenderReply *aReply, void *aContext);
83 void HandlePingReply(const otPingSenderReply *aReply);
/openthread-3.7.0/include/openthread/
Dping_sender.h92 typedef void (*otPingSenderReplyCallback)(const otPingSenderReply *aReply, void *aContext);
/openthread-3.7.0/src/core/utils/
Dping_sender.cpp70 void PingSender::Config::InvokeReplyCallback(const Reply &aReply) const in InvokeReplyCallback()
73 mReplyCallback(&aReply, mCallbackContext); in InvokeReplyCallback()
Dping_sender.hpp137 void InvokeReplyCallback(const Reply &aReply) const;