Home
last modified time | relevance | path

Searched refs:otError (Results 1 – 25 of 249) sorted by relevance

12345678910

/openthread-3.6.0/src/lib/spinel/
Dspinel_encoder.hpp80 otError BeginFrame(Spinel::Buffer::Priority aPriority);
98 otError BeginFrame(uint8_t aHeader, unsigned int aCommand);
121 otError BeginFrame(uint8_t aHeader, unsigned int aCommand, spinel_prop_key_t aKey);
138 otError OverwriteWithLastStatusError(spinel_status_t aStatus);
157 otError EndFrame(void);
175 otError WriteBool(bool aBool) { return mNcpBuffer.InFrameFeedByte(aBool ? 0x01 : 0x00); } in WriteBool()
193 otError WriteUint8(uint8_t aUint8) { return mNcpBuffer.InFrameFeedByte(aUint8); } in WriteUint8()
211 otError WriteInt8(int8_t aInt8) { return WriteUint8(static_cast<uint8_t>(aInt8)); } in WriteInt8()
229 otError WriteUint16(uint16_t aUint16);
247 otError WriteInt16(int16_t aInt16) { return WriteUint16(static_cast<uint16_t>(aInt16)); } in WriteInt16()
[all …]
Dspinel_decoder.hpp134 otError ReadBool(bool &aBool);
147 otError ReadInt8(int8_t &aInt8);
160 otError ReadUint8(uint8_t &aUint8);
173 otError ReadInt16(int16_t &aInt16);
186 otError ReadUint16(uint16_t &aUint16);
199 otError ReadInt32(int32_t &aInt32);
212 otError ReadUint32(uint32_t &aUint32);
225 otError ReadInt64(int64_t &aInt64);
238 otError ReadUint64(uint64_t &aUint64);
251 otError ReadUintPacked(unsigned int &aUint);
[all …]
Dradio_spinel.hpp216 otError SetPromiscuous(bool aEnable);
228 otError SetRxOnWhenIdle(bool aEnable);
240 otError SetShortAddress(uint16_t aAddress);
253 otError GetIeeeEui64(uint8_t *aIeeeEui64);
265 otError SetExtendedAddress(const otExtAddress &aExtAddress);
277 otError SetPanId(uint16_t aPanId);
289 otError GetTransmitPower(int8_t &aPower);
301 otError SetTransmitPower(int8_t aPower);
313 otError GetCcaEnergyDetectThreshold(int8_t &aThreshold);
325 otError SetCcaEnergyDetectThreshold(int8_t aThreshold);
[all …]
Dspinel_decoder.cpp70 otError Decoder::ReadBool(bool &aBool) in ReadBool()
72 otError error = OT_ERROR_NONE; in ReadBool()
95 otError Decoder::ReadUint8(uint8_t &aUint8) in ReadUint8()
97 otError error = OT_ERROR_NONE; in ReadUint8()
107 otError Decoder::ReadInt8(int8_t &aInt8) in ReadInt8()
109 otError error = OT_ERROR_NONE; in ReadInt8()
119 otError Decoder::ReadUint16(uint16_t &aUint16) in ReadUint16()
121 otError error = OT_ERROR_NONE; in ReadUint16()
133 otError Decoder::ReadInt16(int16_t &aInt16) in ReadInt16()
135 otError error = OT_ERROR_NONE; in ReadInt16()
[all …]
Dspinel_encoder.cpp42 otError Encoder::BeginFrame(Spinel::Buffer::Priority aPriority) in BeginFrame()
49 otError Encoder::BeginFrame(uint8_t aHeader, unsigned int aCommand) in BeginFrame()
51 otError error = OT_ERROR_NONE; in BeginFrame()
71 otError Encoder::BeginFrame(uint8_t aHeader, unsigned int aCommand, spinel_prop_key_t aKey) in BeginFrame()
73 otError error = OT_ERROR_NONE; in BeginFrame()
90 otError Encoder::OverwriteWithLastStatusError(spinel_status_t aStatus) in OverwriteWithLastStatusError()
92 otError error = OT_ERROR_NONE; in OverwriteWithLastStatusError()
102 otError Encoder::EndFrame(void) in EndFrame()
104 otError error = OT_ERROR_NONE; in EndFrame()
117 otError Encoder::WriteUint16(uint16_t aUint16) in WriteUint16()
[all …]
/openthread-3.6.0/src/core/utils/
Dparse_cmdline.hpp70 otError ParseAsUint8(const char *aString, uint8_t &aUint8);
84 otError ParseAsUint16(const char *aString, uint16_t &aUint16);
98 otError ParseAsUint32(const char *aString, uint32_t &aUint32);
112 otError ParseAsUint64(const char *aString, uint64_t &aUint64);
127 otError ParseAsInt8(const char *aString, int8_t &aInt8);
142 otError ParseAsInt16(const char *aString, int16_t &aInt16);
157 otError ParseAsInt32(const char *aString, int32_t &aInt32);
171 otError ParseAsBool(const char *aString, bool &aBool);
185 otError ParseAsIp6Address(const char *aString, otIp6Address &aAddress);
197 otError ParseAsIp4Address(const char *aString, otIp4Address &aAddress);
[all …]
/openthread-3.6.0/include/openthread/platform/
Dcrypto.h261 otError otPlatCryptoImportKey(otCryptoKeyRef *aKeyRef,
284 otError otPlatCryptoExportKey(otCryptoKeyRef aKeyRef, uint8_t *aBuffer, size_t aBufferLen, size_t *…
297 otError otPlatCryptoDestroyKey(otCryptoKeyRef aKeyRef);
325 otError otPlatCryptoHmacSha256Init(otCryptoContext *aContext);
337 otError otPlatCryptoHmacSha256Deinit(otCryptoContext *aContext);
350 otError otPlatCryptoHmacSha256Start(otCryptoContext *aContext, const otCryptoKey *aKey);
364 otError otPlatCryptoHmacSha256Update(otCryptoContext *aContext, const void *aBuf, uint16_t aBufLeng…
378 otError otPlatCryptoHmacSha256Finish(otCryptoContext *aContext, uint8_t *aBuf, size_t aBufLength);
394 otError otPlatCryptoAesInit(otCryptoContext *aContext);
407 otError otPlatCryptoAesSetKey(otCryptoContext *aContext, const otCryptoKey *aKey);
[all …]
Ddiag.h86 otError otPlatDiagProcess(otInstance *aInstance,
132 void otPlatDiagRadioReceived(otInstance *aInstance, otRadioFrame *aFrame, otError aError);
155 otError otPlatDiagGpioSet(uint32_t aGpio, bool aValue);
170 otError otPlatDiagGpioGet(uint32_t aGpio, bool *aValue);
185 otError otPlatDiagGpioSetMode(uint32_t aGpio, otGpioMode aMode);
201 otError otPlatDiagGpioGetMode(uint32_t aGpio, otGpioMode *aMode);
215 otError otPlatDiagRadioSetRawPowerSetting(otInstance *aInstance,
234 otError otPlatDiagRadioGetRawPowerSetting(otInstance *aInstance,
248 otError otPlatDiagRadioRawPowerSettingEnable(otInstance *aInstance, bool aEnable);
261 otError otPlatDiagRadioTransmitCarrier(otInstance *aInstance, bool aEnable);
[all …]
Dradio.h537 otError otPlatRadioGetTransmitPower(otInstance *aInstance, int8_t *aPower);
552 otError otPlatRadioSetTransmitPower(otInstance *aInstance, int8_t aPower);
565 otError otPlatRadioGetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t *aThreshold);
578 otError otPlatRadioSetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t aThreshold);
591 otError otPlatRadioGetFemLnaGain(otInstance *aInstance, int8_t *aGain);
603 otError otPlatRadioSetFemLnaGain(otInstance *aInstance, int8_t aGain);
774 otError otPlatRadioEnable(otInstance *aInstance);
785 otError otPlatRadioDisable(otInstance *aInstance);
807 otError otPlatRadioSleep(otInstance *aInstance);
819 otError otPlatRadioReceive(otInstance *aInstance, uint8_t aChannel);
[all …]
Dudp.h53 otError otPlatUdpSocket(otUdpSocket *aUdpSocket);
64 otError otPlatUdpClose(otUdpSocket *aUdpSocket);
75 otError otPlatUdpBind(otUdpSocket *aUdpSocket);
89 otError otPlatUdpBindToNetif(otUdpSocket *aUdpSocket, otNetifIdentifier aNetifIdentifier);
100 otError otPlatUdpConnect(otUdpSocket *aUdpSocket);
113 otError otPlatUdpSend(otUdpSocket *aUdpSocket, otMessage *aMessage, const otMessageInfo *aMessageIn…
128 otError otPlatUdpJoinMulticastGroup(otUdpSocket *aUdpSocket,
145 otError otPlatUdpLeaveMulticastGroup(otUdpSocket *aUdpSocket,
/openthread-3.6.0/include/openthread/
Dlink_raw.h63 typedef void (*otLinkRawReceiveDone)(otInstance *aInstance, otRadioFrame *aFrame, otError aError);
77 otError otLinkRawSetReceiveDone(otInstance *aInstance, otLinkRawReceiveDone aCallback);
111 otError otLinkRawSetPromiscuous(otInstance *aInstance, bool aEnable);
123 otError otLinkRawSetShortAddress(otInstance *aInstance, uint16_t aShortAddress);
136 otError otLinkRawSleep(otInstance *aInstance);
148 otError otLinkRawReceive(otInstance *aInstance);
180 otError aError);
199 otError otLinkRawTransmit(otInstance *aInstance, otLinkRawTransmitDone aCallback);
244 otError otLinkRawEnergyScan(otInstance *aInstance,
259 otError otLinkRawSrcMatchEnable(otInstance *aInstance, bool aEnable);
[all …]
Ddns_client.h217 typedef void (*otDnsAddressCallback)(otError aError, const otDnsAddressResponse *aResponse, void *a…
238 otError otDnsClientResolveAddress(otInstance *aInstance,
268 otError otDnsClientResolveIp4Address(otInstance *aInstance,
287 otError otDnsAddressResponseGetHostName(const otDnsAddressResponse *aResponse,
312 otError otDnsAddressResponseGetAddress(const otDnsAddressResponse *aResponse,
341 typedef void (*otDnsBrowseCallback)(otError aError, const otDnsBrowseResponse *aResponse, void *aCo…
382 otError otDnsClientBrowse(otInstance *aInstance,
401 otError otDnsBrowseResponseGetServiceName(const otDnsBrowseResponse *aResponse,
427 otError otDnsBrowseResponseGetServiceInstance(const otDnsBrowseResponse *aResponse,
460 otError otDnsBrowseResponseGetServiceInfo(const otDnsBrowseResponse *aResponse,
[all …]
Dcoap.h347 otError aResult);
378 typedef otError (*otCoapBlockwiseReceiveHook)(void *aContext,
405 typedef otError (*otCoapBlockwiseTransmitHook)(void *aContext,
509 otError otCoapMessageInitResponse(otMessage *aResponse, const otMessage *aRequest, otCoapType aType…
522 otError otCoapMessageSetToken(otMessage *aMessage, const uint8_t *aToken, uint8_t aTokenLength);
552 otError otCoapMessageAppendContentFormatOption(otMessage *aMessage, otCoapOptionContentFormat aCont…
567 otError otCoapMessageAppendOption(otMessage *aMessage, uint16_t aNumber, uint16_t aLength, const vo…
583 otError otCoapMessageAppendUintOption(otMessage *aMessage, uint16_t aNumber, uint32_t aValue);
596 otError otCoapMessageAppendObserveOption(otMessage *aMessage, uint32_t aObserve);
609 otError otCoapMessageAppendUriPathOptions(otMessage *aMessage, const char *aUriPath);
[all …]
Dthread.h244 otError otThreadSetEnabled(otInstance *aInstance, bool aEnabled);
285 otError otThreadDiscover(otInstance *aInstance,
318 otError otThreadSetJoinerAdvertisement(otInstance *aInstance,
376 otError otThreadSetExtendedPanId(otInstance *aInstance, const otExtendedPanId *aExtendedPanId);
389 otError otThreadGetLeaderRloc(otInstance *aInstance, otIp6Address *aLeaderRloc);
414 otError otThreadSetLinkMode(otInstance *aInstance, otLinkModeConfig aConfig);
457 otError otThreadSetNetworkKey(otInstance *aInstance, const otNetworkKey *aKey);
477 otError otThreadSetNetworkKeyRef(otInstance *aInstance, otNetworkKeyRef aKeyRef);
523 otError otThreadSetMeshLocalPrefix(otInstance *aInstance, const otMeshLocalPrefix *aMeshLocalPrefix…
581 otError otThreadGetServiceAloc(otInstance *aInstance, uint8_t aServiceId, otIp6Address *aServiceAlo…
[all …]
/openthread-3.6.0/src/ncp/
Dncp_base.hpp184 otError StreamWrite(int aStreamId, const uint8_t *aDataPtr, int aDataLen);
231 typedef otError (NcpBase::*PropertyHandler)(void);
265 otError HandleCommand(uint8_t aHeader);
279 …bool HandlePropertySetForSpecialProperties(uint8_t aHeader, spinel_prop_key_t aKey, otError &aE…
280 otError HandleCommandPropertySet(uint8_t aHeader, spinel_prop_key_t aKey);
281otError HandleCommandPropertyInsertRemove(uint8_t aHeader, spinel_prop_key_t aKey, unsigned int aC…
283 otError WriteLastStatusFrame(uint8_t aHeader, spinel_status_t aLastStatus);
284otError WritePropertyValueIsFrame(uint8_t aHeader, spinel_prop_key_t aPropKey, bool aIsGetResponse…
285 otError WritePropertyValueInsertedRemovedFrame(uint8_t aHeader,
291 otError SendQueuedResponses(void);
[all …]
Dncp_base_ftd.cpp62 otError NcpBase::EncodeChildInfo(const otChildInfo &aChildInfo) in EncodeChildInfo()
64 otError error = OT_ERROR_NONE; in EncodeChildInfo()
129 otError error = OT_ERROR_NONE; in HandleNeighborTableChanged()
197 template <> otError NcpBase::HandlePropertyGet<SPINEL_PROP_THREAD_LOCAL_LEADER_WEIGHT>(void) in HandlePropertyGet()
202 template <> otError NcpBase::HandlePropertyGet<SPINEL_PROP_THREAD_LEADER_WEIGHT>(void) in HandlePropertyGet()
207 template <> otError NcpBase::HandlePropertyGet<SPINEL_PROP_THREAD_CHILD_TABLE>(void) in HandlePropertyGet()
209 otError error = OT_ERROR_NONE; in HandlePropertyGet()
231 template <> otError NcpBase::HandlePropertyGet<SPINEL_PROP_THREAD_ROUTER_TABLE>(void) in HandlePropertyGet()
233 otError error = OT_ERROR_NONE; in HandlePropertyGet()
265 template <> otError NcpBase::HandlePropertyGet<SPINEL_PROP_THREAD_CHILD_TABLE_ADDRESSES>(void) in HandlePropertyGet()
[all …]
Dncp_base_mtd.cpp188 otError NcpBase::EncodeNeighborInfo(const otNeighborInfo &aNeighborInfo) in EncodeNeighborInfo()
190 otError error; in EncodeNeighborInfo()
216 otError NcpBase::EncodeLinkMetricsValues(const otLinkMetricsValues *aMetricsValues) in EncodeLinkMetricsValues()
218 otError error = OT_ERROR_NONE; in EncodeLinkMetricsValues()
262 template <> otError NcpBase::HandlePropertySet<SPINEL_PROP_THREAD_CSL_PERIOD>(void) in HandlePropertySet()
265 otError error = OT_ERROR_NONE; in HandlePropertySet()
275 template <> otError NcpBase::HandlePropertyGet<SPINEL_PROP_THREAD_CSL_PERIOD>(void) in HandlePropertyGet()
280 template <> otError NcpBase::HandlePropertySet<SPINEL_PROP_THREAD_CSL_TIMEOUT>(void) in HandlePropertySet()
283 otError error = OT_ERROR_NONE; in HandlePropertySet()
293 template <> otError NcpBase::HandlePropertyGet<SPINEL_PROP_THREAD_CSL_TIMEOUT>(void) in HandlePropertyGet()
[all …]
Dncp_base.cpp111 spinel_status_t NcpBase::ThreadErrorToSpinelStatus(otError aError) in ThreadErrorToSpinelStatus()
394 otError error = OT_ERROR_NONE; in HandleReceive()
544 otError NcpBase::StreamWrite(int aStreamId, const uint8_t *aDataPtr, int aDataLen) in StreamWrite()
546 otError error = OT_ERROR_NONE; in StreamWrite()
721 otError error = OT_ERROR_NONE; in Log()
774 otError NcpBase::EnqueueResponse(uint8_t aHeader, ResponseType aType, unsigned int aPropKeyOrStatus) in EnqueueResponse()
776 otError error = OT_ERROR_NONE; in EnqueueResponse()
843 otError NcpBase::SendQueuedResponses(void) in SendQueuedResponses()
845 otError error = OT_ERROR_NONE; in SendQueuedResponses()
956 otError NcpBase::HandleCommand(uint8_t aHeader) in HandleCommand()
[all …]
/openthread-3.6.0/src/cli/
Dcli_dataset.hpp74 otError Process(Arg aArgs[]);
92 otError (Dataset::*mParse)(Arg *&aArgs, otOperationalDataset &aDataset);
110 otError ParseActiveTimestamp(Arg *&aArgs, otOperationalDataset &aDataset);
111 otError ParseChannel(Arg *&aArgs, otOperationalDataset &aDataset);
112 otError ParseChannelMask(Arg *&aArgs, otOperationalDataset &aDataset);
113 otError ParseDelay(Arg *&aArgs, otOperationalDataset &aDataset);
114 otError ParseExtendedPanId(Arg *&aArgs, otOperationalDataset &aDataset);
115 otError ParseMeshLocalPrefix(Arg *&aArgs, otOperationalDataset &aDataset);
116 otError ParseNetworkKey(Arg *&aArgs, otOperationalDataset &aDataset);
117 otError ParseNetworkName(Arg *&aArgs, otOperationalDataset &aDataset);
[all …]
Dcli.hpp103 extern "C" void otCliAppendResult(otError aError);
126 friend void otCliAppendResult(otError aError);
192 static otError ParseEnableOrDisable(const Arg &aArg, bool &aEnable);
204 otError SetUserCommands(const otCliCommand *aCommands, uint8_t aLength, void *aContext);
243 static otError ParsePreference(const Arg &aArg, otRoutePreference &aPreference);
271 static otError ParseToIp6Address(otInstance *aInstance,
294 template <typename ValueType> using SetHandlerFailable = otError (&)(otInstance *, ValueType);
297 using SetEnabledHandlerFailable = otError (&)(otInstance *, bool);
304 template <typename ValueType> otError ProcessGet(Arg aArgs[], GetHandler<ValueType> aGetHandler) in ProcessGet()
312 otError error = OT_ERROR_NONE; in ProcessGet()
[all …]
Dcli_dns.hpp95 otError Process(Arg aArgs[]);
103 template <CommandId kCommandId> otError Process(Arg aArgs[]);
106 void OutputResult(otError aError);
107 otError GetDnsConfig(Arg aArgs[], otDnsQueryConfig *&aConfig);
109 otError ParseDnsServiceMode(const Arg &aArg, otDnsServiceMode &aMode) const;
110 …static void HandleDnsAddressResponse(otError aError, const otDnsAddressResponse *aResponse, void *…
111 void HandleDnsAddressResponse(otError aError, const otDnsAddressResponse *aResponse);
115 typedef otError (&ResolveServiceFn)(otInstance *,
122 otError ProcessService(Arg aArgs[], ResolveServiceFn aResolveServiceFn);
124 …static void HandleDnsBrowseResponse(otError aError, const otDnsBrowseResponse *aResponse, void *aC…
[all …]
Dcli_br.cpp56 template <> otError Br::Process<Cmd("init")>(Arg aArgs[]) in Process()
58 otError error = OT_ERROR_NONE; in Process()
81 template <> otError Br::Process<Cmd("enable")>(Arg aArgs[]) in Process()
83 otError error = OT_ERROR_NONE; in Process()
102 template <> otError Br::Process<Cmd("disable")>(Arg aArgs[]) in Process()
104 otError error = OT_ERROR_NONE; in Process()
122 template <> otError Br::Process<Cmd("state")>(Arg aArgs[]) in Process()
132 otError error = OT_ERROR_NONE; in Process()
146 otError Br::ParsePrefixTypeArgs(Arg aArgs[], PrefixType &aFlags) in ParsePrefixTypeArgs()
148 otError error = OT_ERROR_NONE; in ParsePrefixTypeArgs()
[all …]
/openthread-3.6.0/tests/unit/
Dtest_platform.cpp137 OT_TOOL_WEAK otError otPlatMultipanGetActiveInstance(otInstance **) { return OT_ERROR_NOT_IMPLEMENT… in otPlatMultipanGetActiveInstance()
139 OT_TOOL_WEAK otError otPlatMultipanSetActiveInstance(otInstance *, bool) { return OT_ERROR_NOT_IMPL… in otPlatMultipanSetActiveInstance()
155 OT_TOOL_WEAK otError otPlatRadioEnable(otInstance *) { return OT_ERROR_NONE; } in otPlatRadioEnable()
157 OT_TOOL_WEAK otError otPlatRadioDisable(otInstance *) { return OT_ERROR_NONE; } in otPlatRadioDisable()
159 OT_TOOL_WEAK otError otPlatRadioSleep(otInstance *) { return OT_ERROR_NONE; } in otPlatRadioSleep()
161 OT_TOOL_WEAK otError otPlatRadioReceive(otInstance *, uint8_t) { return OT_ERROR_NONE; } in otPlatRadioReceive()
163 OT_TOOL_WEAK otError otPlatRadioTransmit(otInstance *, otRadioFrame *) { return OT_ERROR_NONE; } in otPlatRadioTransmit()
175 OT_TOOL_WEAK otError otPlatRadioAddSrcMatchShortEntry(otInstance *, uint16_t) { return OT_ERROR_NON… in otPlatRadioAddSrcMatchShortEntry()
177 OT_TOOL_WEAK otError otPlatRadioAddSrcMatchExtEntry(otInstance *, const otExtAddress *) { return OT… in otPlatRadioAddSrcMatchExtEntry()
179 OT_TOOL_WEAK otError otPlatRadioClearSrcMatchShortEntry(otInstance *, uint16_t) { return OT_ERROR_N… in otPlatRadioClearSrcMatchShortEntry()
[all …]
/openthread-3.6.0/examples/platforms/simulation/
Ddiag.c69 void otPlatDiagRadioReceived(otInstance *aInstance, otRadioFrame *aFrame, otError aError) in otPlatDiagRadioReceived()
78 otError otPlatDiagGpioSet(uint32_t aGpio, bool aValue) in otPlatDiagGpioSet()
80 otError error = OT_ERROR_NONE; in otPlatDiagGpioSet()
89 otError otPlatDiagGpioGet(uint32_t aGpio, bool *aValue) in otPlatDiagGpioGet()
91 otError error = OT_ERROR_NONE; in otPlatDiagGpioGet()
100 otError otPlatDiagGpioSetMode(uint32_t aGpio, otGpioMode aMode) in otPlatDiagGpioSetMode()
102 otError error = OT_ERROR_NONE; in otPlatDiagGpioSetMode()
111 otError otPlatDiagGpioGetMode(uint32_t aGpio, otGpioMode *aMode) in otPlatDiagGpioGetMode()
113 otError error = OT_ERROR_NONE; in otPlatDiagGpioGetMode()
122 otError otPlatDiagRadioSetRawPowerSetting(otInstance *aInstance, in otPlatDiagRadioSetRawPowerSetting()
[all …]
/openthread-3.6.0/src/core/api/
Dtcp_api.cpp45 otError otTcpEndpointInitialize(otInstance *aInstance, in otTcpEndpointInitialize()
66 otError otTcpBind(otTcpEndpoint *aEndpoint, const otSockAddr *aSockName) in otTcpBind()
71 otError otTcpConnect(otTcpEndpoint *aEndpoint, const otSockAddr *aSockName, uint32_t aFlags) in otTcpConnect()
76 otError otTcpSendByReference(otTcpEndpoint *aEndpoint, otLinkedBuffer *aBuffer, uint32_t aFlags) in otTcpSendByReference()
81 otError otTcpSendByExtension(otTcpEndpoint *aEndpoint, size_t aNumBytes, uint32_t aFlags) in otTcpSendByExtension()
86 otError otTcpReceiveByReference(otTcpEndpoint *aEndpoint, const otLinkedBuffer **aBuffer) in otTcpReceiveByReference()
91 otError otTcpReceiveContiguify(otTcpEndpoint *aEndpoint) { return AsCoreType(aEndpoint).ReceiveCont… in otTcpReceiveContiguify()
93 otError otTcpCommitReceive(otTcpEndpoint *aEndpoint, size_t aNumBytes, uint32_t aFlags) in otTcpCommitReceive()
98 otError otTcpSendEndOfStream(otTcpEndpoint *aEndpoint) { return AsCoreType(aEndpoint).SendEndOfStre… in otTcpSendEndOfStream()
100 otError otTcpAbort(otTcpEndpoint *aEndpoint) { return AsCoreType(aEndpoint).Abort(); } in otTcpAbort()
[all …]

12345678910