Searched refs:aFrame (Results 1 – 5 of 5) sorted by relevance
/Zephyr-latest/modules/openthread/platform/ |
D | hdlc_interface.hpp | 103 otError SendFrame(const uint8_t *aFrame, uint16_t aLength); 185 otError Write(const uint8_t *aFrame, uint16_t aLength);
|
D | hdlc_interface.cpp | 123 otError HdlcInterface::SendFrame(const uint8_t *aFrame, uint16_t aLength) in SendFrame() argument 136 SuccessOrExit(error = mHdlcEncoder.Encode(aFrame, aLength)); in SendFrame() 227 otError HdlcInterface::Write(const uint8_t *aFrame, uint16_t aLength) in Write() argument 234 ret = hdlc_api->send((uint8_t *)aFrame, aLength); in Write()
|
D | radio_spinel.cpp | 182 otError otPlatRadioTransmit(otInstance *aInstance, otRadioFrame *aFrame) in otPlatRadioTransmit() argument 185 return psRadioSpinel->Transmit(*aFrame); in otPlatRadioTransmit() 401 void otPlatDiagRadioReceived(otInstance *aInstance, otRadioFrame *aFrame, otError aError) in otPlatDiagRadioReceived() argument 404 OT_UNUSED_VARIABLE(aFrame); in otPlatDiagRadioReceived()
|
D | diag.c | 117 otRadioFrame *aFrame, in otPlatDiagRadioReceived() argument 121 ARG_UNUSED(aFrame); in otPlatDiagRadioReceived()
|
/Zephyr-latest/tests/subsys/openthread/ |
D | radio_test.c | 108 void otPlatRadioReceiveDone(otInstance *aInstance, otRadioFrame *aFrame, otError aError) in otPlatRadioReceiveDone() argument 111 zassert_equal(otPlatRadioReceiveDone_expected_aframe.mChannel, aFrame->mChannel); in otPlatRadioReceiveDone() 112 zassert_equal(otPlatRadioReceiveDone_expected_aframe.mLength, aFrame->mLength); in otPlatRadioReceiveDone() 113 zassert_mem_equal(otPlatRadioReceiveDone_expected_aframe.mPsdu, aFrame->mPsdu, in otPlatRadioReceiveDone() 114 aFrame->mLength, NULL); in otPlatRadioReceiveDone() 146 void otPlatRadioTxStarted(otInstance *aInstance, otRadioFrame *aFrame) in otPlatRadioTxStarted() argument
|