Home
last modified time | relevance | path

Searched refs:OT_ERROR_ALREADY (Results 1 – 13 of 13) sorted by relevance

/openthread-3.7.0/include/openthread/
Derror.h184 OT_ERROR_ALREADY = 24, enumerator
/openthread-3.7.0/src/core/common/
Derror.hpp80 constexpr Error kErrorAlready = OT_ERROR_ALREADY;
/openthread-3.7.0/src/cli/
Dcli_mac_filter.cpp188 VerifyOrExit(error == OT_ERROR_NONE || error == OT_ERROR_ALREADY); in Process()
Dcli_udp.cpp185 VerifyOrExit(!otUdpIsOpen(GetInstancePtr(), &mSocket), error = OT_ERROR_ALREADY); in Process()
Dcli_tcp.cpp120 VerifyOrExit(!mInitialized, error = OT_ERROR_ALREADY); in Process()
/openthread-3.7.0/src/core/api/
Ddataset_api.cpp158 return (error == OT_ERROR_ALREADY) ? OT_ERROR_NONE : error; in otNetworkNameFromString()
/openthread-3.7.0/src/posix/platform/
Dnetif.cpp1275 …if ((error == OT_ERROR_NONE) || ((isAdd) && (error == OT_ERROR_ALREADY || error == OT_ERROR_REJECT… in logAddrEvent()
1280 error == OT_ERROR_ALREADY ? " (already subscribed, ignored)" in logAddrEvent()
1355 if (error == OT_ERROR_ALREADY || error == OT_ERROR_REJECTED) in processNetifAddrEvent()
1560 logAddrEvent(/* isAdd */ true, addr, OT_ERROR_ALREADY); in processNetifAddrEvent()
1610 if (error == OT_ERROR_ALREADY) in processNetifAddrEvent()
1626 if (error == OT_ERROR_ALREADY || error == OT_ERROR_REJECTED) in processNetifAddrEvent()
Dhdlc_interface.cpp151 VerifyOrExit(mSockFd == -1, error = OT_ERROR_ALREADY); in Init()
/openthread-3.7.0/tests/unit/
Dtest_multipan_rcp_instances.cpp110 VerifyOrExit(sLastInstance != static_cast<ot::Instance *>(aInstance), error = OT_ERROR_ALREADY); in otPlatMultipanSetActiveInstance()
/openthread-3.7.0/tools/harness-thci/
DOpenThread.py106 OT_ERROR_ALREADY = 24 variable
3153 if ex.code == OT_ERROR_ALREADY:
3176 if ex.code == OT_ERROR_ALREADY:
/openthread-3.7.0/src/ncp/
Dncp_base_mtd.cpp2028 if (error == OT_ERROR_ALREADY) in HandlePropertyInsert()
2983 if (error == OT_ERROR_ALREADY) in HandlePropertySet()
3375 if (error == OT_ERROR_ALREADY) in HandlePropertyInsert()
3400 if (error == OT_ERROR_ALREADY) in HandlePropertyInsert()
Dncp_base.cpp161 case OT_ERROR_ALREADY: in ThreadErrorToSpinelStatus()
/openthread-3.7.0/src/lib/spinel/
Dradio_spinel.cpp2363 ret = OT_ERROR_ALREADY; in SpinelStatusToOtError()