Searched refs:aEncodingFunc (Results 1 – 2 of 2) sorted by relevance
/external/ot-br-posix/src/host/ |
D | ncp_spinel.hpp | 347 …rror SendCommand(spinel_command_t aCmd, spinel_prop_key_t aKey, const EncodingFunc &aEncodingFunc); 348 otError SetProperty(spinel_prop_key_t aKey, const EncodingFunc &aEncodingFunc); 349 otError InsertProperty(spinel_prop_key_t aKey, const EncodingFunc &aEncodingFunc); 350 otError RemoveProperty(spinel_prop_key_t aKey, const EncodingFunc &aEncodingFunc);
|
D | ncp_spinel.cpp | 886 …inel::SendCommand(spinel_command_t aCmd, spinel_prop_key_t aKey, const EncodingFunc &aEncodingFunc) in SendCommand() argument 894 SuccessOrExit(error = aEncodingFunc(mEncoder)); in SendCommand() 908 otError NcpSpinel::SetProperty(spinel_prop_key_t aKey, const EncodingFunc &aEncodingFunc) in SetProperty() argument 910 return SendCommand(SPINEL_CMD_PROP_VALUE_SET, aKey, aEncodingFunc); in SetProperty() 913 otError NcpSpinel::InsertProperty(spinel_prop_key_t aKey, const EncodingFunc &aEncodingFunc) in InsertProperty() argument 915 return SendCommand(SPINEL_CMD_PROP_VALUE_INSERT, aKey, aEncodingFunc); in InsertProperty() 918 otError NcpSpinel::RemoveProperty(spinel_prop_key_t aKey, const EncodingFunc &aEncodingFunc) in RemoveProperty() argument 920 return SendCommand(SPINEL_CMD_PROP_VALUE_REMOVE, aKey, aEncodingFunc); in RemoveProperty()
|