Home | History | Annotate | Download | only in src

Lines Matching full:value

39   const void *value;
205 entry->key = entry->value = NULL;
208 ESR_ReturnCode PHashTableGetValue(PHashTable *table, const void *key, void **value)
214 if (table == NULL || value == NULL)
221 *value = (void *) entry->value;
226 *value = NULL;
340 const void *value,
354 if (oldValue != NULL) *oldValue = (void *) entry->value;
355 entry->value = value;
408 entry->value = value;
444 *oldValue = (void*) entry->value;
459 void **value)
464 if (value != NULL) *value = (void *) entry->value;
470 * Sets the value associated with this entry.
472 * @param value The value to associate with the entry.
473 * @param oldvalue If this pointer is non-NULL, it will be set to the previous value associated with this entry.
476 const void *value,
481 if (oldValue != NULL) *oldValue = (void *) entry->value;
482 entry->value = value;
547 * Iterates on the next key and value. Returns a NULL key when at the end of the hash table.
551 * @param value If non-NULL, returns the value associated with the entry.