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

  /external/qemu/android/utils/
intmap.h 20 typedef struct AIntMap AIntMap;
23 AIntMap* aintMap_new(void);
26 int aintmap_getCount( AIntMap* map );
31 int aintmap_has( AIntMap* map, int key );
34 void* aintMap_get( AIntMap* map, int key );
37 void* aintMap_getWithDefault( AIntMap* map, int key, void* def );
40 void* aintMap_set( AIntMap* map, int key, void* value );
43 void* aintMap_del( AIntMap* map, int key );
46 void aintMap_free( AIntMap* map )
    [all...]
intmap.c 28 struct AIntMap {
39 AIntMap*
42 AIntMap* map;
54 aintMap_free( AIntMap* map )
69 aintMap_getCount( AIntMap* map )
75 aintMap_get( AIntMap* map, int key )
81 aintMap_getWithDefault( AIntMap* map, int key, void* def )
97 aintMap_grow( AIntMap* map )
125 aintMap_set( AIntMap* map, int key, void* value )
158 aintMap_del( AIntMap* map, int key
    [all...]

Completed in 33 milliseconds