Lines Matching defs:aInstance

40 uint8_t otLinkGetChannel(otInstance *aInstance)  in otLinkGetChannel()
59 otError otLinkSetChannel(otInstance *aInstance, uint8_t aChannel) in otLinkSetChannel()
83 uint8_t otLinkGetWakeupChannel(otInstance *aInstance) in otLinkGetWakeupChannel()
88 otError otLinkSetWakeupChannel(otInstance *aInstance, uint8_t aChannel) in otLinkSetWakeupChannel()
105 uint32_t otLinkGetSupportedChannelMask(otInstance *aInstance) in otLinkGetSupportedChannelMask()
110 otError otLinkSetSupportedChannelMask(otInstance *aInstance, uint32_t aChannelMask) in otLinkSetSupportedChannelMask()
123 const otExtAddress *otLinkGetExtendedAddress(otInstance *aInstance) in otLinkGetExtendedAddress()
128 otError otLinkSetExtendedAddress(otInstance *aInstance, const otExtAddress *aExtAddress) in otLinkSetExtendedAddress()
143 void otLinkGetFactoryAssignedIeeeEui64(otInstance *aInstance, otExtAddress *aEui64) in otLinkGetFactoryAssignedIeeeEui64()
148 otPanId otLinkGetPanId(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().GetPan… in otLinkGetPanId()
150 otError otLinkSetPanId(otInstance *aInstance, otPanId aPanId) in otLinkSetPanId()
165 uint32_t otLinkGetPollPeriod(otInstance *aInstance) in otLinkGetPollPeriod()
170 otError otLinkSetPollPeriod(otInstance *aInstance, uint32_t aPollPeriod) in otLinkSetPollPeriod()
175 otError otLinkSendDataRequest(otInstance *aInstance) in otLinkSendDataRequest()
180 otShortAddress otLinkGetShortAddress(otInstance *aInstance) in otLinkGetShortAddress()
185 otShortAddress otLinkGetAlternateShortAddress(otInstance *aInstance) in otLinkGetAlternateShortAddress()
190 uint8_t otLinkGetMaxFrameRetriesDirect(otInstance *aInstance) in otLinkGetMaxFrameRetriesDirect()
195 void otLinkSetMaxFrameRetriesDirect(otInstance *aInstance, uint8_t aMaxFrameRetriesDirect) in otLinkSetMaxFrameRetriesDirect()
202 uint8_t otLinkGetMaxFrameRetriesIndirect(otInstance *aInstance) in otLinkGetMaxFrameRetriesIndirect()
207 void otLinkSetMaxFrameRetriesIndirect(otInstance *aInstance, uint8_t aMaxFrameRetriesIndirect) in otLinkSetMaxFrameRetriesIndirect()
214 uint32_t otLinkGetFrameCounter(otInstance *aInstance) in otLinkGetFrameCounter()
221 otMacFilterAddressMode otLinkFilterGetAddressMode(otInstance *aInstance) in otLinkFilterGetAddressMode()
226 void otLinkFilterSetAddressMode(otInstance *aInstance, otMacFilterAddressMode aMode) in otLinkFilterSetAddressMode()
231 otError otLinkFilterAddAddress(otInstance *aInstance, const otExtAddress *aExtAddress) in otLinkFilterAddAddress()
236 void otLinkFilterRemoveAddress(otInstance *aInstance, const otExtAddress *aExtAddress) in otLinkFilterRemoveAddress()
241 void otLinkFilterClearAddresses(otInstance *aInstance) in otLinkFilterClearAddresses()
246 otError otLinkFilterGetNextAddress(otInstance *aInstance, otMacFilterIterator *aIterator, otMacFilt… in otLinkFilterGetNextAddress()
254 otError otLinkFilterAddRssIn(otInstance *aInstance, const otExtAddress *aExtAddress, int8_t aRss) in otLinkFilterAddRssIn()
259 void otLinkFilterRemoveRssIn(otInstance *aInstance, const otExtAddress *aExtAddress) in otLinkFilterRemoveRssIn()
264 void otLinkFilterSetDefaultRssIn(otInstance *aInstance, int8_t aRss) in otLinkFilterSetDefaultRssIn()
269 void otLinkFilterClearDefaultRssIn(otInstance *aInstance) in otLinkFilterClearDefaultRssIn()
274 void otLinkFilterClearAllRssIn(otInstance *aInstance) { AsCoreType(aInstance).Get<Mac::Filter>().Cl… in otLinkFilterClearAllRssIn()
276 otError otLinkFilterGetNextRssIn(otInstance *aInstance, otMacFilterIterator *aIterator, otMacFilter… in otLinkFilterGetNextRssIn()
285 void otLinkSetRadioFilterEnabled(otInstance *aInstance, bool aFilterEnabled) in otLinkSetRadioFilterEnabled()
290 bool otLinkIsRadioFilterEnabled(otInstance *aInstance) in otLinkIsRadioFilterEnabled()
298 uint8_t otLinkConvertRssToLinkQuality(otInstance *aInstance, int8_t aRss) in otLinkConvertRssToLinkQuality()
303 int8_t otLinkConvertLinkQualityToRss(otInstance *aInstance, uint8_t aLinkQuality) in otLinkConvertLinkQualityToRss()
310 const uint32_t *otLinkGetTxDirectRetrySuccessHistogram(otInstance *aInstance, uint8_t *aNumberOfEnt… in otLinkGetTxDirectRetrySuccessHistogram()
317 const uint32_t *otLinkGetTxIndirectRetrySuccessHistogram(otInstance *aInstance, uint8_t *aNumberOfE… in otLinkGetTxIndirectRetrySuccessHistogram()
333 void otLinkResetTxRetrySuccessHistogram(otInstance *aInstance) in otLinkResetTxRetrySuccessHistogram()
339 void otLinkSetPcapCallback(otInstance *aInstance, otLinkPcapCallback aPcapCallback, void *aCallback… in otLinkSetPcapCallback()
344 bool otLinkIsPromiscuous(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().IsPr… in otLinkIsPromiscuous()
346 otError otLinkSetPromiscuous(otInstance *aInstance, bool aPromiscuous) in otLinkSetPromiscuous()
360 otError otLinkSetEnabled(otInstance *aInstance, bool aEnable) in otLinkSetEnabled()
374 bool otLinkIsEnabled(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().IsEnable… in otLinkIsEnabled()
376 const otMacCounters *otLinkGetCounters(otInstance *aInstance) in otLinkGetCounters()
381 void otLinkResetCounters(otInstance *aInstance) { AsCoreType(aInstance).Get<Mac::Mac>().ResetCounte… in otLinkResetCounters()
383 otError otLinkActiveScan(otInstance *aInstance, in otLinkActiveScan()
392 bool otLinkIsActiveScanInProgress(otInstance *aInstance) in otLinkIsActiveScanInProgress()
397 otError otLinkEnergyScan(otInstance *aInstance, in otLinkEnergyScan()
406 bool otLinkIsEnergyScanInProgress(otInstance *aInstance) in otLinkIsEnergyScanInProgress()
411 bool otLinkIsInTransmitState(otInstance *aInstance) in otLinkIsInTransmitState()
416 uint16_t otLinkGetCcaFailureRate(otInstance *aInstance) in otLinkGetCcaFailureRate()
422 bool otLinkIsCslEnabled(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().IsCsl… in otLinkIsCslEnabled()
424 bool otLinkIsCslSupported(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().IsC… in otLinkIsCslSupported()
426 uint8_t otLinkGetCslChannel(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().G… in otLinkGetCslChannel()
428 otError otLinkSetCslChannel(otInstance *aInstance, uint8_t aChannel) in otLinkSetCslChannel()
440 uint32_t otLinkGetCslPeriod(otInstance *aInstance) in otLinkGetCslPeriod()
445 otError otLinkSetCslPeriod(otInstance *aInstance, uint32_t aPeriod) in otLinkSetCslPeriod()
467 uint32_t otLinkGetCslTimeout(otInstance *aInstance) in otLinkGetCslTimeout()
472 otError otLinkSetCslTimeout(otInstance *aInstance, uint32_t aTimeout) in otLinkSetCslTimeout()
486 otError otLinkSendEmptyData(otInstance *aInstance) in otLinkSendEmptyData()
492 otError otLinkSetRegion(otInstance *aInstance, uint16_t aRegionCode) in otLinkSetRegion()
497 otError otLinkGetRegion(otInstance *aInstance, uint16_t *aRegionCode) in otLinkGetRegion()
514 otError otLinkSetWakeUpListenEnabled(otInstance *aInstance, bool aEnable) in otLinkSetWakeUpListenEnabled()
519 bool otLinkIsWakeupListenEnabled(otInstance *aInstance) in otLinkIsWakeupListenEnabled()
524 void otLinkGetWakeupListenParameters(otInstance *aInstance, uint32_t *aInterval, uint32_t *aDuratio… in otLinkGetWakeupListenParameters()
529 otError otLinkSetWakeupListenParameters(otInstance *aInstance, uint32_t aInterval, uint32_t aDurati… in otLinkSetWakeupListenParameters()