/openthread-latest/tests/gtest/ |
D | radio_spinel_rcp_test.cpp | 52 MOCK_METHOD(otError, Transmit, (otRadioFrame * aFrame), (override)); in TEST() 85 EXPECT_CALL(platform, Transmit(Truly([](otRadioFrame *aFrame) -> bool { in TEST() 92 ASSERT_EQ(platform.mRadioSpinel.Transmit(txFrame), kErrorNone); in TEST() 131 ASSERT_EQ(platform.mRadioSpinel.Transmit(txFrame), kErrorNone); in TEST() 141 MOCK_METHOD(otError, Transmit, (otRadioFrame * aFrame), (override)); in TEST() 175 EXPECT_CALL(platform, Transmit(Truly([](otRadioFrame *aFrame) -> bool { in TEST() 187 ASSERT_EQ(platform.mRadioSpinel.Transmit(txFrame), kErrorNone); in TEST() 197 MOCK_METHOD(otError, Transmit, (otRadioFrame * aFrame), (override)); in TEST() 232 EXPECT_CALL(platform, Transmit(Truly([](otRadioFrame *aFrame) -> bool { in TEST() 244 ASSERT_EQ(platform.mRadioSpinel.Transmit(txFrame), kErrorNone); in TEST() [all …]
|
D | fake_platform.hpp | 81 virtual otError Transmit(otRadioFrame *aFrame);
|
D | fake_platform.cpp | 206 otError FakePlatform::Transmit(otRadioFrame *aFrame) in Transmit() function in ot::FakePlatform 388 return FakePlatform::CurrentPlatform().Transmit(aFrame); in otPlatRadioTransmit()
|
/openthread-latest/src/core/coap/ |
D | coap_secure.cpp | 46 : CoapBase(aInstance, Transmit) in SecureSession() 83 Error SecureSession::Transmit(CoapBase &aCoapBase, ot::Message &aMessage, const Ip6::MessageInfo &a… in Transmit() function in ot::Coap::SecureSession 85 return static_cast<SecureSession &>(aCoapBase).Transmit(aMessage, aMessageInfo); in Transmit() 88 Error SecureSession::Transmit(ot::Message &aMessage, const Ip6::MessageInfo &aMessageInfo) in Transmit() function in ot::Coap::SecureSession
|
D | coap_secure.hpp | 123 …static Error Transmit(CoapBase &aCoapBase, ot::Message &aMessage, const Ip6::MessageInfo &aMessage… 124 Error Transmit(ot::Message &aMessage, const Ip6::MessageInfo &aMessageInfo);
|
/openthread-latest/src/core/mac/ |
D | link_raw.hpp | 134 Error Transmit(otLinkRawTransmitDone aCallback);
|
D | link_raw.cpp | 197 Error LinkRaw::Transmit(otLinkRawTransmitDone aCallback) in Transmit() function in ot::Mac::LinkRaw
|
D | sub_mac.cpp | 501 error = Get<Radio>().Transmit(mTransmitFrame); in BeginTransmit() 509 error = Get<Radio>().Transmit(mTransmitFrame); in BeginTransmit()
|
/openthread-latest/src/core/radio/ |
D | radio.cpp | 107 Error Radio::Transmit(Mac::TxFrame &aFrame) in Transmit() function in ot::Radio
|
D | radio.hpp | 602 Error Transmit(Mac::TxFrame &aFrame); 1117 inline Error Radio::Transmit(Mac::TxFrame &) { return kErrorAbort; } in Transmit() function in ot::Radio
|
/openthread-latest/src/core/diags/ |
D | README.md | 168 Transmit a fixed number of packets. 185 Transmit packets repeatedly with a fixed interval.
|
D | factory_diags.cpp | 574 error = Get<Radio>().Transmit(*static_cast<Mac::TxFrame *>(mTxPacket));
|
/openthread-latest/src/core/api/ |
D | link_raw_api.cpp | 97 return AsCoreType(aInstance).Get<Mac::LinkRaw>().Transmit(aCallback); in otLinkRawTransmit()
|
/openthread-latest/src/core/meshcop/ |
D | secure_transport.hpp | 726 int Transmit(const unsigned char *aBuf,
|
D | secure_transport.cpp | 393 return mTransport.Transmit(aBuf, aLength, mMessageInfo, msgSubType); in HandleMbedtlsTransmit() 848 int SecureTransport::Transmit(const unsigned char *aBuf, in Transmit() function in ot::MeshCoP::SecureTransport
|
/openthread-latest/src/lib/spinel/ |
D | radio_spinel.hpp | 560 otError Transmit(otRadioFrame &aFrame);
|
D | radio_spinel.cpp | 1623 otError RadioSpinel::Transmit(otRadioFrame &aFrame) in Transmit() function in ot::Spinel::RadioSpinel
|
/openthread-latest/src/posix/platform/ |
D | radio.cpp | 306 return GetRadioSpinel().Transmit(*aFrame); in otPlatRadioTransmit()
|
/openthread-latest/src/cli/ |
D | README.md | 981 Transmit metrics
|