Lines Matching defs:value
117 * @param value Indicates the common parameter value to set.
119 template<typename T> void SetParameter(uint32_t key, const T value)
121 SetValue(key, static_cast<const void *>(&value));
125 * @brief Obtains the value of a common parameter based on its key. For
129 template<typename T> void GetParameter(uint32_t key, T &value)
133 value = *pvalue;
138 * @brief set the private config value
139 * @param value Indicates the private config value.
140 * @param len Indicates the length of the private config value;
142 void SetVendorParameter(uint8_t *value, uint32_t len);
145 * @brief get the private config value
146 * @param value Indicates the private config value.
147 * @param len Indicates the length of the private config value;
149 void GetVendorParameter(uint8_t *value, uint32_t len);
158 void SetValue(uint32_t key, const void *value);