Home
last modified time | relevance | path

Searched defs:aInstance (Results 1 – 25 of 282) sorted by relevance

12345678910>>...12

/aosp_15_r20/external/openthread/src/core/api/
H A Dlink_api.cpp45 uint8_t otLinkGetChannel(otInstance *aInstance) in otLinkGetChannel()
64 otError otLinkSetChannel(otInstance *aInstance, uint8_t aChannel) in otLinkSetChannel()
87 uint32_t otLinkGetSupportedChannelMask(otInstance *aInstance) in otLinkGetSupportedChannelMask()
92 otError otLinkSetSupportedChannelMask(otInstance *aInstance, uint32_t aChannelMask) in otLinkSetSupportedChannelMask()
105 const otExtAddress *otLinkGetExtendedAddress(otInstance *aInstance) in otLinkGetExtendedAddress()
110 otError otLinkSetExtendedAddress(otInstance *aInstance, const otExtAddress *aExtAddress) in otLinkSetExtendedAddress()
125 void otLinkGetFactoryAssignedIeeeEui64(otInstance *aInstance, otExtAddress *aEui64) in otLinkGetFactoryAssignedIeeeEui64()
130 otPanId otLinkGetPanId(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().GetPan… in otLinkGetPanId()
132 otError otLinkSetPanId(otInstance *aInstance, otPanId aPanId) in otLinkSetPanId()
147 uint32_t otLinkGetPollPeriod(otInstance *aInstance) in otLinkGetPollPeriod()
[all …]
H A Dthread_ftd_api.cpp45 uint16_t otThreadGetMaxAllowedChildren(otInstance *aInstance) in otThreadGetMaxAllowedChildren()
50 otError otThreadSetMaxAllowedChildren(otInstance *aInstance, uint16_t aMaxChildren) in otThreadSetMaxAllowedChildren()
55 uint8_t otThreadGetMaxChildIpAddresses(otInstance *aInstance) in otThreadGetMaxChildIpAddresses()
61 otError otThreadSetMaxChildIpAddresses(otInstance *aInstance, uint8_t aMaxIpAddresses) in otThreadSetMaxChildIpAddresses()
67 bool otThreadIsRouterEligible(otInstance *aInstance) in otThreadIsRouterEligible()
72 otError otThreadSetRouterEligible(otInstance *aInstance, bool aEligible) in otThreadSetRouterEligible()
77 otError otThreadSetPreferredRouterId(otInstance *aInstance, uint8_t aRouterId) in otThreadSetPreferredRouterId()
83 const otDeviceProperties *otThreadGetDeviceProperties(otInstance *aInstance) in otThreadGetDeviceProperties()
88 void otThreadSetDeviceProperties(otInstance *aInstance, const otDeviceProperties *aDeviceProperties) in otThreadSetDeviceProperties()
94 uint8_t otThreadGetLocalLeaderWeight(otInstance *aInstance) in otThreadGetLocalLeaderWeight()
[all …]
H A Dthread_api.cpp48 uint32_t otThreadGetChildTimeout(otInstance *aInstance) in otThreadGetChildTimeout()
53 void otThreadSetChildTimeout(otInstance *aInstance, uint32_t aTimeout) in otThreadSetChildTimeout()
58 const otExtendedPanId *otThreadGetExtendedPanId(otInstance *aInstance) in otThreadGetExtendedPanId()
63 otError otThreadSetExtendedPanId(otInstance *aInstance, const otExtendedPanId *aExtendedPanId) in otThreadSetExtendedPanId()
80 otError otThreadGetLeaderRloc(otInstance *aInstance, otIp6Address *aLeaderRloc) in otThreadGetLeaderRloc()
91 otLinkModeConfig otThreadGetLinkMode(otInstance *aInstance) in otThreadGetLinkMode()
100 otError otThreadSetLinkMode(otInstance *aInstance, otLinkModeConfig aConfig) in otThreadSetLinkMode()
105 void otThreadGetNetworkKey(otInstance *aInstance, otNetworkKey *aNetworkKey) in otThreadGetNetworkKey()
111 otNetworkKeyRef otThreadGetNetworkKeyRef(otInstance *aInstance) in otThreadGetNetworkKeyRef()
117 otError otThreadSetNetworkKey(otInstance *aInstance, const otNetworkKey *aKey) in otThreadSetNetworkKey()
[all …]
H A Dlink_raw_api.cpp52 otError otLinkRawSetReceiveDone(otInstance *aInstance, otLinkRawReceiveDone aCallback) in otLinkRawSetReceiveDone()
57 bool otLinkRawIsEnabled(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::LinkRaw>().I… in otLinkRawIsEnabled()
59 otError otLinkRawSetShortAddress(otInstance *aInstance, uint16_t aShortAddress) in otLinkRawSetShortAddress()
64 bool otLinkRawGetPromiscuous(otInstance *aInstance) { return AsCoreType(aInstance).Get<Radio>().Get… in otLinkRawGetPromiscuous()
66 otError otLinkRawSetPromiscuous(otInstance *aInstance, bool aEnable) in otLinkRawSetPromiscuous()
78 otError otLinkRawSleep(otInstance *aInstance) in otLinkRawSleep()
91 otError otLinkRawReceive(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::LinkRaw>().… in otLinkRawReceive()
93 otRadioFrame *otLinkRawGetTransmitBuffer(otInstance *aInstance) in otLinkRawGetTransmitBuffer()
98 otError otLinkRawTransmit(otInstance *aInstance, otLinkRawTransmitDone aCallback) in otLinkRawTransmit()
103 int8_t otLinkRawGetRssi(otInstance *aInstance) { return AsCoreType(aInstance).Get<Radio>().GetRssi(… in otLinkRawGetRssi()
[all …]
H A Dsrp_client_api.cpp45 otError otSrpClientStart(otInstance *aInstance, const otSockAddr *aServerSockAddr) in otSrpClientStart()
50 void otSrpClientStop(otInstance *aInstance) { return AsCoreType(aInstance).Get<Srp::Client>().Stop(… in otSrpClientStop()
52 bool otSrpClientIsRunning(otInstance *aInstance) { return AsCoreType(aInstance).Get<Srp::Client>().… in otSrpClientIsRunning()
54 const otSockAddr *otSrpClientGetServerAddress(otInstance *aInstance) in otSrpClientGetServerAddress()
59 void otSrpClientSetCallback(otInstance *aInstance, otSrpClientCallback aCallback, void *aContext) in otSrpClientSetCallback()
65 void otSrpClientEnableAutoStartMode(otInstance *aInstance, otSrpClientAutoStartCallback aCallback, … in otSrpClientEnableAutoStartMode()
70 void otSrpClientDisableAutoStartMode(otInstance *aInstance) in otSrpClientDisableAutoStartMode()
75 bool otSrpClientIsAutoStartModeEnabled(otInstance *aInstance) in otSrpClientIsAutoStartModeEnabled()
81 uint32_t otSrpClientGetTtl(otInstance *aInstance) { return AsCoreType(aInstance).Get<Srp::Client>()… in otSrpClientGetTtl()
83 void otSrpClientSetTtl(otInstance *aInstance, uint32_t aTtl) in otSrpClientSetTtl()
[all …]
H A Dmdns_api.cpp45 otError otMdnsSetEnabled(otInstance *aInstance, bool aEnable, uint32_t aInfraIfIndex) in otMdnsSetEnabled()
50 bool otMdnsIsEnabled(otInstance *aInstance) { return AsCoreType(aInstance).Get<Dns::Multicast::Core… in otMdnsIsEnabled()
52 void otMdnsSetQuestionUnicastAllowed(otInstance *aInstance, bool aAllow) in otMdnsSetQuestionUnicastAllowed()
57 bool otMdnsIsQuestionUnicastAllowed(otInstance *aInstance) in otMdnsIsQuestionUnicastAllowed()
62 void otMdnsSetConflictCallback(otInstance *aInstance, otMdnsConflictCallback aCallback) in otMdnsSetConflictCallback()
67 otError otMdnsRegisterHost(otInstance *aInstance, in otMdnsRegisterHost()
77 otError otMdnsUnregisterHost(otInstance *aInstance, const otMdnsHost *aHost) in otMdnsUnregisterHost()
84 otError otMdnsRegisterService(otInstance *aInstance, in otMdnsRegisterService()
94 otError otMdnsUnregisterService(otInstance *aInstance, const otMdnsService *aService) in otMdnsUnregisterService()
101 otError otMdnsRegisterKey(otInstance *aInstance, in otMdnsRegisterKey()
[all …]
H A Dborder_routing_api.cpp46 otError otBorderRoutingInit(otInstance *aInstance, uint32_t aInfraIfIndex, bool aInfraIfIsRunning) in otBorderRoutingInit()
51 otError otBorderRoutingSetEnabled(otInstance *aInstance, bool aEnabled) in otBorderRoutingSetEnabled()
56 otBorderRoutingState otBorderRoutingGetState(otInstance *aInstance) in otBorderRoutingGetState()
61 otRoutePreference otBorderRoutingGetRouteInfoOptionPreference(otInstance *aInstance) in otBorderRoutingGetRouteInfoOptionPreference()
67 void otBorderRoutingSetRouteInfoOptionPreference(otInstance *aInstance, otRoutePreference aPreferen… in otBorderRoutingSetRouteInfoOptionPreference()
73 void otBorderRoutingClearRouteInfoOptionPreference(otInstance *aInstance) in otBorderRoutingClearRouteInfoOptionPreference()
78 otError otBorderRoutingSetExtraRouterAdvertOptions(otInstance *aInstance, const uint8_t *aOptions, … in otBorderRoutingSetExtraRouterAdvertOptions()
83 otRoutePreference otBorderRoutingGetRoutePreference(otInstance *aInstance) in otBorderRoutingGetRoutePreference()
89 void otBorderRoutingSetRoutePreference(otInstance *aInstance, otRoutePreference aPreference) in otBorderRoutingSetRoutePreference()
95 void otBorderRoutingClearRoutePreference(otInstance *aInstance) in otBorderRoutingClearRoutePreference()
[all …]
H A Dip6_api.cpp47 otError otIp6SetEnabled(otInstance *aInstance, bool aEnabled) in otIp6SetEnabled()
71 bool otIp6IsEnabled(otInstance *aInstance) { return AsCoreType(aInstance).Get<ThreadNetif>().IsUp()… in otIp6IsEnabled()
73 const otNetifAddress *otIp6GetUnicastAddresses(otInstance *aInstance) in otIp6GetUnicastAddresses()
78 bool otIp6HasUnicastAddress(otInstance *aInstance, const otIp6Address *aAddress) in otIp6HasUnicastAddress()
83 otError otIp6AddUnicastAddress(otInstance *aInstance, const otNetifAddress *aAddress) in otIp6AddUnicastAddress()
88 otError otIp6RemoveUnicastAddress(otInstance *aInstance, const otIp6Address *aAddress) in otIp6RemoveUnicastAddress()
93 const otNetifMulticastAddress *otIp6GetMulticastAddresses(otInstance *aInstance) in otIp6GetMulticastAddresses()
98 otError otIp6SubscribeMulticastAddress(otInstance *aInstance, const otIp6Address *aAddress) in otIp6SubscribeMulticastAddress()
103 otError otIp6UnsubscribeMulticastAddress(otInstance *aInstance, const otIp6Address *aAddress) in otIp6UnsubscribeMulticastAddress()
108 void otIp6SetReceiveCallback(otInstance *aInstance, otIp6ReceiveCallback aCallback, void *aCallback… in otIp6SetReceiveCallback()
[all …]
H A Dcoap_secure_api.cpp48 otError otCoapSecureStart(otInstance *aInstance, uint16_t aPort) in otCoapSecureStart()
53 otError otCoapSecureStartWithMaxConnAttempts(otInstance *aInstance, in otCoapSecureStartWithMaxConnAttempts()
63 void otCoapSecureSetCertificate(otInstance *aInstance, in otCoapSecureSetCertificate()
73 void otCoapSecureSetCaCertificateChain(otInstance *aInstance, in otCoapSecureSetCaCertificateChain()
83 void otCoapSecureSetPsk(otInstance *aInstance, in otCoapSecureSetPsk()
97 otError otCoapSecureGetPeerCertificateBase64(otInstance *aInstance, in otCoapSecureGetPeerCertificateBase64()
109 void otCoapSecureSetSslAuthMode(otInstance *aInstance, bool aVerifyPeerCertificate) in otCoapSecureSetSslAuthMode()
114 otError otCoapSecureConnect(otInstance *aInstance, in otCoapSecureConnect()
122 void otCoapSecureDisconnect(otInstance *aInstance) { AsCoreType(aInstance).GetApplicationCoapSecure… in otCoapSecureDisconnect()
124 bool otCoapSecureIsConnected(otInstance *aInstance) in otCoapSecureIsConnected()
[all …]
H A Dble_secure_api.cpp49 otError otBleSecureStart(otInstance *aInstance, in otBleSecureStart()
58 otError otBleSecureSetTcatVendorInfo(otInstance *aInstance, const otTcatVendorInfo *aVendorInfo) in otBleSecureSetTcatVendorInfo()
63 otError otBleSecureTcatStart(otInstance *aInstance, otHandleTcatJoin aHandler) in otBleSecureTcatStart()
68 void otBleSecureStop(otInstance *aInstance) { AsCoreType(aInstance).Get<Ble::BleSecure>().Stop(); } in otBleSecureStop()
71 void otBleSecureSetPsk(otInstance *aInstance, in otBleSecureSetPsk()
86 otError otBleSecureGetPeerCertificateBase64(otInstance *aInstance, unsigned char *aPeerCert, size_t… in otBleSecureGetPeerCertificateBase64()
93 otError otBleSecureGetPeerSubjectAttributeByOid(otInstance *aInstance, in otBleSecureGetPeerSubjectAttributeByOid()
104 otError otBleSecureGetThreadAttributeFromPeerCertificate(otInstance *aInstance, in otBleSecureGetThreadAttributeFromPeerCertificate()
114 otError otBleSecureGetThreadAttributeFromOwnCertificate(otInstance *aInstance, in otBleSecureGetThreadAttributeFromOwnCertificate()
123 void otBleSecureSetSslAuthMode(otInstance *aInstance, bool aVerifyPeerCertificate) in otBleSecureSetSslAuthMode()
[all …]
H A Dchannel_manager_api.cpp48 void otChannelManagerRequestChannelChange(otInstance *aInstance, uint8_t aChannel) in otChannelManagerRequestChannelChange()
54 uint8_t otChannelManagerGetRequestedChannel(otInstance *aInstance) in otChannelManagerGetRequestedChannel()
60 uint16_t otChannelManagerGetDelay(otInstance *aInstance) in otChannelManagerGetDelay()
65 otError otChannelManagerSetDelay(otInstance *aInstance, uint16_t aDelay) in otChannelManagerSetDelay()
71 otError otChannelManagerRequestChannelSelect(otInstance *aInstance, bool aSkipQualityCheck) in otChannelManagerRequestChannelSelect()
77 void otChannelManagerSetAutoChannelSelectionEnabled(otInstance *aInstance, bool aEnabled) in otChannelManagerSetAutoChannelSelectionEnabled()
82 bool otChannelManagerGetAutoChannelSelectionEnabled(otInstance *aInstance) in otChannelManagerGetAutoChannelSelectionEnabled()
90 otError otChannelManagerRequestCslChannelSelect(otInstance *aInstance, bool aSkipQualityCheck) in otChannelManagerRequestCslChannelSelect()
96 void otChannelManagerSetAutoCslChannelSelectionEnabled(otInstance *aInstance, bool aEnabled) in otChannelManagerSetAutoCslChannelSelectionEnabled()
101 bool otChannelManagerGetAutoCslChannelSelectionEnabled(otInstance *aInstance) in otChannelManagerGetAutoCslChannelSelectionEnabled()
[all …]
H A Dbackbone_router_ftd_api.cpp46 void otBackboneRouterSetEnabled(otInstance *aInstance, bool aEnabled) in otBackboneRouterSetEnabled()
51 otBackboneRouterState otBackboneRouterGetState(otInstance *aInstance) in otBackboneRouterGetState()
56 void otBackboneRouterGetConfig(otInstance *aInstance, otBackboneRouterConfig *aConfig) in otBackboneRouterGetConfig()
63 otError otBackboneRouterSetConfig(otInstance *aInstance, const otBackboneRouterConfig *aConfig) in otBackboneRouterSetConfig()
70 otError otBackboneRouterRegister(otInstance *aInstance) in otBackboneRouterRegister()
75 uint8_t otBackboneRouterGetRegistrationJitter(otInstance *aInstance) in otBackboneRouterGetRegistrationJitter()
80 void otBackboneRouterSetRegistrationJitter(otInstance *aInstance, uint8_t aJitter) in otBackboneRouterSetRegistrationJitter()
85 otError otBackboneRouterGetDomainPrefix(otInstance *aInstance, otBorderRouterConfig *aConfig) in otBackboneRouterGetDomainPrefix()
90 void otBackboneRouterSetDomainPrefixCallback(otInstance *aInstance, in otBackboneRouterSetDomainPrefixCallback()
98 void otBackboneRouterSetNdProxyCallback(otInstance *aInstance, in otBackboneRouterSetNdProxyCallback()
[all …]
H A Dcommissioner_api.cpp45 otError otCommissionerStart(otInstance *aInstance, in otCommissionerStart()
53 const char *otCommissionerGetId(otInstance *aInstance) in otCommissionerGetId()
58 otError otCommissionerSetId(otInstance *aInstance, const char *aId) in otCommissionerSetId()
63 otError otCommissionerStop(otInstance *aInstance) { return AsCoreType(aInstance).Get<MeshCoP::Commi… in otCommissionerStop()
65 otError otCommissionerAddJoiner(otInstance *aInstance, const otExtAddress *aEui64, const char *aPsk… in otCommissionerAddJoiner()
82 otError otCommissionerAddJoinerWithDiscerner(otInstance *aInstance, in otCommissionerAddJoinerWithDiscerner()
90 otError otCommissionerGetNextJoinerInfo(otInstance *aInstance, uint16_t *aIterator, otJoinerInfo *a… in otCommissionerGetNextJoinerInfo()
95 otError otCommissionerRemoveJoiner(otInstance *aInstance, const otExtAddress *aEui64) in otCommissionerRemoveJoiner()
112 otError otCommissionerRemoveJoinerWithDiscerner(otInstance *aInstance, const otJoinerDiscerner *aDi… in otCommissionerRemoveJoinerWithDiscerner()
117 otError otCommissionerSetProvisioningUrl(otInstance *aInstance, const char *aProvisioningUrl) in otCommissionerSetProvisioningUrl()
[all …]
H A Dsrp_server_api.cpp45 const char *otSrpServerGetDomain(otInstance *aInstance) { return AsCoreType(aInstance).Get<Srp::Ser… in otSrpServerGetDomain()
47 otError otSrpServerSetDomain(otInstance *aInstance, const char *aDomain) in otSrpServerSetDomain()
52 otSrpServerState otSrpServerGetState(otInstance *aInstance) in otSrpServerGetState()
57 uint16_t otSrpServerGetPort(otInstance *aInstance) { return AsCoreType(aInstance).Get<Srp::Server>(… in otSrpServerGetPort()
59 otSrpServerAddressMode otSrpServerGetAddressMode(otInstance *aInstance) in otSrpServerGetAddressMode()
64 otError otSrpServerSetAddressMode(otInstance *aInstance, otSrpServerAddressMode aMode) in otSrpServerSetAddressMode()
69 uint8_t otSrpServerGetAnycastModeSequenceNumber(otInstance *aInstance) in otSrpServerGetAnycastModeSequenceNumber()
74 otError otSrpServerSetAnycastModeSequenceNumber(otInstance *aInstance, uint8_t aSequenceNumber) in otSrpServerSetAnycastModeSequenceNumber()
79 void otSrpServerSetEnabled(otInstance *aInstance, bool aEnabled) in otSrpServerSetEnabled()
85 void otSrpServerSetAutoEnableMode(otInstance *aInstance, bool aEnabled) in otSrpServerSetAutoEnableMode()
[all …]
H A Dnetdata_api.cpp43 otError otNetDataGet(otInstance *aInstance, bool aStable, uint8_t *aData, uint8_t *aDataLength) in otNetDataGet()
52 uint8_t otNetDataGetLength(otInstance *aInstance) in otNetDataGetLength()
57 uint8_t otNetDataGetMaxLength(otInstance *aInstance) in otNetDataGetMaxLength()
62 void otNetDataResetMaxLength(otInstance *aInstance) in otNetDataResetMaxLength()
67 otError otNetDataGetNextOnMeshPrefix(otInstance *aInstance, in otNetDataGetNextOnMeshPrefix()
77 bool otNetDataContainsOmrPrefix(otInstance *aInstance, const otIp6Prefix *aPrefix) in otNetDataContainsOmrPrefix()
83 otError otNetDataGetNextRoute(otInstance *aInstance, otNetworkDataIterator *aIterator, otExternalRo… in otNetDataGetNextRoute()
90 otError otNetDataGetNextService(otInstance *aInstance, otNetworkDataIterator *aIterator, otServiceC… in otNetDataGetNextService()
97 otError otNetDataGetNextLowpanContextInfo(otInstance *aInstance, in otNetDataGetNextLowpanContextInfo()
107 void otNetDataGetCommissioningDataset(otInstance *aInstance, otCommissioningDataset *aDataset) in otNetDataGetCommissioningDataset()
[all …]
H A Dudp_api.cpp43 otMessage *otUdpNewMessage(otInstance *aInstance, const otMessageSettings *aSettings) in otUdpNewMessage()
48 otError otUdpOpen(otInstance *aInstance, otUdpSocket *aSocket, otUdpReceive aCallback, void *aConte… in otUdpOpen()
53 bool otUdpIsOpen(otInstance *aInstance, const otUdpSocket *aSocket) in otUdpIsOpen()
58 otError otUdpClose(otInstance *aInstance, otUdpSocket *aSocket) in otUdpClose()
63 otError otUdpBind(otInstance *aInstance, otUdpSocket *aSocket, const otSockAddr *aSockName, otNetif… in otUdpBind()
68 otError otUdpConnect(otInstance *aInstance, otUdpSocket *aSocket, const otSockAddr *aSockName) in otUdpConnect()
73 otError otUdpSend(otInstance *aInstance, otUdpSocket *aSocket, otMessage *aMessage, const otMessage… in otUdpSend()
85 otUdpSocket *otUdpGetSockets(otInstance *aInstance) { return AsCoreType(aInstance).Get<Ip6::Udp>().… in otUdpGetSockets()
88 void otUdpForwardSetForwarder(otInstance *aInstance, otUdpForwarder aForwarder, void *aContext) in otUdpForwardSetForwarder()
93 void otUdpForwardReceive(otInstance *aInstance, in otUdpForwardReceive()
[all …]
H A Dinstance_api.cpp83 uint32_t otInstanceGetId(otInstance *aInstance) { return AsCoreType(aInstance).GetId(); } in otInstanceGetId()
85 bool otInstanceIsInitialized(otInstance *aInstance) in otInstanceIsInitialized()
95 void otInstanceFinalize(otInstance *aInstance) { AsCoreType(aInstance).Finalize(); } in otInstanceFinalize()
97 void otInstanceReset(otInstance *aInstance) { AsCoreType(aInstance).Reset(); } in otInstanceReset()
100 otError otInstanceResetToBootloader(otInstance *aInstance) { return AsCoreType(aInstance).ResetToBo… in otInstanceResetToBootloader()
104 uint64_t otInstanceGetUptime(otInstance *aInstance) { return AsCoreType(aInstance).Get<Uptime>().Ge… in otInstanceGetUptime()
106 void otInstanceGetUptimeAsString(otInstance *aInstance, char *aBuffer, uint16_t aSize) in otInstanceGetUptimeAsString()
115 otError otSetStateChangedCallback(otInstance *aInstance, otStateChangedCallback aCallback, void *aC… in otSetStateChangedCallback()
120 void otRemoveStateChangeCallback(otInstance *aInstance, otStateChangedCallback aCallback, void *aCo… in otRemoveStateChangeCallback()
125 void otInstanceFactoryReset(otInstance *aInstance) { AsCoreType(aInstance).FactoryReset(); } in otInstanceFactoryReset()
[all …]
H A Dnat64_api.cpp56 otError otNat64SetIp4Cidr(otInstance *aInstance, const otIp4Cidr *aCidr) in otNat64SetIp4Cidr()
61 void otNat64ClearIp4Cidr(otInstance *aInstance) { AsCoreType(aInstance).Get<Nat64::Translator>().Cl… in otNat64ClearIp4Cidr()
63 otMessage *otIp4NewMessage(otInstance *aInstance, const otMessageSettings *aSettings) in otIp4NewMessage()
68 otError otNat64Send(otInstance *aInstance, otMessage *aMessage) in otNat64Send()
73 void otNat64SetReceiveIp4Callback(otInstance *aInstance, otNat64ReceiveIp4Callback aCallback, void … in otNat64SetReceiveIp4Callback()
78 void otNat64InitAddressMappingIterator(otInstance *aInstance, otNat64AddressMappingIterator *aItera… in otNat64InitAddressMappingIterator()
85 otError otNat64GetNextAddressMapping(otInstance *aInstance, in otNat64GetNextAddressMapping()
95 void otNat64GetCounters(otInstance *aInstance, otNat64ProtocolCounters *aCounters) in otNat64GetCounters()
100 void otNat64GetErrorCounters(otInstance *aInstance, otNat64ErrorCounters *aCounters) in otNat64GetErrorCounters()
105 otError otNat64GetCidr(otInstance *aInstance, otIp4Cidr *aCidr) in otNat64GetCidr()
[all …]
H A Dnetdata_publisher_api.cpp47 void otNetDataPublishDnsSrpServiceAnycast(otInstance *aInstance, uint8_t aSequenceNumber) in otNetDataPublishDnsSrpServiceAnycast()
52 void otNetDataPublishDnsSrpServiceUnicast(otInstance *aInstance, const otIp6Address *aAddress, uint… in otNetDataPublishDnsSrpServiceUnicast()
57 void otNetDataPublishDnsSrpServiceUnicastMeshLocalEid(otInstance *aInstance, uint16_t aPort) in otNetDataPublishDnsSrpServiceUnicastMeshLocalEid()
62 bool otNetDataIsDnsSrpServiceAdded(otInstance *aInstance) in otNetDataIsDnsSrpServiceAdded()
67 void otNetDataSetDnsSrpServicePublisherCallback(otInstance *aInstance, in otNetDataSetDnsSrpServicePublisherCallback()
74 void otNetDataUnpublishDnsSrpService(otInstance *aInstance) in otNetDataUnpublishDnsSrpService()
83 otError otNetDataPublishOnMeshPrefix(otInstance *aInstance, const otBorderRouterConfig *aConfig) in otNetDataPublishOnMeshPrefix()
89 otError otNetDataPublishExternalRoute(otInstance *aInstance, const otExternalRouteConfig *aConfig) in otNetDataPublishExternalRoute()
95 otError otNetDataReplacePublishedExternalRoute(otInstance *aInstance, in otNetDataReplacePublishedExternalRoute()
103 bool otNetDataIsPrefixAdded(otInstance *aInstance, const otIp6Prefix *aPrefix) in otNetDataIsPrefixAdded()
[all …]
/aosp_15_r20/external/openthread/tests/fuzz/
H A Dfuzzer_platform.cpp108 void FuzzerPlatformProcess(otInstance *aInstance) in FuzzerPlatformProcess()
171 void otPlatAlarmMilliStartAt(otInstance *aInstance, uint32_t aT0, uint32_t aDt) in otPlatAlarmMilliStartAt()
179 void otPlatAlarmMilliStop(otInstance *aInstance) in otPlatAlarmMilliStop()
188 void otPlatAlarmMicroStartAt(otInstance *aInstance, uint32_t aT0, uint32_t aDt) in otPlatAlarmMicroStartAt()
196 void otPlatAlarmMicroStop(otInstance *aInstance) in otPlatAlarmMicroStop()
203 bool otDiagIsEnabled(otInstance *aInstance) in otDiagIsEnabled()
210 otError otDiagProcessCmd(otInstance *aInstance, uint8_t aArgsLength, char *aArgs[], char *aOutput, … in otDiagProcessCmd()
221 otError otDiagProcessCmdLine(otInstance *aInstance, const char *aString, char *aOutput, size_t aOut… in otDiagProcessCmdLine()
231 void otPlatReset(otInstance *aInstance) in otPlatReset()
238 otPlatResetReason otPlatGetResetReason(otInstance *aInstance) in otPlatGetResetReason()
[all …]
/aosp_15_r20/external/openthread/src/posix/platform/
H A Dradio.cpp219 void platformRadioHandleStateChange(otInstance *aInstance, otChangedFlags aFlags) in platformRadioHandleStateChange()
227 void otPlatRadioGetIeeeEui64(otInstance *aInstance, uint8_t *aIeeeEui64) in otPlatRadioGetIeeeEui64()
233 void otPlatRadioSetPanId(otInstance *aInstance, uint16_t panid) in otPlatRadioSetPanId()
239 void otPlatRadioSetExtendedAddress(otInstance *aInstance, const otExtAddress *aAddress) in otPlatRadioSetExtendedAddress()
252 void otPlatRadioSetShortAddress(otInstance *aInstance, uint16_t aAddress) in otPlatRadioSetShortAddress()
258 void otPlatRadioSetPromiscuous(otInstance *aInstance, bool aEnable) in otPlatRadioSetPromiscuous()
264 bool otPlatRadioIsEnabled(otInstance *aInstance) in otPlatRadioIsEnabled()
270 otError otPlatRadioEnable(otInstance *aInstance) { return GetRadioSpinel().Enable(aInstance); } in otPlatRadioEnable()
272 otError otPlatRadioDisable(otInstance *aInstance) in otPlatRadioDisable()
278 otError otPlatRadioSleep(otInstance *aInstance) in otPlatRadioSleep()
[all …]
/aosp_15_r20/external/openthread/examples/platforms/simulation/
H A Dradio.c355 void otPlatRadioGetIeeeEui64(otInstance *aInstance, uint8_t *aIeeeEui64) in otPlatRadioGetIeeeEui64()
369 void otPlatRadioSetPanId(otInstance *aInstance, otPanId aPanid) in otPlatRadioSetPanId()
379 void otPlatRadioSetExtendedAddress(otInstance *aInstance, const otExtAddress *aExtAddress) in otPlatRadioSetExtendedAddress()
388 void otPlatRadioSetShortAddress(otInstance *aInstance, otShortAddress aShortAddress) in otPlatRadioSetShortAddress()
397 void otPlatRadioSetPromiscuous(otInstance *aInstance, bool aEnable) in otPlatRadioSetPromiscuous()
447 bool otPlatRadioIsEnabled(otInstance *aInstance) in otPlatRadioIsEnabled()
454 otError otPlatRadioEnable(otInstance *aInstance) in otPlatRadioEnable()
464 otError otPlatRadioDisable(otInstance *aInstance) in otPlatRadioDisable()
477 otError otPlatRadioSleep(otInstance *aInstance) in otPlatRadioSleep()
494 otError otPlatRadioReceive(otInstance *aInstance, uint8_t aChannel) in otPlatRadioReceive()
[all …]
H A Ddnssd.c34 otPlatDnssdState otPlatDnssdGetState(otInstance *aInstance) in otPlatDnssdGetState()
41 void otPlatDnssdRegisterService(otInstance *aInstance, in otPlatDnssdRegisterService()
52 void otPlatDnssdUnregisterService(otInstance *aInstance, in otPlatDnssdUnregisterService()
63 void otPlatDnssdRegisterHost(otInstance *aInstance, in otPlatDnssdRegisterHost()
74 void otPlatDnssdUnregisterHost(otInstance *aInstance, in otPlatDnssdUnregisterHost()
85 void otPlatDnssdRegisterKey(otInstance *aInstance, in otPlatDnssdRegisterKey()
96 void otPlatDnssdUnregisterKey(otInstance *aInstance, in otPlatDnssdUnregisterKey()
107 void otPlatDnssdStartBrowser(otInstance *aInstance, const otPlatDnssdBrowser *aBrowser) in otPlatDnssdStartBrowser()
113 void otPlatDnssdStopBrowser(otInstance *aInstance, const otPlatDnssdBrowser *aBrowser) in otPlatDnssdStopBrowser()
119 void otPlatDnssdStartSrvResolver(otInstance *aInstance, const otPlatDnssdSrvResolver *aResolver) in otPlatDnssdStartSrvResolver()
[all …]
/aosp_15_r20/external/openthread/src/core/radio/
H A Dradio_platform.cpp48 extern "C" void otPlatRadioReceiveDone(otInstance *aInstance, otRadioFrame *aFrame, otError aError) in otPlatRadioReceiveDone()
68 extern "C" void otPlatRadioTxStarted(otInstance *aInstance, otRadioFrame *aFrame) in otPlatRadioTxStarted()
85 extern "C" void otPlatRadioTxDone(otInstance *aInstance, otRadioFrame *aFrame, otRadioFrame *aAckFr… in otPlatRadioTxDone()
108 extern "C" void otPlatRadioEnergyScanDone(otInstance *aInstance, int8_t aEnergyScanMaxRssi) in otPlatRadioEnergyScanDone()
119 extern "C" void otPlatRadioBusLatencyChanged(otInstance *aInstance) in otPlatRadioBusLatencyChanged()
131 extern "C" void otPlatDiagRadioReceiveDone(otInstance *aInstance, otRadioFrame *aFrame, otError aEr… in otPlatDiagRadioReceiveDone()
145 extern "C" void otPlatDiagRadioTransmitDone(otInstance *aInstance, otRadioFrame *aFrame, otError aE… in otPlatDiagRadioTransmitDone()
180 OT_TOOL_WEAK uint32_t otPlatRadioGetSupportedChannelMask(otInstance *aInstance) in otPlatRadioGetSupportedChannelMask()
187 OT_TOOL_WEAK uint32_t otPlatRadioGetPreferredChannelMask(otInstance *aInstance) in otPlatRadioGetPreferredChannelMask()
192 OT_TOOL_WEAK const char *otPlatRadioGetVersionString(otInstance *aInstance) in otPlatRadioGetVersionString()
[all …]
/aosp_15_r20/external/openthread/tests/unit/
H A Dtest_platform.cpp91 void testFreeInstance(otInstance *aInstance) in testFreeInstance()
245 OT_TOOL_WEAK void otPlatDiagSetOutputCallback(otInstance *aInstance, otPlatDiagOutputCallback aCall… in otPlatDiagSetOutputCallback()
575 otError otPlatRadioSetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t aThreshold) in otPlatRadioSetCcaEnergyDetectThreshold()
585 OT_TOOL_WEAK otError otPlatMdnsSetListeningEnabled(otInstance *aInstance, bool aEnable, uint32_t aI… in otPlatMdnsSetListeningEnabled()
594 OT_TOOL_WEAK void otPlatMdnsSendMulticast(otInstance *aInstance, otMessage *aMessage, uint32_t aInf… in otPlatMdnsSendMulticast()
601 OT_TOOL_WEAK void otPlatMdnsSendUnicast(otInstance *aInstance, in otPlatMdnsSendUnicast()
614 OT_TOOL_WEAK void otPlatDsoEnableListening(otInstance *aInstance, bool aEnable) in otPlatDsoEnableListening()
701 void otPlatDnsStartUpstreamQuery(otInstance *aInstance, otPlatDnsUpstreamQuery *aTxn, const otMessa… in otPlatDnsStartUpstreamQuery()
708 void otPlatDnsCancelUpstreamQuery(otInstance *aInstance, otPlatDnsUpstreamQuery *aTxn) in otPlatDnsCancelUpstreamQuery()
725 OT_TOOL_WEAK otError otPlatRadioSetChannelTargetPower(otInstance *aInstance, uint8_t aChannel, int1… in otPlatRadioSetChannelTargetPower()
[all …]

12345678910>>...12