Home
last modified time | relevance | path

Searched refs:propKey (Results 1 – 4 of 4) sorted by relevance

/openthread-latest/tests/unit/
Dtest_spinel_prop_codec.cpp54 unsigned int propKey; in TestDnssd() local
82 SuccessOrQuit(error = decoder.ReadUintPacked(propKey)); in TestDnssd()
83 VerifyOrQuit(static_cast<spinel_prop_key_t>(propKey) == SPINEL_PROP_DNSSD_HOST); in TestDnssd()
123 SuccessOrQuit(error = decoder.ReadUintPacked(propKey)); in TestDnssd()
124 VerifyOrQuit(static_cast<spinel_prop_key_t>(propKey) == SPINEL_PROP_DNSSD_SERVICE); in TestDnssd()
169 SuccessOrQuit(error = decoder.ReadUintPacked(propKey)); in TestDnssd()
170 VerifyOrQuit(static_cast<spinel_prop_key_t>(propKey) == SPINEL_PROP_DNSSD_KEY_RECORD); in TestDnssd()
Dtest_multipan_rcp_instances.cpp184 unsigned int propKey; in updateSpinelStatus() local
191 SuccessOrQuit(decoder.ReadUintPacked(propKey)); in updateSpinelStatus()
195 mLastProp = static_cast<uint32_t>(propKey); in updateSpinelStatus()
/openthread-latest/src/ncp/
Dncp_base.cpp886 … spinel_prop_key_t propKey = static_cast<spinel_prop_key_t>(entry.mPropKeyOrStatus); in SendQueuedResponses() local
889 SuccessOrExit(error = WritePropertyValueIsFrame(header, propKey, isGetResponse)); in SendQueuedResponses()
929 spinel_prop_key_t propKey; in UpdateChangedProps() local
947 propKey = entry->mPropKey; in UpdateChangedProps()
949 if (propKey == SPINEL_PROP_LAST_STATUS) in UpdateChangedProps()
962 …OrExit(WritePropertyValueIsFrame(SPINEL_HEADER_FLAG | SPINEL_HEADER_TX_NOTIFICATION_IID, propKey)); in UpdateChangedProps()
1346 unsigned int propKey = 0; in CommandHandler_PROP_VALUE_update() local
1348 error = mDecoder.ReadUintPacked(propKey); in CommandHandler_PROP_VALUE_update()
1355 error = PrepareGetResponse(aHeader, static_cast<spinel_prop_key_t>(propKey)); in CommandHandler_PROP_VALUE_update()
1359 error = HandleCommandPropertySet(aHeader, static_cast<spinel_prop_key_t>(propKey)); in CommandHandler_PROP_VALUE_update()
[all …]
Dncp_base_mtd.cpp1422 unsigned int propKey; in DecodeOperationalDataset() local
1425 SuccessOrExit(error = mDecoder.ReadUintPacked(propKey)); in DecodeOperationalDataset()
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() local
4448 SuccessOrExit(error = mEncoder.BeginFrame(header, SPINEL_CMD_PROP_VALUE_IS, propKey)); in SendDatagramMessage()
4753 spinel_prop_key_t propKey = flag.mPropKey; in ProcessThreadChangedFlags() local
4763 if (propKey == SPINEL_PROP_THREAD_CHILD_TABLE) in ProcessThreadChangedFlags()
4771 mChangedPropsSet.AddProperty(propKey); in ProcessThreadChangedFlags()