Home
last modified time | relevance | path

Searched refs:lh_table (Results 1 – 7 of 7) sorted by relevance

/hardware/qcom/msm8998/json-c/
Dlinkhash.h85 struct lh_table { struct
187 extern struct lh_table* lh_table_new(int size, const char *name,
200 extern struct lh_table* lh_kchar_table_new(int size, const char *name,
212 extern struct lh_table* lh_kptr_table_new(int size, const char *name,
222 extern void lh_table_free(struct lh_table *t);
231 extern int lh_table_insert(struct lh_table *t, void *k, const void *v);
240 extern struct lh_entry* lh_table_lookup_entry(struct lh_table *t, const void *k);
249 THIS_FUNCTION_IS_DEPRECATED(extern const void* lh_table_lookup(struct lh_table *t, const void *k));
258 extern json_bool lh_table_lookup_ex(struct lh_table *t, const void *k, void **v);
269 extern int lh_table_delete_entry(struct lh_table *t, struct lh_entry *e);
[all …]
Dlinkhash.c426 struct lh_table* lh_table_new(int size, const char *name, in lh_table_new()
432 struct lh_table *t; in lh_table_new()
434 t = (struct lh_table*)calloc(1, sizeof(struct lh_table)); in lh_table_new()
448 struct lh_table* lh_kchar_table_new(int size, const char *name, in lh_kchar_table_new()
454 struct lh_table* lh_kptr_table_new(int size, const char *name, in lh_kptr_table_new()
460 void lh_table_resize(struct lh_table *t, int new_size) in lh_table_resize()
462 struct lh_table *new_t; in lh_table_resize()
480 void lh_table_free(struct lh_table *t) in lh_table_free()
493 int lh_table_insert(struct lh_table *t, void *k, const void *v) in lh_table_insert()
527 struct lh_entry* lh_table_lookup_entry(struct lh_table *t, const void *k) in lh_table_lookup_entry()
[all …]
Djson_object.h79 typedef struct lh_table lh_table; typedef
252 extern struct lh_table* json_object_get_object(struct json_object *obj);
Djson_object_private.h32 struct lh_table *c_object;
Djson_object_iterator.c70 struct lh_table* pTable; in json_object_iter_begin()
Djson_object.c67 static struct lh_table *json_object_table;
386 struct lh_table* json_object_get_object(struct json_object *jso) in json_object_get_object()
DChangeLog135 * Add typedefs for json_object, json_tokener, array_list, printbuf, lh_table