Home
last modified time | relevance | path

Searched refs:GetPromiscuous (Results 1 – 3 of 3) sorted by relevance

/openthread-latest/src/core/radio/
Dradio.hpp439 bool GetPromiscuous(void);
921 inline bool Radio::GetPromiscuous(void) { return otPlatRadioGetPromiscuous(GetInstancePtr()); } in GetPromiscuous() function in ot::Radio
1070 inline bool Radio::GetPromiscuous(void) { return false; } in GetPromiscuous() function in ot::Radio
/openthread-latest/src/core/api/
Dlink_raw_api.cpp61 …tPromiscuous(otInstance *aInstance) { return AsCoreType(aInstance).Get<Radio>().GetPromiscuous(); } in otLinkRawGetPromiscuous()
/openthread-latest/src/core/thread/
Dmle.cpp163 VerifyOrExit(!Get<Radio>().GetPromiscuous(), error = kErrorInvalidState); in Start()