Symbol: hash_table
headers/build/private/app/MessagePrivate.h
74
int32 hash_table[MESSAGE_BODY_HASH_TABLE_SIZE];
headers/private/app/MessagePrivate.h
74
int32 hash_table[MESSAGE_BODY_HASH_TABLE_SIZE];
headers/private/userlandfs/legacy/cache.h
72
hash_table ht;
src/add-ons/kernel/file_systems/userlandfs/server/beos/fs_cache.c
173
init_hash_table(hash_table *ht)
src/add-ons/kernel/file_systems/userlandfs/server/beos/fs_cache.c
188
shutdown_hash_table(hash_table *ht)
src/add-ons/kernel/file_systems/userlandfs/server/beos/fs_cache.c
209
print_hash_stats(hash_table *ht)
src/add-ons/kernel/file_systems/userlandfs/server/beos/fs_cache.c
254
grow_hash_table(hash_table *ht)
src/add-ons/kernel/file_systems/userlandfs/server/beos/fs_cache.c
295
hash_insert(hash_table *ht, int dev, fs_off_t bnum, void *data)
src/add-ons/kernel/file_systems/userlandfs/server/beos/fs_cache.c
330
hash_lookup(hash_table *ht, int dev, fs_off_t bnum)
src/add-ons/kernel/file_systems/userlandfs/server/beos/fs_cache.c
349
hash_delete(hash_table *ht, int dev, fs_off_t bnum)
src/add-ons/kernel/file_systems/userlandfs/server/beos/fs_cache_priv.h
70
hash_table ht;
src/build/libbe/app/Message.cpp
1248
int32 nextField = fHeader->hash_table[hash];
src/build/libbe/app/Message.cpp
1292
int32 *nextField = &fHeader->hash_table[hash];
src/build/libbe/app/Message.cpp
1333
int32 *value = fHeader->hash_table;
src/build/libbe/app/Message.cpp
307
memset(fHeader, 0, sizeof(message_header) - sizeof(fHeader->hash_table));
src/build/libbe/app/Message.cpp
322
memset(&fHeader->hash_table, 255, sizeof(fHeader->hash_table));
src/build/libbe/app/Message.cpp
652
int32 *nextField = &fHeader->hash_table[hash];
src/build/libbe/app/Message.cpp
665
nextField = &fHeader->hash_table[hash];
src/kits/app/Message.cpp
1667
int32 nextField = fHeader->hash_table[hash];
src/kits/app/Message.cpp
1711
int32* nextField = &fHeader->hash_table[hash];
src/kits/app/Message.cpp
1752
int32* value = fHeader->hash_table;
src/kits/app/Message.cpp
378
memset(fHeader, 0, sizeof(message_header) - sizeof(fHeader->hash_table));
src/kits/app/Message.cpp
393
memset(&fHeader->hash_table, 255, sizeof(fHeader->hash_table));
src/kits/app/Message.cpp
787
int32* nextField = &fHeader->hash_table[hash];
src/kits/app/Message.cpp
800
nextField = &fHeader->hash_table[hash];
src/kits/debugger/value/value_nodes/BMessageValueNode.cpp
536
int32 nextField = fHeader->hash_table[hash];
src/system/kernel/slab/HashedObjectCache.cpp
120
hash_table.InsertUnchecked(slab);
src/system/kernel/slab/HashedObjectCache.cpp
144
hash_table.RemoveUnchecked(slab);
src/system/kernel/slab/HashedObjectCache.cpp
162
HashedSlab* slab = hash_table.Lookup(::lower_boundary(object, slab_size));
src/system/kernel/slab/HashedObjectCache.cpp
175
size_t hashSize = hash_table.ResizeNeeded();
src/system/kernel/slab/HashedObjectCache.cpp
186
if (hash_table.ResizeNeeded() == hashSize) {
src/system/kernel/slab/HashedObjectCache.cpp
188
hash_table.Resize(buffer, hashSize, true, &oldHash);
src/system/kernel/slab/HashedObjectCache.cpp
50
hash_table(this)
src/system/kernel/slab/HashedObjectCache.cpp
69
size_t hashSize = cache->hash_table.ResizeNeeded();
src/system/kernel/slab/HashedObjectCache.cpp
76
cache->hash_table.Resize(buffer, hashSize, true);
src/system/kernel/slab/HashedObjectCache.h
102
HashTable hash_table;
src/tools/fs_shell/block_cache.cpp
103
hash_table* hash;
src/tools/fs_shell/block_cache.cpp
111
hash_table* transaction_hash;
src/tools/fs_shell/block_cache.cpp
49
struct hash_table;
src/tools/fs_shell/hash.cpp
111
hash_insert(struct hash_table *table, void *element)
src/tools/fs_shell/hash.cpp
130
hash_remove(struct hash_table *table, void *_element)
src/tools/fs_shell/hash.cpp
154
hash_remove_current(struct hash_table *table, struct hash_iterator *iterator)
src/tools/fs_shell/hash.cpp
188
hash_remove_first(struct hash_table *table, uint32_t *_cookie)
src/tools/fs_shell/hash.cpp
209
hash_find(struct hash_table *table, void *searchedElement)
src/tools/fs_shell/hash.cpp
224
hash_lookup(struct hash_table *table, const void *key)
src/tools/fs_shell/hash.cpp
239
hash_open(struct hash_table *table, struct hash_iterator *iterator)
src/tools/fs_shell/hash.cpp
254
hash_close(struct hash_table *table, struct hash_iterator *iterator, bool freeIterator)
src/tools/fs_shell/hash.cpp
262
hash_rewind(struct hash_table *table, struct hash_iterator *iterator)
src/tools/fs_shell/hash.cpp
270
hash_next(struct hash_table *table, struct hash_iterator *iterator)
src/tools/fs_shell/hash.cpp
51
next_element(hash_table *table, void *element)
src/tools/fs_shell/hash.cpp
58
struct hash_table *
src/tools/fs_shell/hash.cpp
63
struct hash_table *t;
src/tools/fs_shell/hash.cpp
71
t = (struct hash_table *)malloc(sizeof(struct hash_table));
src/tools/fs_shell/hash.cpp
99
hash_uninit(struct hash_table *table)
src/tools/fs_shell/hash.h
19
typedef struct hash_table hash_table;
src/tools/fs_shell/hash.h
21
struct hash_table *hash_init(uint32_t table_size, int next_ptr_offset,
src/tools/fs_shell/hash.h
24
int hash_uninit(struct hash_table *table);
src/tools/fs_shell/hash.h
25
fssh_status_t hash_insert(struct hash_table *table, void *_element);
src/tools/fs_shell/hash.h
26
fssh_status_t hash_remove(struct hash_table *table, void *_element);
src/tools/fs_shell/hash.h
27
void hash_remove_current(struct hash_table *table, struct hash_iterator *iterator);
src/tools/fs_shell/hash.h
28
void *hash_remove_first(struct hash_table *table, uint32_t *_cookie);
src/tools/fs_shell/hash.h
29
void *hash_find(struct hash_table *table, void *e);
src/tools/fs_shell/hash.h
30
void *hash_lookup(struct hash_table *table, const void *key);
src/tools/fs_shell/hash.h
31
struct hash_iterator *hash_open(struct hash_table *table, struct hash_iterator *i);
src/tools/fs_shell/hash.h
32
void hash_close(struct hash_table *table, struct hash_iterator *i, bool free_iterator);
src/tools/fs_shell/hash.h
33
void *hash_next(struct hash_table *table, struct hash_iterator *i);
src/tools/fs_shell/hash.h
34
void hash_rewind(struct hash_table *table, struct hash_iterator *i);
src/tools/fs_shell/module.cpp
75
static hash_table *sModulesHash;
src/tools/fs_shell/vfs.cpp
176
static hash_table *sVnodeTable;
src/tools/fs_shell/vfs.cpp
182
static hash_table *sMountsTable;