Home
last modified time | relevance | path

Searched refs:aPropKey (Results 1 – 7 of 7) sorted by relevance

/openthread-latest/src/ncp/
Dchanged_props_set.cpp106 void ChangedPropsSet::Add(spinel_prop_key_t aPropKey, spinel_status_t aStatus) in Add() argument
115 if ((entry->mPropKey == aPropKey) && (entry->mStatus == aStatus)) in Add()
127 otError ChangedPropsSet::EnablePropertyFilter(spinel_prop_key_t aPropKey, bool aEnable) in EnablePropertyFilter() argument
137 if (entry->mFilterable && (entry->mPropKey == aPropKey)) in EnablePropertyFilter()
159 if (aPropKey != SPINEL_PROP_LAST_STATUS) in EnablePropertyFilter()
169 bool ChangedPropsSet::IsPropertyFiltered(spinel_prop_key_t aPropKey) const in IsPropertyFiltered()
179 if (entry->mFilterable && (entry->mPropKey == aPropKey)) in IsPropertyFiltered()
Dchanged_props_set.hpp94 void AddProperty(spinel_prop_key_t aPropKey) { Add(aPropKey, SPINEL_STATUS_OK); } in AddProperty() argument
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);
Dexample_vendor_hook.cpp71 otError NcpBase::VendorGetPropertyHandler(spinel_prop_key_t aPropKey) in VendorGetPropertyHandler() argument
75 switch (aPropKey) in VendorGetPropertyHandler()
92 otError NcpBase::VendorSetPropertyHandler(spinel_prop_key_t aPropKey) in VendorSetPropertyHandler() argument
96 switch (aPropKey) in VendorSetPropertyHandler()
Dncp_base.hpp378 …otError WritePropertyValueIsFrame(uint8_t aHeader, spinel_prop_key_t aPropKey, bool aIsGetResponse…
381 spinel_prop_key_t aPropKey,
389 otError PrepareGetResponse(uint8_t aHeader, spinel_prop_key_t aPropKey) in PrepareGetResponse() argument
391 return EnqueueResponse(aHeader, kResponseTypeGet, aPropKey); in PrepareGetResponse()
393 otError PrepareSetResponse(uint8_t aHeader, spinel_prop_key_t aPropKey) in PrepareSetResponse() argument
395 return EnqueueResponse(aHeader, kResponseTypeSet, aPropKey); in PrepareSetResponse()
691 otError VendorGetPropertyHandler(spinel_prop_key_t aPropKey);
709 otError VendorSetPropertyHandler(spinel_prop_key_t aPropKey);
Dncp_base.cpp1216 otError NcpBase::WritePropertyValueIsFrame(uint8_t aHeader, spinel_prop_key_t aPropKey, bool aIsGet… in WritePropertyValueIsFrame() argument
1219 PropertyHandler handler = FindGetPropertyHandler(aPropKey); in WritePropertyValueIsFrame()
1223 SuccessOrExit(error = mEncoder.BeginFrame(aHeader, SPINEL_CMD_PROP_VALUE_IS, aPropKey)); in WritePropertyValueIsFrame()
1229 if (aPropKey >= SPINEL_PROP_VENDOR__BEGIN && aPropKey < SPINEL_PROP_VENDOR__END) in WritePropertyValueIsFrame()
1231 SuccessOrExit(error = mEncoder.BeginFrame(aHeader, SPINEL_CMD_PROP_VALUE_IS, aPropKey)); in WritePropertyValueIsFrame()
1233 error = VendorGetPropertyHandler(aPropKey); in WritePropertyValueIsFrame()
1265 spinel_prop_key_t aPropKey, in WritePropertyValueInsertedRemovedFrame() argument
1271 SuccessOrExit(error = mEncoder.BeginFrame(aHeader, aResponseCommand, aPropKey)); in WritePropertyValueInsertedRemovedFrame()
/openthread-latest/src/lib/spinel/
Dexample_vendor_hook.cpp42 otError RadioSpinel::VendorHandleValueIs(spinel_prop_key_t aPropKey) in VendorHandleValueIs() argument
46 switch (aPropKey) in VendorHandleValueIs()
Dradio_spinel.hpp1032 otError VendorHandleValueIs(spinel_prop_key_t aPropKey);