Home
last modified time | relevance | path

Searched refs:aInstances (Results 1 – 8 of 8) sorted by relevance

/openthread-latest/src/ncp/
Dexample_vendor_hook.cpp145 NcpVendorUart(ot::Instance **aInstances, uint8_t count) in NcpVendorUart() argument
146 : ot::Ncp::NcpHdlc(aInstances, count, &NcpVendorUart::SendHdlc) in NcpVendorUart()
169 extern "C" void otAppNcpInitMulti(otInstance **aInstances, uint8_t count) in otAppNcpInitMulti() argument
176 OT_ASSERT(aInstances[0] != nullptr); in otAppNcpInitMulti()
180 instances[i] = static_cast<ot::Instance *>(aInstances[i]); in otAppNcpInitMulti()
Dncp_hdlc.cpp82 extern "C" void otNcpHdlcInitMulti(otInstance **aInstances, uint8_t aCount, otNcpHdlcSendCallback a… in otNcpHdlcInitMulti() argument
89 OT_ASSERT(aInstances[0] != nullptr); in otNcpHdlcInitMulti()
93 instances[i] = static_cast<ot::Instance *>(aInstances[i]); in otNcpHdlcInitMulti()
125 NcpHdlc::NcpHdlc(Instance **aInstances, uint8_t aCount, otNcpHdlcSendCallback aSendCallback) in NcpHdlc() argument
126 : NcpBase(aInstances, aCount) in NcpHdlc()
132 , mHdlcSendTask(*aInstances[0], EncodeAndSend) in NcpHdlc()
Dncp_hdlc.hpp71 explicit NcpHdlc(Instance **aInstances, uint8_t aCount, otNcpHdlcSendCallback aSendCallback);
Dncp_base.hpp112 explicit NcpBase(Instance **aInstances, uint8_t aCount);
Dncp_base.cpp243 NcpBase::NcpBase(Instance **aInstances, uint8_t aCount) in NcpBase() argument
244 : NcpBase(aInstances[0]) in NcpBase()
260 mInstances[i + skipped] = aInstances[i]; in NcpBase()
/openthread-latest/examples/apps/ncp/
Dncp.c66 void otAppNcpInitMulti(otInstance **aInstances, uint8_t aCount) in otAppNcpInitMulti() argument
73 otNcpHdlcInitMulti(aInstances, aCount, NcpSend); in otAppNcpInitMulti()
Dmain.c62 extern void otAppNcpInitMulti(otInstance **aInstances, uint8_t count);
/openthread-latest/tests/unit/
Dtest_multipan_rcp_instances.cpp133 explicit TestNcp(ot::Instance **aInstances, uint8_t aCount) in TestNcp() argument
137 , NcpBase(aInstances, aCount) in TestNcp()