D-Bus 1.15.12
|
Internal representation of a hash entry. More...
Data Fields | |
DBusHashEntry * | next |
Pointer to next entry in this hash bucket, or NULL for end of chain. | |
void * | key |
Hash key. | |
void * | value |
Hash value. | |
Internal representation of a hash entry.
A single entry (key-value pair) in the hash table. Internal to hash table implementation.
Definition at line 150 of file dbus-hash.c.
void* DBusHashEntry::key |
Hash key.
Definition at line 156 of file dbus-hash.c.
Referenced by _dbus_hash_iter_get_int_key(), _dbus_hash_iter_get_string_key(), _dbus_hash_iter_get_uintptr_key(), _dbus_hash_iter_lookup(), _dbus_hash_table_insert_int(), _dbus_hash_table_insert_string_preallocated(), and _dbus_hash_table_insert_uintptr().
DBusHashEntry* DBusHashEntry::next |
Pointer to next entry in this hash bucket, or NULL for end of chain.
Definition at line 152 of file dbus-hash.c.
Referenced by _dbus_hash_iter_lookup(), _dbus_hash_iter_next(), and _dbus_hash_table_unref().
void* DBusHashEntry::value |
Hash value.
Definition at line 157 of file dbus-hash.c.
Referenced by _dbus_hash_iter_get_value(), _dbus_hash_iter_set_value(), _dbus_hash_table_insert_int(), _dbus_hash_table_insert_string_preallocated(), _dbus_hash_table_insert_uintptr(), _dbus_hash_table_lookup_int(), _dbus_hash_table_lookup_string(), and _dbus_hash_table_lookup_uintptr().