Searched refs:list (Results 1 - 25 of 5196) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/etc/atalkd/
H A Dlist.h2 * $Id: list.h,v 1.2 2001-06-25 20:13:45 rufustfirefly Exp $
8 struct list { struct
10 struct list *l_next,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/import/
H A Dstllist.h52 #include <list>
53 template <class T> class std::list; member in class:std
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/import/
H A Dstllist.h52 #include <list>
53 template <class T> class std::list; member in class:std
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/firewire/
H A Dlist.h1 struct list { struct
2 struct list *next, *prev;
6 list_init(struct list *list) argument
8 list->next = list;
9 list->prev = list;
13 list_empty(struct list *list) argument
28 list_append(struct list *list, struct list *new_link) argument
34 list_prepend(struct list *list, struct list *new_link) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/GeoIP-1.5.1/libGeoIP/
H A Dglobal.h24 If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
25 returns an empty list.
28 #define PROTO_LIST(list) list
30 #define PROTO_LIST(list) ()
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dgl_list.c1 /* Abstract sequential list data type.
53 gl_list_size (gl_list_t list) argument
55 return ((const struct gl_list_impl_base *) list)->vtable
56 ->size (list);
60 gl_list_node_value (gl_list_t list, gl_list_node_t node) argument
62 return ((const struct gl_list_impl_base *) list)->vtable
63 ->node_value (list, node);
67 gl_list_next_node (gl_list_t list, gl_list_node_t node) argument
69 return ((const struct gl_list_impl_base *) list)->vtable
70 ->next_node (list, nod
74 gl_list_previous_node(gl_list_t list, gl_list_node_t node) argument
81 gl_list_get_at(gl_list_t list, size_t position) argument
88 gl_list_set_at(gl_list_t list, size_t position, const void *elt) argument
95 gl_list_search(gl_list_t list, const void *elt) argument
103 gl_list_search_from(gl_list_t list, size_t start_index, const void *elt) argument
111 gl_list_search_from_to(gl_list_t list, size_t start_index, size_t end_index, const void *elt) argument
118 gl_list_indexof(gl_list_t list, const void *elt) argument
126 gl_list_indexof_from(gl_list_t list, size_t start_index, const void *elt) argument
134 gl_list_indexof_from_to(gl_list_t list, size_t start_index, size_t end_index, const void *elt) argument
141 gl_list_add_first(gl_list_t list, const void *elt) argument
148 gl_list_add_last(gl_list_t list, const void *elt) argument
155 gl_list_add_before(gl_list_t list, gl_list_node_t node, const void *elt) argument
162 gl_list_add_after(gl_list_t list, gl_list_node_t node, const void *elt) argument
169 gl_list_add_at(gl_list_t list, size_t position, const void *elt) argument
176 gl_list_remove_node(gl_list_t list, gl_list_node_t node) argument
183 gl_list_remove_at(gl_list_t list, size_t position) argument
190 gl_list_remove(gl_list_t list, const void *elt) argument
197 gl_list_free(gl_list_t list) argument
203 gl_list_iterator(gl_list_t list) argument
210 gl_list_iterator_from_to(gl_list_t list, size_t start_index, size_t end_index) argument
230 gl_sortedlist_search(gl_list_t list, gl_listelement_compar_fn compar, const void *elt) argument
237 gl_sortedlist_search_from_to(gl_list_t list, gl_listelement_compar_fn compar, size_t start_index, size_t end_index, const void *elt) argument
245 gl_sortedlist_indexof(gl_list_t list, gl_listelement_compar_fn compar, const void *elt) argument
252 gl_sortedlist_indexof_from_to(gl_list_t list, gl_listelement_compar_fn compar, size_t start_index, size_t end_index, const void *elt) argument
260 gl_sortedlist_add(gl_list_t list, gl_listelement_compar_fn compar, const void *elt) argument
267 gl_sortedlist_remove(gl_list_t list, gl_listelement_compar_fn compar, const void *elt) argument
[all...]
H A Dgl_list.h1 /* Abstract sequential list data type.
29 /* gl_list is an abstract list data type. It can contain any number of
33 There are several implementations of this list datatype, optimized for
34 different operations or for memory. You can start using the simplest list
44 GL_LINKED_LIST a linked list
47 GL_LINKEDHASH_LIST a hash table with a linked list
52 in the list. When looking more closely at the average memory consumed
56 The guaranteed average performance of the operations is, for a list of
104 /* Type of function used to dispose an element once it's removed from a list.
109 /* Type representing an entire list
266 gl_list_t list; member in struct:__anon6473
478 gl_list_size(gl_list_t list) argument
486 gl_list_node_value(gl_list_t list, gl_list_node_t node) argument
494 gl_list_next_node(gl_list_t list, gl_list_node_t node) argument
502 gl_list_previous_node(gl_list_t list, gl_list_node_t node) argument
510 gl_list_get_at(gl_list_t list, size_t position) argument
518 gl_list_set_at(gl_list_t list, size_t position, const void *elt) argument
526 gl_list_search(gl_list_t list, const void *elt) argument
535 gl_list_search_from(gl_list_t list, size_t start_index, const void *elt) argument
544 gl_list_search_from_to(gl_list_t list, size_t start_index, size_t end_index, const void *elt) argument
553 gl_list_indexof(gl_list_t list, const void *elt) argument
562 gl_list_indexof_from(gl_list_t list, size_t start_index, const void *elt) argument
571 gl_list_indexof_from_to(gl_list_t list, size_t start_index, size_t end_index, const void *elt) argument
580 gl_list_add_first(gl_list_t list, const void *elt) argument
588 gl_list_add_last(gl_list_t list, const void *elt) argument
596 gl_list_add_before(gl_list_t list, gl_list_node_t node, const void *elt) argument
604 gl_list_add_after(gl_list_t list, gl_list_node_t node, const void *elt) argument
612 gl_list_add_at(gl_list_t list, size_t position, const void *elt) argument
620 gl_list_remove_node(gl_list_t list, gl_list_node_t node) argument
628 gl_list_remove_at(gl_list_t list, size_t position) argument
636 gl_list_remove(gl_list_t list, const void *elt) argument
644 gl_list_free(gl_list_t list) argument
651 gl_list_iterator(gl_list_t list) argument
659 gl_list_iterator_from_to(gl_list_t list, size_t start_index, size_t end_index) argument
682 gl_sortedlist_search(gl_list_t list, gl_listelement_compar_fn compar, const void *elt) argument
690 gl_sortedlist_search_from_to(gl_list_t list, gl_listelement_compar_fn compar, size_t start_index, size_t end_index, const void *elt) argument
699 gl_sortedlist_indexof(gl_list_t list, gl_listelement_compar_fn compar, const void *elt) argument
707 gl_sortedlist_indexof_from_to(gl_list_t list, gl_listelement_compar_fn compar, size_t start_index, size_t end_index, const void *elt) argument
716 gl_sortedlist_add(gl_list_t list, gl_listelement_compar_fn compar, const void *elt) argument
724 gl_sortedlist_remove(gl_list_t list, gl_listelement_compar_fn compar, const void *elt) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/glib/
H A Dglist.c22 * file for a list of people on the GLib Team. See the ChangeLog
23 * files for a list of changes. These files are distributed with
50 #define _g_list_free1(list) g_slice_free (GList, list)
63 g_list_free (GList *list) argument
65 while (list)
67 GList *n = list->next;
68 g_slice_free (GList, list);
69 list = n;
76 g_list_free_1 (GList *list)
84 g_list_append(GList *list, gpointer data) argument
111 g_list_prepend(GList *list, gpointer data) argument
293 _g_list_remove_link(GList *list, GList *link) argument
325 g_list_delete_link(GList *list, GList *link) argument
482 g_list_last(GList *list) argument
[all...]
H A Dglist.in.h22 * file for a list of people on the GLib Team. See the ChangeLog
23 * files for a list of changes. These files are distributed with
54 void g_list_free (GList *list);
56 void g_list_free_1 (GList *list);
59 GList* g_list_append (GList *list,
61 GList* g_list_prepend (GList *list,
64 GList* g_list_insert (GList *list,
67 GList* g_list_insert_sorted (GList *list,
70 GList* g_list_insert_sorted_with_data (GList *list,
74 GList* g_list_insert_before (GList *list,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/glib/
H A Dglist.c22 * file for a list of people on the GLib Team. See the ChangeLog
23 * files for a list of changes. These files are distributed with
50 #define _g_list_free1(list) g_slice_free (GList, list)
63 g_list_free (GList *list) argument
65 while (list)
67 GList *n = list->next;
68 g_slice_free (GList, list);
69 list = n;
76 g_list_free_1 (GList *list)
84 g_list_append(GList *list, gpointer data) argument
111 g_list_prepend(GList *list, gpointer data) argument
293 _g_list_remove_link(GList *list, GList *link) argument
325 g_list_delete_link(GList *list, GList *link) argument
482 g_list_last(GList *list) argument
[all...]
H A Dglist.in.h22 * file for a list of people on the GLib Team. See the ChangeLog
23 * files for a list of changes. These files are distributed with
54 void g_list_free (GList *list);
56 void g_list_free_1 (GList *list);
59 GList* g_list_append (GList *list,
61 GList* g_list_prepend (GList *list,
64 GList* g_list_insert (GList *list,
67 GList* g_list_insert_sorted (GList *list,
70 GList* g_list_insert_sorted_with_data (GList *list,
74 GList* g_list_insert_before (GList *list,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/archival/libunarchive/
H A Dfind_list_entry.c12 /* Find a string in a shell pattern list */
13 const llist_t *find_list_entry(const llist_t *list, const char *filename) argument
15 while (list) {
16 if (fnmatch(list->data, filename, 0) == 0) {
17 return list;
19 list = list->link;
27 const llist_t *find_list_entry2(const llist_t *list, const char *filename) argument
34 while (list) {
35 c = list
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/include/
H A Ddlinklist.h3 some simple double linked list macros
28 /* hook into the front of the list */
29 #define DLIST_ADD(list, p) \
31 if (!(list)) { \
32 (list) = (p); \
35 (list)->prev = (p); \
36 (p)->next = (list); \
38 (list) = (p); \
42 /* remove an element from a list - element doesn't have to be in list
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/libtransmission/
H A Dlist.c10 * $Id: list.c 12314 2011-04-05 00:59:49Z jordan $
14 #include "list.h"
53 tr_list_free( tr_list** list, argument
56 while( *list )
58 tr_list *node = *list;
59 *list = ( *list )->next;
67 tr_list_prepend( tr_list ** list, argument
73 node->next = *list;
74 if( *list )
80 tr_list_append( tr_list ** list, void * data ) argument
100 tr_list_find_data( tr_list * list, const void * data ) argument
111 tr_list_remove_node( tr_list ** list, tr_list * node ) argument
140 tr_list_remove_data( tr_list ** list, const void * data ) argument
147 tr_list_remove( tr_list ** list, const void * b, TrListCompareFunc compare_func ) argument
155 tr_list_find( tr_list * list, const void * b, TrListCompareFunc func ) argument
167 tr_list_insert_sorted( tr_list ** list, void * data, TrListCompareFunc compare ) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/lib/
H A Dlinklist.c1 /* Generic linked list routine.
28 /* Allocate new list. */
29 struct list *
32 struct list *new;
34 new = XMALLOC (MTYPE_LINK_LIST, sizeof (struct list));
35 memset (new, 0, sizeof (struct list));
39 /* Free list. */
41 list_free (struct list *l)
65 /* Add new data to the list. */ argument
67 listnode_add (struct list *lis
85 listnode_add_sort(struct list *list, void *val) argument
125 listnode_add_after(struct list *list, struct listnode *pp, void *val) argument
161 listnode_delete(struct list *list, void *val) argument
188 listnode_head(struct list *list) argument
201 list_delete_all_node(struct list *list) argument
219 list_delete(struct list *list) argument
236 listnode_lookup(struct list *list, void *data) argument
248 list_delete_node(list list, listnode node) argument
264 list_add_node_prev(list list, listnode current, void *val) argument
285 list_add_node_next(list list, listnode current, void *val) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/packages/EPM/
H A DMakefile.am3 EXTRA_DIST = README curl.list.in
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/bus/
H A Dexpirelist.c49 BusExpireList *list; local
51 list = dbus_new0 (BusExpireList, 1);
52 if (list == NULL)
55 list->expire_func = expire_func;
56 list->data = data;
57 list->loop = loop;
58 list->expire_after = expire_after;
60 list->timeout = _dbus_timeout_new (100, /* irrelevant */
62 list, NULL);
63 if (list
83 bus_expire_list_free(BusExpireList *list) argument
118 bus_expire_list_recheck_immediately(BusExpireList *list) argument
126 do_expiration_with_monotonic_time(BusExpireList *list, long tv_sec, long tv_usec) argument
187 bus_expirelist_expire(BusExpireList *list) argument
208 BusExpireList *list = data; local
219 bus_expire_list_remove_link(BusExpireList *list, DBusList *link) argument
226 bus_expire_list_remove(BusExpireList *list, BusExpireItem *item) argument
233 bus_expire_list_unlink(BusExpireList *list, DBusList *link) argument
240 bus_expire_list_add(BusExpireList *list, BusExpireItem *item) argument
253 bus_expire_list_add_link(BusExpireList *list, DBusList *link) argument
265 bus_expire_list_get_first_link(BusExpireList *list) argument
271 bus_expire_list_get_next_link(BusExpireList *list, DBusList *link) argument
278 bus_expire_list_contains_item(BusExpireList *list, BusExpireItem *item) argument
293 test_expire_func(BusExpireList *list, DBusList *link, void *data) argument
324 BusExpireList *list; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/dbus/
H A Ddbus-list.h2 /* dbus-list.h Generic linked list utility (internal to D-Bus implementation)
36 DBusList *prev; /**< Previous list node. */
37 DBusList *next; /**< Next list node. */
40 dbus_bool_t _dbus_list_append (DBusList **list,
42 dbus_bool_t _dbus_list_prepend (DBusList **list,
44 dbus_bool_t _dbus_list_insert_before (DBusList **list,
47 dbus_bool_t _dbus_list_insert_after (DBusList **list,
50 void _dbus_list_insert_before_link (DBusList **list,
53 void _dbus_list_insert_after_link (DBusList **list,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/lib/
H A Dllist.c46 struct curl_llist *list; local
48 list = malloc(sizeof(struct curl_llist));
49 if(!list)
52 llist_init(list, dtor);
54 return list;
60 * Inserts a new list element after the given one 'e'. If the given existing
61 * entry is NULL and the list already has elements, the new one will be
62 * inserted first in the list.
69 Curl_llist_insert_next(struct curl_llist *list, struct curl_llist_element *e, argument
77 if(list
110 Curl_llist_remove(struct curl_llist *list, struct curl_llist_element *e, void *user) argument
145 Curl_llist_destroy(struct curl_llist *list, void *user) argument
156 Curl_llist_count(struct curl_llist *list) argument
164 Curl_llist_move(struct curl_llist *list, struct curl_llist_element *e, struct curl_llist *to_list, struct curl_llist_element *to_e) argument
[all...]
H A Dslist.c31 /* returns last node in linked list */
32 static struct curl_slist *slist_get_last(struct curl_slist *list) argument
37 if(!list)
41 item = list;
49 * Curl_slist_append_nodup() appends a string to the linked list. Rather than
57 struct curl_slist *Curl_slist_append_nodup(struct curl_slist *list, char *data) argument
71 /* if this is the first item, then new_item *is* the list */
72 if(!list)
75 last = slist_get_last(list);
77 return list;
87 curl_slist_append(struct curl_slist *list, const char *data) argument
127 curl_slist_free_all(struct curl_slist *list) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/bftpd-1.6.6/
H A Dlist.h11 void bftpd_list_add(struct bftpd_list_element **list, void *data);
12 void bftpd_list_del(struct bftpd_list_element **list, int index);
13 int bftpd_list_count(struct bftpd_list_element *list);
14 void *bftpd_list_get(struct bftpd_list_element *list, int index);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/drm/ttm/
H A Dttm_execbuf_util.h35 #include <linux/list.h>
40 * @head: list head for thread-private list.
57 * @list: thread private list of ttm_validate_buffer structs.
60 * the list entries.
63 extern void ttm_eu_backoff_reservation(struct list_head *list);
68 * @list: thread private list of ttm_validate_buffer structs.
71 * Tries to reserve bos pointed to by the list entrie
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/pnp/isapnp/
H A Dcompat.c28 struct list_head *list; local
33 list = from ? from->global_list.next : pnp_cards.next;
35 while (list != &pnp_cards) {
36 struct pnp_card *card = global_to_pnp_card(list);
40 list = list->next;
54 struct list_head *list; local
56 list = pnp_global.next;
58 list = from->global_list.next;
60 while (list !
69 struct list_head *list; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/docs_src/ref/transapp/
H A Darchival.cs28 char **begin, **list;
30 /* Get the list of database files. */
32 &list, DB_ARCH_ABS | DB_ARCH_DATA)) != 0) {
36 if (list != NULL) {
37 for (begin = list; *list != NULL; ++list)
38 printf("database file: %s\n", *list);
42 /* Get the list of log files. */
44 &list, DB_ARCH_AB
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/shared/
H A Decos_timer.c27 ecos_timer_list_p list; member in struct:ecos_timer_entry_s
41 /* timer list */
63 /* timer list lock */
64 #define TIMER_LIST_LOCK(list) cyg_mutex_lock(&(list->lock))
65 #define TIMER_LIST_UNLOCK(list) cyg_mutex_unlock(&(list->lock))
80 ecos_timer_list_t *list = entry->list; local
84 if (list
131 get_entry(ecos_timer_entry_t **list, ecos_timer_entry_t **entry) argument
154 put_entry(ecos_timer_entry_t **list, ecos_timer_entry_t *entry) argument
173 remove_entry(ecos_timer_entry_t **list, ecos_timer_entry_t *entry) argument
204 ecos_timer_list_t *list; local
246 ecos_timer_list_t *list = (ecos_timer_list_t *)module_id; local
305 ecos_timer_list_t *list = (ecos_timer_list_t *)module_id; local
344 ecos_timer_list_t *list = entry->list; local
[all...]

Completed in 305 milliseconds

1234567891011>>