Home
last modified time | relevance | path

Searched refs:GetBusSpeed (Results 1 – 11 of 11) sorted by relevance

/openthread-latest/src/posix/platform/
Dvendor_interface.hpp127 uint32_t GetBusSpeed(void) const;
Dvendor_interface_example.cpp93 uint32_t VendorInterface::GetBusSpeed(void) const { return 1000000; } in GetBusSpeed() function in ot::Posix::VendorInterface
Dhdlc_interface.hpp132 uint32_t GetBusSpeed(void) const { return mBaudRate; } in GetBusSpeed() function in ot::Posix::HdlcInterface
Dspi_interface.hpp133 uint32_t GetBusSpeed(void) const { return ((mSpiDevFd >= 0) ? mSpiSpeedHz : 0); } in GetBusSpeed() function in ot::Posix::SpiInterface
Dradio.cpp939 return GetRadioSpinel().GetBusSpeed(); in otPlatRadioGetBusSpeed()
/openthread-latest/src/lib/spinel/
Dspinel_interface.hpp126 virtual uint32_t GetBusSpeed(void) const = 0;
Dradio_spinel.hpp840 uint32_t GetBusSpeed(void) const;
Dradio_spinel.cpp1990 uint32_t RadioSpinel::GetBusSpeed(void) const { return GetSpinelDriver().GetSpinelInterface()->GetB… in GetBusSpeed() function in ot::Spinel::RadioSpinel
/openthread-latest/tests/gtest/
Dfake_coprocessor_platform.hpp63 virtual uint32_t GetBusSpeed(void) const override { return 0; } in GetBusSpeed() function in ot::DirectSpinelInterface
/openthread-latest/src/core/radio/
Dradio.hpp838 uint32_t GetBusSpeed(void);
1033 inline uint32_t Radio::GetBusSpeed(void) { return otPlatRadioGetBusSpeed(GetInstancePtr()); } in GetBusSpeed() function in ot::Radio
1137 inline uint32_t Radio::GetBusSpeed(void) { return 0; } in GetBusSpeed() function in ot::Radio
/openthread-latest/src/core/mac/
Dmac.cpp2699 uint32_t busSpeed = Get<Radio>().GetBusSpeed(); in CalculateRadioBusTransferTime()