HomeSort by relevance Sort by last modified time
    Searched refs:VgHashTable (Results 1 - 9 of 9) sorted by null

  /external/valgrind/main/include/
pub_tool_hashtable.h 50 typedef struct _VgHashTable * VgHashTable;
56 extern VgHashTable VG_(HT_construct) ( HChar* name );
59 extern Int VG_(HT_count_nodes) ( VgHashTable table );
62 extern void VG_(HT_add_node) ( VgHashTable t, void* node );
67 extern void* VG_(HT_lookup) ( VgHashTable table, UWord key );
70 extern void* VG_(HT_remove) ( VgHashTable table, UWord key );
75 extern VgHashNode** VG_(HT_to_array) ( VgHashTable t, /*OUT*/ UInt* n_elems );
78 extern void VG_(HT_ResetIter) ( VgHashTable table );
91 extern void* VG_(HT_Next) ( VgHashTable table );
95 extern void VG_(HT_destruct) ( VgHashTable t, void(*freenode_fn)(void*) )
    [all...]
  /external/valgrind/main/coregrind/
m_hashtable.c 67 VgHashTable VG_(HT_construct) ( HChar* name )
72 VgHashTable table = VG_(calloc)("hashtable.Hc.1",
83 Int VG_(HT_count_nodes) ( VgHashTable table )
88 static void resize ( VgHashTable table )
140 /* Puts a new, heap allocated VgHashNode, into the VgHashTable. Prepends
142 void VG_(HT_add_node) ( VgHashTable table, void* vnode )
158 void* VG_(HT_lookup) ( VgHashTable table, UWord key )
172 void* VG_(HT_remove) ( VgHashTable table, UWord key )
197 VgHashNode** VG_(HT_to_array) ( VgHashTable table, /*OUT*/ UInt* n_elems )
220 void VG_(HT_ResetIter)(VgHashTable table
    [all...]
  /external/valgrind/main/memcheck/
mc_include.h 81 VgHashTable chunks; // chunks associated with this pool
89 VgHashTable table);
112 VgHashTable, because VgHashTable allows duplicate keys without complaint.
115 extern VgHashTable MC_(malloc_list);
118 extern VgHashTable MC_(mempool_list);
mc_malloc_wrappers.c 69 VgHashTable MC_(malloc_list) = NULL;
73 VgHashTable MC_(mempool_list) = NULL;
254 Bool is_zeroed, MC_AllocKind kind, VgHashTable table)
  /external/valgrind/main/drd/
drd_malloc_wrappers.c 64 static VgHashTable s_malloc_list = NULL;
  /external/valgrind/main/coregrind/m_debuginfo/
readdwarf3.c 451 VgHashTable signature_types;
    [all...]
  /external/valgrind/main/coregrind/m_gdbserver/
m_gdbserver.c 195 static VgHashTable gs_addresses = NULL;
    [all...]
  /external/valgrind/main/massif/
ms_main.c     [all...]
  /external/valgrind/main/helgrind/
hg_main.c     [all...]

Completed in 431 milliseconds