/openthread-latest/src/lib/spinel/ |
D | radio_spinel.hpp | 885 otError Get(spinel_prop_key_t aKey, const char *aFormat, ...); 900 otError GetWithParam(spinel_prop_key_t aKey, 917 otError Set(spinel_prop_key_t aKey, const char *aFormat, ...); 930 otError Insert(spinel_prop_key_t aKey, const char *aFormat, ...); 943 otError Remove(spinel_prop_key_t aKey, const char *aFormat, ...); 1032 otError VendorHandleValueIs(spinel_prop_key_t aPropKey); 1137 otError RequestV(uint32_t aCommand, spinel_prop_key_t aKey, const char *aFormat, va_list aArgs); 1138 otError Request(uint32_t aCommand, spinel_prop_key_t aKey, const char *aFormat, ...); 1141 spinel_prop_key_t aKey, 1146 spinel_prop_key_t aKey, [all …]
|
D | spinel_driver.hpp | 166 spinel_prop_key_t aKey, 182 otError SendCommand(uint32_t aCommand, spinel_prop_key_t aKey, spinel_tid_t aTid); 300 spinel_prop_key_t mWaitingKey; ///< The property key of current transaction.
|
D | radio_spinel.cpp | 323 spinel_prop_key_t key; in HandleNotification() 370 spinel_prop_key_t key; in HandleNotification() 391 spinel_prop_key_t key; in HandleResponse() 431 spinel_prop_key_t aKey, in HandleWaitingResponse() 499 void RadioSpinel::HandleValueIs(spinel_prop_key_t aKey, const uint8_t *aBuffer, uint16_t aLength) in HandleValueIs() 1293 otError RadioSpinel::Get(spinel_prop_key_t aKey, const char *aFormat, ...) in Get() 1315 otError RadioSpinel::GetWithParam(spinel_prop_key_t aKey, in GetWithParam() 1341 otError RadioSpinel::Set(spinel_prop_key_t aKey, const char *aFormat, ...) in Set() 1363 otError RadioSpinel::Insert(spinel_prop_key_t aKey, const char *aFormat, ...) in Insert() 1385 otError RadioSpinel::Remove(spinel_prop_key_t aKey, const char *aFormat, ...) in Remove() [all …]
|
D | example_vendor_hook.cpp | 42 otError RadioSpinel::VendorHandleValueIs(spinel_prop_key_t aPropKey) in VendorHandleValueIs()
|
D | spinel_driver.cpp | 180 otError SpinelDriver::SendCommand(uint32_t aCommand, spinel_prop_key_t aKey, spinel_tid_t aTid) in SendCommand() 203 spinel_prop_key_t aKey, in SendCommand() 326 spinel_prop_key_t key; in HandleInitialFrame()
|
D | spinel_encoder.hpp | 116 otError BeginFrame(uint8_t aHeader, unsigned int aCommand, spinel_prop_key_t aKey);
|
D | spinel_encoder.cpp | 71 otError Encoder::BeginFrame(uint8_t aHeader, unsigned int aCommand, spinel_prop_key_t aKey) in BeginFrame()
|
D | spinel.h | 4961 typedef uint32_t spinel_prop_key_t; typedef 5145 SPINEL_API_EXTERN const char *spinel_prop_key_to_cstr(spinel_prop_key_t prop_key);
|
D | logger.cpp | 130 spinel_prop_key_t key; in LogSpinelFrame()
|
D | spinel.c | 1199 const char *spinel_prop_key_to_cstr(spinel_prop_key_t prop_key) in spinel_prop_key_to_cstr()
|
/openthread-latest/src/ncp/ |
D | changed_props_set.hpp | 60 spinel_prop_key_t mPropKey; ///< The spinel property key. 94 void AddProperty(spinel_prop_key_t aPropKey) { Add(aPropKey, SPINEL_STATUS_OK); } in AddProperty() 157 otError EnablePropertyFilter(spinel_prop_key_t aPropKey, bool aEnable); 176 bool IsPropertyFiltered(spinel_prop_key_t aPropKey) const; 185 void Add(spinel_prop_key_t aPropKey, spinel_status_t aStatus);
|
D | ncp_base.hpp | 353 spinel_prop_key_t mKey; 367 spinel_prop_key_t aKey); 368 static PropertyHandler FindGetPropertyHandler(spinel_prop_key_t aKey); 369 static PropertyHandler FindSetPropertyHandler(spinel_prop_key_t aKey); 370 static PropertyHandler FindInsertPropertyHandler(spinel_prop_key_t aKey); 371 static PropertyHandler FindRemovePropertyHandler(spinel_prop_key_t aKey); 373 …bool HandlePropertySetForSpecialProperties(uint8_t aHeader, spinel_prop_key_t aKey, otError &aE… 374 otError HandleCommandPropertySet(uint8_t aHeader, spinel_prop_key_t aKey); 375 …otError HandleCommandPropertyInsertRemove(uint8_t aHeader, spinel_prop_key_t aKey, unsigned int aC… 378 …otError WritePropertyValueIsFrame(uint8_t aHeader, spinel_prop_key_t aPropKey, bool aIsGetResponse… [all …]
|
D | changed_props_set.cpp | 106 void ChangedPropsSet::Add(spinel_prop_key_t aPropKey, spinel_status_t aStatus) in Add() 127 otError ChangedPropsSet::EnablePropertyFilter(spinel_prop_key_t aPropKey, bool aEnable) in EnablePropertyFilter() 169 bool ChangedPropsSet::IsPropertyFiltered(spinel_prop_key_t aPropKey) const in IsPropertyFiltered()
|
D | example_vendor_hook.cpp | 71 otError NcpBase::VendorGetPropertyHandler(spinel_prop_key_t aPropKey) in VendorGetPropertyHandler() 92 otError NcpBase::VendorSetPropertyHandler(spinel_prop_key_t aPropKey) in VendorSetPropertyHandler()
|
D | ncp_base.cpp | 569 spinel_prop_key_t streamPropKey; in StreamWrite() 577 streamPropKey = static_cast<spinel_prop_key_t>(aStreamId); in StreamWrite() 886 … spinel_prop_key_t propKey = static_cast<spinel_prop_key_t>(entry.mPropKeyOrStatus); in SendQueuedResponses() 929 spinel_prop_key_t propKey; in UpdateChangedProps() 1045 bool NcpBase::HandlePropertySetForSpecialProperties(uint8_t aHeader, spinel_prop_key_t aKey, otErro… in HandlePropertySetForSpecialProperties() 1085 otError NcpBase::HandleCommandPropertySet(uint8_t aHeader, spinel_prop_key_t aKey) in HandleCommandPropertySet() 1138 otError NcpBase::HandleCommandPropertyInsertRemove(uint8_t aHeader, spinel_prop_key_t aKey, unsigne… in HandleCommandPropertyInsertRemove() 1216 otError NcpBase::WritePropertyValueIsFrame(uint8_t aHeader, spinel_prop_key_t aPropKey, bool aIsGet… in WritePropertyValueIsFrame() 1265 spinel_prop_key_t aPropKey, in WritePropertyValueInsertedRemovedFrame() 1355 error = PrepareGetResponse(aHeader, static_cast<spinel_prop_key_t>(propKey)); in CommandHandler_PROP_VALUE_update() [all …]
|
D | ncp_base_dispatcher.cpp | 45 NcpBase::PropertyHandler NcpBase::FindGetPropertyHandler(spinel_prop_key_t aKey) in FindGetPropertyHandler() 406 NcpBase::PropertyHandler NcpBase::FindSetPropertyHandler(spinel_prop_key_t aKey) in FindSetPropertyHandler() 702 NcpBase::PropertyHandler NcpBase::FindInsertPropertyHandler(spinel_prop_key_t aKey) in FindInsertPropertyHandler() 758 NcpBase::PropertyHandler NcpBase::FindRemovePropertyHandler(spinel_prop_key_t aKey) in FindRemovePropertyHandler() 813 spinel_prop_key_t aKey) in FindPropertyHandler()
|
D | ncp_base_mtd.cpp | 1427 switch (static_cast<spinel_prop_key_t>(propKey)) in DecodeOperationalDataset() 4446 … spinel_prop_key_t propKey = isSecure ? SPINEL_PROP_STREAM_NET : SPINEL_PROP_STREAM_NET_INSECURE; in SendDatagramMessage() 4688 spinel_prop_key_t mPropKey; in ProcessThreadChangedFlags() 4753 spinel_prop_key_t propKey = flag.mPropKey; in ProcessThreadChangedFlags()
|
D | ncp_base_ftd.cpp | 131 spinel_prop_key_t property; in HandleNeighborTableChanged()
|
/openthread-latest/src/posix/platform/ |
D | rcp_caps_diag.hpp | 90 template <uint32_t aCommand, spinel_prop_key_t aKey> otError HandleSpinelCommand(void); 106 spinel_prop_key_t mKey;
|
/openthread-latest/tests/unit/ |
D | test_spinel_prop_codec.cpp | 83 VerifyOrQuit(static_cast<spinel_prop_key_t>(propKey) == SPINEL_PROP_DNSSD_HOST); in TestDnssd() 124 VerifyOrQuit(static_cast<spinel_prop_key_t>(propKey) == SPINEL_PROP_DNSSD_SERVICE); in TestDnssd() 170 VerifyOrQuit(static_cast<spinel_prop_key_t>(propKey) == SPINEL_PROP_DNSSD_KEY_RECORD); in TestDnssd()
|
D | test_ncp_srp_server.cpp | 46 static otError GenerateSpinelSrpServerFrame(spinel_prop_key_t aProp, bool aEnable, uint8_t *aBuf, u… in GenerateSpinelSrpServerFrame()
|
D | test_multipan_rcp_instances.cpp | 324 void startFrame(unsigned int aCommand, spinel_prop_key_t aKey) in startFrame()
|