Home
last modified time | relevance | path

Searched refs:aCommand (Results 1 – 9 of 9) sorted by relevance

/openthread-2.7.6/src/lib/spinel/
Dradio_spinel.hpp862 otError RequestV(uint32_t aCommand, spinel_prop_key_t aKey, const char *aFormat, va_list aArgs);
863 otError Request(uint32_t aCommand, spinel_prop_key_t aKey, const char *aFormat, ...);
865 uint32_t aCommand,
870 uint32_t aCommand,
875 uint32_t aCommand,
910 …void HandleTransmitDone(uint32_t aCommand, spinel_prop_key_t aKey, const uint8_t *aBuffer, uint16_…
911 …void HandleWaitingResponse(uint32_t aCommand, spinel_prop_key_t aKey, const uint8_t *aBuffer, uint…
Dspinel_encoder.cpp49 otError Encoder::BeginFrame(uint8_t aHeader, unsigned int aCommand) in BeginFrame() argument
65 SuccessOrExit(error = WriteUintPacked(aCommand)); in BeginFrame()
71 otError Encoder::BeginFrame(uint8_t aHeader, unsigned int aCommand, spinel_prop_key_t aKey) in BeginFrame() argument
75 SuccessOrExit(error = BeginFrame(aHeader, aCommand)); in BeginFrame()
Dspinel_encoder.hpp98 otError BeginFrame(uint8_t aHeader, unsigned int aCommand);
121 otError BeginFrame(uint8_t aHeader, unsigned int aCommand, spinel_prop_key_t aKey);
Dradio_spinel_impl.hpp762 …d RadioSpinel<InterfaceType, ProcessContextType>::HandleWaitingResponse(uint32_t aCommand, in HandleWaitingResponse() argument
809 if (aCommand == mExpectedCommand) in HandleWaitingResponse()
1712 otError RadioSpinel<InterfaceType, ProcessContextType>::SendCommand(uint32_t aCommand, in SendCommand() argument
1725 aCommand, aKey); in SendCommand()
1779 otError RadioSpinel<InterfaceType, ProcessContextType>::Request(uint32_t aCommand, in Request() argument
1786 otError status = RequestV(aCommand, aKey, aFormat, args); in Request()
1793 … uint32_t aCommand, in RequestWithPropertyFormat() argument
1802 error = RequestWithPropertyFormatV(aPropertyFormat, aCommand, aKey, aFormat, args); in RequestWithPropertyFormat()
1810 … uint32_t aCommand, in RequestWithPropertyFormatV() argument
1818 error = RequestV(aCommand, aKey, aFormat, aArgs); in RequestWithPropertyFormatV()
[all …]
/openthread-2.7.6/src/ncp/
Dexample_vendor_hook.cpp40 otError NcpBase::VendorCommandHandler(uint8_t aHeader, unsigned int aCommand) in VendorCommandHandler() argument
44 switch (aCommand) in VendorCommandHandler()
Dncp_base.hpp233 … HandleCommandPropertyInsertRemove(uint8_t aHeader, spinel_prop_key_t aKey, unsigned int aCommand);
410 otError CommandHandler_PROP_VALUE_update(uint8_t aHeader, unsigned int aCommand);
508 otError VendorCommandHandler(uint8_t aHeader, unsigned int aCommand);
Dncp_base.cpp1062 …::HandleCommandPropertyInsertRemove(uint8_t aHeader, spinel_prop_key_t aKey, unsigned int aCommand) in HandleCommandPropertyInsertRemove() argument
1070 switch (aCommand) in HandleCommandPropertyInsertRemove()
1237 otError NcpBase::CommandHandler_PROP_VALUE_update(uint8_t aHeader, unsigned int aCommand) in CommandHandler_PROP_VALUE_update() argument
1246 switch (aCommand) in CommandHandler_PROP_VALUE_update()
1258 …or = HandleCommandPropertyInsertRemove(aHeader, static_cast<spinel_prop_key_t>(propKey), aCommand); in CommandHandler_PROP_VALUE_update()
/openthread-2.7.6/src/core/thread/
Dmle.hpp975 Error AppendHeader(Message &aMessage, Command aCommand);
1733 void SetCommand(Command aCommand) in SetCommand() argument
1737 mSecurityControl = static_cast<uint8_t>(aCommand); in SetCommand()
1741 mCommand = static_cast<uint8_t>(aCommand); in SetCommand()
Dmle.cpp1027 Error Mle::AppendHeader(Message &aMessage, Command aCommand) in AppendHeader() argument
1034 if (aCommand == kCommandDiscoveryRequest || aCommand == kCommandDiscoveryResponse) in AppendHeader()
1043 header.SetCommand(aCommand); in AppendHeader()