Lines Matching refs:mInstance

251     return mEncoder.WriteUintPacked(otLinkRawGetCaps(mInstance));  in HandlePropertyGet()
264 SuccessOrExit(error = mEncoder.WriteUint64(otLinkRawGetRadioTime(mInstance))); in HandlePropertyGet()
276 error = otLinkRawSrcMatchEnable(mInstance, mSrcMatchEnabled[mCurCommandIid]); in HandlePropertySet()
287 SuccessOrExit(error = otLinkRawSrcMatchClearShortEntries(mInstance)); in HandlePropertySet()
296 SuccessOrExit(error = otLinkRawSrcMatchAddShortEntry(mInstance, shortAddress)); in HandlePropertySet()
308 SuccessOrExit(error = otLinkRawSrcMatchClearExtEntries(mInstance)); in HandlePropertySet()
317 SuccessOrExit(error = otLinkRawSrcMatchAddExtEntry(mInstance, extAddress)); in HandlePropertySet()
331 error = otLinkRawSrcMatchClearShortEntry(mInstance, shortAddress); in HandlePropertyRemove()
345 error = otLinkRawSrcMatchClearExtEntry(mInstance, extAddress); in HandlePropertyRemove()
358 error = otLinkRawSrcMatchAddShortEntry(mInstance, shortAddress); in HandlePropertyInsert()
371 error = otLinkRawSrcMatchAddExtEntry(mInstance, extAddress); in HandlePropertyInsert()
386 error = otLinkRawSetReceiveDone(mInstance, nullptr); in HandlePropertySet()
390 error = otLinkRawSetReceiveDone(mInstance, &NcpBase::LinkRawReceiveDone); in HandlePropertySet()
404 error = otLinkRawSetShortAddress(mInstance, shortAddress); in HandlePropertySet()
417 error = otLinkRawSetAlternateShortAddress(mInstance, shortAddress); in HandlePropertySet()
512 VerifyOrExit(otLinkRawIsEnabled(mInstance), error = OT_ERROR_INVALID_STATE); in HandlePropertySet_SPINEL_PROP_STREAM_RAW()
514 frame = otLinkRawGetTransmitBuffer(mInstance); in HandlePropertySet_SPINEL_PROP_STREAM_RAW()
521 SuccessOrExit(error = otLinkRawTransmit(mInstance, &NcpBase::LinkRawTransmitDone)); in HandlePropertySet_SPINEL_PROP_STREAM_RAW()
565 otLinkRawSetMacKey(mInstance, keyIdMode, keyId, reinterpret_cast<const otMacKey *>(prevKey), in HandlePropertySet()
587 error = otLinkRawSetMacFrameCounterIfLarger(mInstance, frameCounter); in HandlePropertySet()
591 error = otLinkRawSetMacFrameCounter(mInstance, frameCounter); in HandlePropertySet()
626 error = otPlatRadioConfigureEnhAckProbing(mInstance, linkMetrics, shortAddress, extAddress); in HandlePropertySet()