Searched defs:list_t (Results 1 - 3 of 3) sorted by relevance

/external/bluetooth/bluedroid/osi/include/
H A Dlist.h9 struct list_t;
10 typedef struct list_t list_t; typedef in typeref:struct:list_t
16 list_t *list_new(list_free_cb callback);
17 void list_free(list_t *list);
20 bool list_is_empty(const list_t *list);
21 size_t list_length(const list_t *list);
22 void *list_front(const list_t *list);
23 void *list_back(const list_t *list);
26 bool list_insert_after(list_t *lis
[all...]
/external/jemalloc/test/unit/
H A Dql.c6 typedef struct list_s list_t; typedef in typeref:struct:list_s
7 typedef ql_head(list_t) list_head_t;
10 ql_elm(list_t) link;
17 list_t *t;
47 init_entries(list_t *entries, unsigned nentries)
58 test_entries_list(list_head_t *head, list_t *entries, unsigned nentries)
60 list_t *t;
97 list_t entries[NENTRIES];
101 init_entries(entries, sizeof(entries)/sizeof(list_t));
112 list_t entrie
[all...]
/external/bluetooth/bluedroid/osi/src/
H A Dlist.c11 typedef struct list_t { struct
16 } list_t; typedef in typeref:struct:list_t
18 static list_node_t *list_free_node_(list_t *list, list_node_t *node);
26 list_t *list_new(list_free_cb callback) {
27 list_t *list = (list_t *)calloc(sizeof(list_t), 1);
35 void list_free(list_t *list) {
45 bool list_is_empty(const list_t *list) {
51 size_t list_length(const list_t *lis
[all...]

Completed in 148 milliseconds