Home
last modified time | relevance | path

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

/openthread-3.4.0/src/ncp/
Dchanged_props_set.cpp104 void ChangedPropsSet::Add(spinel_prop_key_t aPropKey, spinel_status_t aStatus) in Add() argument
113 if ((entry->mPropKey == aPropKey) && (entry->mStatus == aStatus)) in Add()
125 otError ChangedPropsSet::EnablePropertyFilter(spinel_prop_key_t aPropKey, bool aEnable) in EnablePropertyFilter() argument
135 if (entry->mFilterable && (entry->mPropKey == aPropKey)) in EnablePropertyFilter()
157 if (aPropKey != SPINEL_PROP_LAST_STATUS) in EnablePropertyFilter()
167 bool ChangedPropsSet::IsPropertyFiltered(spinel_prop_key_t aPropKey) const in IsPropertyFiltered()
177 if (entry->mFilterable && (entry->mPropKey == aPropKey)) in IsPropertyFiltered()
Dchanged_props_set.hpp100 void AddProperty(spinel_prop_key_t aPropKey) { Add(aPropKey, SPINEL_STATUS_OK); } in AddProperty() argument
169 otError EnablePropertyFilter(spinel_prop_key_t aPropKey, bool aEnable);
190 bool IsPropertyFiltered(spinel_prop_key_t aPropKey) const;
200 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.hpp206 …otError WritePropertyValueIsFrame(uint8_t aHeader, spinel_prop_key_t aPropKey, bool aIsGetResponse…
209 spinel_prop_key_t aPropKey,
217 otError PrepareGetResponse(uint8_t aHeader, spinel_prop_key_t aPropKey) in PrepareGetResponse() argument
219 return EnqueueResponse(aHeader, kResponseTypeGet, aPropKey); in PrepareGetResponse()
221 otError PrepareSetResponse(uint8_t aHeader, spinel_prop_key_t aPropKey) in PrepareSetResponse() argument
223 return EnqueueResponse(aHeader, kResponseTypeSet, aPropKey); in PrepareSetResponse()
506 otError VendorGetPropertyHandler(spinel_prop_key_t aPropKey);
525 otError VendorSetPropertyHandler(spinel_prop_key_t aPropKey);
Dncp_base.cpp1118 otError NcpBase::WritePropertyValueIsFrame(uint8_t aHeader, spinel_prop_key_t aPropKey, bool aIsGet… in WritePropertyValueIsFrame() argument
1121 PropertyHandler handler = FindGetPropertyHandler(aPropKey); in WritePropertyValueIsFrame()
1125 SuccessOrExit(error = mEncoder.BeginFrame(aHeader, SPINEL_CMD_PROP_VALUE_IS, aPropKey)); in WritePropertyValueIsFrame()
1131 if (aPropKey >= SPINEL_PROP_VENDOR__BEGIN && aPropKey < SPINEL_PROP_VENDOR__END) in WritePropertyValueIsFrame()
1133 SuccessOrExit(error = mEncoder.BeginFrame(aHeader, SPINEL_CMD_PROP_VALUE_IS, aPropKey)); in WritePropertyValueIsFrame()
1135 error = VendorGetPropertyHandler(aPropKey); in WritePropertyValueIsFrame()
1167 spinel_prop_key_t aPropKey, in WritePropertyValueInsertedRemovedFrame() argument
1173 SuccessOrExit(error = mEncoder.BeginFrame(aHeader, aResponseCommand, aPropKey)); in WritePropertyValueInsertedRemovedFrame()