Lines Matching defs:key
116 * @param key Indicates the common parameter key 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
127 * @param key Indicates the common parameter key.
129 template<typename T> void GetParameter(uint32_t key, T &value)
131 T *pvalue = static_cast<T *>(GetValue(key));
157 void *GetValue(uint32_t key);
158 void SetValue(uint32_t key, const void *value);