Lines Matching refs:mInfo

86     SuccessOrExit(mEncoder.WriteInt8(aFrame ? aFrame->mInfo.mRxInfo.mRssi : 0)); // RSSI  in PackRadioFrame()
91 if (aFrame->mInfo.mRxInfo.mAckedWithFramePending) in PackRadioFrame()
96 if (aFrame->mInfo.mRxInfo.mAckedWithSecEnhAck) in PackRadioFrame()
106 SuccessOrExit(mEncoder.WriteUint8(aFrame ? aFrame->mInfo.mRxInfo.mLqi in PackRadioFrame()
109 …SuccessOrExit(mEncoder.WriteUint64(aFrame ? aFrame->mInfo.mRxInfo.mTimestamp : 0)); // The timesta… in PackRadioFrame()
117 …SuccessOrExit(mEncoder.WriteUint8(aFrame ? aFrame->mInfo.mRxInfo.mAckKeyId : 0)); // The ACK auxil… in PackRadioFrame()
119 …mEncoder.WriteUint32(aFrame ? aFrame->mInfo.mRxInfo.mAckFrameCounter : 0)); // The ACK auxiliary f… in PackRadioFrame()
464 aFrame.mInfo.mTxInfo.mRxChannelAfterTxDone = aFrame.mChannel; in DecodeStreamRawTxRequest()
465 aFrame.mInfo.mTxInfo.mMaxCsmaBackoffs = OPENTHREAD_CONFIG_MAC_MAX_CSMA_BACKOFFS_DIRECT; in DecodeStreamRawTxRequest()
466 …aFrame.mInfo.mTxInfo.mMaxFrameRetries = OPENTHREAD_CONFIG_MAC_DEFAULT_MAX_FRAME_RETRIES_DIREC… in DecodeStreamRawTxRequest()
467 aFrame.mInfo.mTxInfo.mCsmaCaEnabled = true; in DecodeStreamRawTxRequest()
468 aFrame.mInfo.mTxInfo.mIsHeaderUpdated = false; in DecodeStreamRawTxRequest()
469 aFrame.mInfo.mTxInfo.mIsARetx = false; in DecodeStreamRawTxRequest()
470 aFrame.mInfo.mTxInfo.mIsSecurityProcessed = false; in DecodeStreamRawTxRequest()
471 aFrame.mInfo.mTxInfo.mTxDelay = 0; in DecodeStreamRawTxRequest()
472 aFrame.mInfo.mTxInfo.mTxDelayBaseTime = 0; in DecodeStreamRawTxRequest()
473 aFrame.mInfo.mTxInfo.mTxPower = OT_RADIO_POWER_INVALID; in DecodeStreamRawTxRequest()
480 SuccessOrExit(mDecoder.ReadUint8(aFrame.mInfo.mTxInfo.mMaxCsmaBackoffs)); in DecodeStreamRawTxRequest()
481 SuccessOrExit(mDecoder.ReadUint8(aFrame.mInfo.mTxInfo.mMaxFrameRetries)); in DecodeStreamRawTxRequest()
484 aFrame.mInfo.mTxInfo.mCsmaCaEnabled = csmaEnable; in DecodeStreamRawTxRequest()
487 aFrame.mInfo.mTxInfo.mIsHeaderUpdated = isHeaderUpdated; in DecodeStreamRawTxRequest()
490 aFrame.mInfo.mTxInfo.mIsARetx = isARetx; in DecodeStreamRawTxRequest()
493 aFrame.mInfo.mTxInfo.mIsSecurityProcessed = isSecurityProcessed; in DecodeStreamRawTxRequest()
495 SuccessOrExit(mDecoder.ReadUint32(aFrame.mInfo.mTxInfo.mTxDelay)); in DecodeStreamRawTxRequest()
496 SuccessOrExit(mDecoder.ReadUint32(aFrame.mInfo.mTxInfo.mTxDelayBaseTime)); in DecodeStreamRawTxRequest()
497 SuccessOrExit(mDecoder.ReadUint8(aFrame.mInfo.mTxInfo.mRxChannelAfterTxDone)); in DecodeStreamRawTxRequest()
498 SuccessOrExit(mDecoder.ReadInt8(aFrame.mInfo.mTxInfo.mTxPower)); in DecodeStreamRawTxRequest()