Searched refs:mSpinelInterface (Results 1 – 6 of 6) sorted by relevance
/openthread-latest/src/posix/platform/ |
D | spinel_manager.cpp | 55 , mSpinelInterface(nullptr) in SpinelManager() 76 mSpinelInterface = CreateSpinelInterface(mUrl.GetProtocol()); in Init() 77 VerifyOrDie(mSpinelInterface != nullptr, OT_EXIT_FAILURE); in Init() 81 mode = mSpinelDriver.Init(*mSpinelInterface, swReset, iidList, OT_ARRAY_LENGTH(iidList)); in Init() 90 if (mSpinelInterface != nullptr) in Deinit() 92 mSpinelInterface->Deinit(); in Deinit() 93 mSpinelInterface = nullptr; in Deinit()
|
D | spinel_manager.hpp | 90 assert(mSpinelInterface != nullptr); in GetSpinelInterface() 91 return *mSpinelInterface; in GetSpinelInterface() 118 Spinel::SpinelInterface *mSpinelInterface; member in ot::Posix::SpinelManager
|
/openthread-latest/src/lib/spinel/ |
D | spinel_driver.cpp | 48 , mSpinelInterface(nullptr) in SpinelDriver() 69 mSpinelInterface = &aSpinelInterface; in Init() 71 SuccessOrDie(mSpinelInterface->Init(HandleReceivedFrame, this, mRxFrameBuffer)); in Init() 115 SuccessOrExit(error = mSpinelInterface->SendFrame(buffer, static_cast<uint16_t>(packed))); in SendReset() 139 hardwareReset = (mSpinelInterface->HardwareReset() == OT_ERROR_NONE); in ResetCoprocessor() 172 mSpinelInterface->Process(aContext); in Process() 195 SuccessOrExit(error = mSpinelInterface->SendFrame(buffer, offset)); in SendCommand() 230 SuccessOrExit(error = mSpinelInterface->SendFrame(buffer, offset)); in SendCommand() 257 if ((end <= now) || (mSpinelInterface->WaitForFrame(end - now) != OT_ERROR_NONE)) in WaitResponse()
|
D | spinel_driver.hpp | 200 SpinelInterface *GetSpinelInterface(void) const { return mSpinelInterface; } in GetSpinelInterface() 298 SpinelInterface *mSpinelInterface; member in ot::Spinel::SpinelDriver
|
/openthread-latest/tests/gtest/ |
D | fake_coprocessor_platform.cpp | 93 .mSpinelInterface.Receive(aBuf, aLength); in FakeCoprocessorPlatform() 98 mSpinelDriver.Init(mSpinelInterface, false, iids, OT_ARRAY_LENGTH(iids)); in FakeCoprocessorPlatform()
|
D | fake_coprocessor_platform.hpp | 100 DirectSpinelInterface mSpinelInterface; member in ot::FakeCoprocessorPlatform
|