Home
last modified time | relevance | path

Searched refs:mTxSuccess (Results 1 – 9 of 9) sorted by relevance

/openthread-3.5.0/include/openthread/
Dhistory_tracker.h157 …bool mTxSuccess : 1; ///< Indicates TX success (e.g., ack received). Applicable for TX… member
Dthread.h160 uint32_t mTxSuccess; ///< The number of IPv6 packets successfully transmitted. member
/openthread-3.5.0/src/core/common/
Dmessage.hpp216 bool mTxSuccess : 1; // Whether the direct tx of the message was successful. member
1093 bool GetTxSuccess(void) const { return GetMetadata().mTxSuccess; } in GetTxSuccess()
1102 void SetTxSuccess(bool aTxSuccess) { GetMetadata().mTxSuccess = aTxSuccess; } in SetTxSuccess()
/openthread-3.5.0/src/cli/
Dcli_history.cpp584 OutputFormat("tx-success:%s", aInfo.mTxSuccess ? "yes" : "no"); in OutputRxTxEntryListFormat()
614 OutputFormat(aInfo.mTxSuccess ? " TX " : "TX-F"); in OutputRxTxEntryTableFormat()
Dcli.cpp2301 {&otIpCounters::mTxSuccess, "TxSuccess"}, in Process()
/openthread-3.5.0/src/core/thread/
Dindirect_sender.cpp525 Get<MeshForwarder>().mIpCounters.mTxSuccess++; in HandleSentFrameToChild()
Dmesh_forwarder.cpp1294 mIpCounters.mTxSuccess++; in UpdateSendMessage()
/openthread-3.5.0/src/core/utils/
Dhistory_tracker.cpp138 entry->mTxSuccess = (aType == kTxMessage) ? aMessage.GetTxSuccess() : true; in RecordMessage()
/openthread-3.5.0/src/ncp/
Dncp_base_mtd.cpp2670 return mEncoder.WriteUint32(otThreadGetIp6Counters(mInstance)->mTxSuccess); in HandlePropertyGet()
2812 SuccessOrExit(error = mEncoder.WriteUint32(counters->mTxSuccess)); in HandlePropertyGet()