Lines Matching full:value
125 * NULL, all arguments are assumed to be the default value. This value is
162 * Retrieves the value associated with a key.
165 * @param key The key for which to retrieve the value.
166 * @param value The value associated with the key.
170 const void *key, void **value);
176 * @param key The key for which to retrieve the value.
183 * Associates a value with a key.
187 * @param key The key to associate a value with.
189 * @param value The value to associate with a key.
192 * value previously associated with the key.
197 const void *value,
201 * Removes the value with associated with a key. Note that calling this
204 * PHashTableEntryGetKeyValue, destroy the key and value and then use
208 * @param key The key for which to remove the associated value.
209 * @param oldValue If this pointer is non-NULL, it will be set to the value
230 * Returns the key and value associated with this entry. Both key and values
235 * @param value If non-NULL, returns the value associated with the entry.
240 void **value);
243 * Sets the value associated with this entry.
246 * @param value The value to associate with the entry.
247 * @param oldValue If this pointer is non-NULL, it will be set to the value
251 const void *value,
275 * @return ESR_INVALID_ARGUMENT if entry or the value it points to is null.