/external/curl/tests/unit/ |
unit1300.c | 24 #include "llist.h" 26 static struct curl_llist *llist; variable in typeref:struct:curl_llist 32 /* used by the llist API, does nothing here */ 39 llist = Curl_llist_alloc(test_curl_llist_dtor); 40 if(!llist) 44 Curl_llist_destroy(llist, NULL); 53 Curl_llist_destroy(llist, NULL); 65 size_t llist_size = Curl_llist_count(llist); 79 fail_unless(llist->size == 0, "list initial size should be zero"); 80 fail_unless(llist->head == NULL, "list head should initiate to NULL") [all...] |
/external/libcap-ng/libcap-ng-0.7/utils/ |
proc-llist.h | 2 * proc-llist.h 49 } llist; typedef in typeref:struct:__anon15080 51 void list_create(llist *l); 52 static inline lnode *list_get_cur(llist *l) { return l->cur; } 53 void list_append(llist *l, lnode *node); 54 void list_clear(llist* l); 57 lnode *list_find_inode(llist *l, unsigned long i);
|
proc-llist.c | 2 * proc-llist.c - Minimal linked list library 27 #include "proc-llist.h" 29 void list_create(llist *l) 36 void list_append(llist *l, lnode *node) 68 void list_clear(llist* l) 87 lnode *list_find_inode(llist *l, unsigned long i)
|
/external/selinux/libsemanage/src/ |
database_activedb.c | 26 dbase_llist_t llist; member in struct:dbase_activedb 36 record_table_t *rtable = dbase_llist_get_rtable(&dbase->llist); 44 if (!dbase_llist_needs_resync(handle, &dbase->llist)) 48 dbase_llist_cache_init(&dbase->llist); 49 if (dbase_llist_set_serial(handle, &dbase->llist) < 0) 58 if (dbase_llist_cache_prepend(handle, &dbase->llist, records[i]) 71 dbase_llist_drop_cache(&dbase->llist); 80 record_table_t *rtable = dbase_llist_get_rtable(&dbase->llist); 88 if (!dbase_llist_is_modified(&dbase->llist)) 92 if (dbase_llist_list(handle, &dbase->llist, &records, &rcount) < 0 [all...] |
database_file.c | 31 dbase_llist_t llist; member in struct:dbase_file 43 record_table_t *rtable = dbase_llist_get_rtable(&dbase->llist); 53 if (!dbase_llist_needs_resync(handle, &dbase->llist)) 57 dbase_llist_cache_init(&dbase->llist); 58 if (dbase_llist_set_serial(handle, &dbase->llist) < 0) 88 if (dbase_llist_cache_prepend(handle, &dbase->llist, 109 dbase_llist_drop_cache(&dbase->llist); 123 if (!dbase_llist_is_modified(&dbase->llist)) 143 for (ptr = dbase->llist.cache_tail; ptr != NULL; ptr = ptr->prev) { 148 dbase_llist_set_modified(&dbase->llist, 0) [all...] |
database_join.c | 26 dbase_llist_t llist; member in struct:dbase_join 45 record_table_t *rtable = dbase_llist_get_rtable(&dbase->llist); 57 if (!dbase_llist_needs_resync(handle, &dbase->llist)) 61 dbase_llist_cache_init(&dbase->llist); 62 if (dbase_llist_set_serial(handle, &dbase->llist) < 0) 134 if (dbase_llist_cache_prepend(handle, &dbase->llist, record) < 143 if (dbase_llist_set_serial(handle, &dbase->llist) < 0) 164 dbase_llist_drop_cache(&dbase->llist); 177 record_table_t *rtable = dbase_llist_get_rtable(&dbase->llist); 188 if (!dbase_llist_is_modified(&dbase->llist)) [all...] |
/external/avahi/avahi-daemon/ |
ini-file-parser.h | 23 #include <avahi-common/llist.h>
|
dbus-internal.h | 30 #include <avahi-common/llist.h>
|
/external/toybox/lib/ |
llist.c | 0 /* llist.c - Linked list functions 47 void **llist = (void **)list; local 48 void **next = (void **)*llist; 49 *llist = *next;
|
/external/avahi/avahi-core/ |
browse.h | 23 #include <avahi-common/llist.h>
|
announce.h | 25 #include <avahi-common/llist.h>
|
cache.h | 25 #include <avahi-common/llist.h>
|
iface.h | 28 #include <avahi-common/llist.h>
|
internal.h | 26 #include <avahi-common/llist.h>
|
rrlist.c | 27 #include <avahi-common/llist.h>
|
hashmap.c | 27 #include <avahi-common/llist.h>
|
/external/avahi/avahi-glib/ |
glib-malloc.c | 24 #include <avahi-common/llist.h>
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
DefaultRouter.java | 337 LinkedList llist = new LinkedList(); local 338 llist.add(this.getNextHop(request)); 339 return llist.listIterator();
|
/external/toybox/toys/pending/ |
diff.c | 518 struct arg_list *llist = TT.L_list; local 568 xprintf("--- %s\n", (toys.optflags & FLAG_L) ? llist->arg : files[0]); 569 if (((toys.optflags & FLAG_L) && !llist->next) || !(toys.optflags & FLAG_L)) 572 while (llist->next) llist = llist->next; 573 xprintf("+++ %s\n", llist->arg);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/logging/ |
config.py | 180 llist = cp.get("loggers", "keys") 181 llist = llist.split(",") 182 llist = list(map(lambda x: x.strip(), llist)) 183 llist.remove("root") 219 for log in llist: [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/logging/ |
config.py | 180 llist = cp.get("loggers", "keys") 181 llist = llist.split(",") 182 llist = list(map(lambda x: x.strip(), llist)) 183 llist.remove("root") 219 for log in llist: [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/ |
config.py | 180 llist = cp.get("loggers", "keys") 181 llist = llist.split(",") 182 llist = list(map(lambda x: x.strip(), llist)) 183 llist.remove("root") 219 for log in llist: [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/ |
config.py | 180 llist = cp.get("loggers", "keys") 181 llist = llist.split(",") 182 llist = list(map(lambda x: x.strip(), llist)) 183 llist.remove("root") 219 for log in llist: [all...] |
/external/avahi/tests/ |
c-plus-plus-test.cc | 34 #include <avahi-common/llist.h>
|
/external/avahi/avahi-autoipd/ |
iface-linux.c | 38 #include <avahi-common/llist.h>
|