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

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/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-WNDR4500v2-V1.0.0.60_1.0.38/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-WNDR4500v2-V1.0.0.60_1.0.38/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:__anon2217
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...]
H A Dgl_array_list.c1 /* Sequential list data type implemented by an array.
61 struct gl_list_impl *list = XMALLOC (struct gl_list_impl); local
63 list->base.vtable = implementation;
64 list->base.equals_fn = equals_fn;
65 list->base.hashcode_fn = hashcode_fn;
66 list->base.dispose_fn = dispose_fn;
67 list->base.allow_duplicates = allow_duplicates;
68 list->elements = NULL;
69 list->count = 0;
70 list
83 struct gl_list_impl *list = XMALLOC (struct gl_list_impl); local
104 gl_array_size(gl_list_t list) argument
110 gl_array_node_value(gl_list_t list, gl_list_node_t node) argument
120 gl_array_next_node(gl_list_t list, gl_list_node_t node) argument
134 gl_array_previous_node(gl_list_t list, gl_list_node_t node) argument
147 gl_array_get_at(gl_list_t list, size_t position) argument
158 gl_array_set_at(gl_list_t list, size_t position, const void *elt) argument
170 gl_array_indexof_from_to(gl_list_t list, size_t start_index, size_t end_index, const void *elt) argument
213 gl_array_search_from_to(gl_list_t list, size_t start_index, size_t end_index, const void *elt) argument
222 grow(gl_list_t list) argument
243 gl_array_add_first(gl_list_t list, const void *elt) argument
260 gl_array_add_last(gl_list_t list, const void *elt) argument
272 gl_array_add_before(gl_list_t list, gl_list_node_t node, const void *elt) argument
295 gl_array_add_after(gl_list_t list, gl_list_node_t node, const void *elt) argument
318 gl_array_add_at(gl_list_t list, size_t position, const void *elt) argument
338 gl_array_remove_node(gl_list_t list, gl_list_node_t node) argument
360 gl_array_remove_at(gl_list_t list, size_t position) argument
379 gl_array_remove(gl_list_t list, const void *elt) argument
389 gl_array_list_free(gl_list_t list) argument
415 gl_array_iterator(gl_list_t list) argument
433 gl_array_iterator_from_to(gl_list_t list, size_t start_index, size_t end_index) argument
457 gl_list_t list = iterator->list; local
489 gl_array_sortedlist_indexof_from_to(gl_list_t list, gl_listelement_compar_fn compar, size_t low, size_t high, const void *elt) argument
548 gl_array_sortedlist_indexof(gl_list_t list, gl_listelement_compar_fn compar, const void *elt) argument
556 gl_array_sortedlist_search_from_to(gl_list_t list, gl_listelement_compar_fn compar, size_t low, size_t high, const void *elt) argument
567 gl_array_sortedlist_search(gl_list_t list, gl_listelement_compar_fn compar, const void *elt) argument
576 gl_array_sortedlist_add(gl_list_t list, gl_listelement_compar_fn compar, const void *elt) argument
604 gl_array_sortedlist_remove(gl_list_t list, gl_listelement_compar_fn compar, const void *elt) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/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-WNDR4500v2-V1.0.0.60_1.0.38/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-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/include/
H A Ddlinklist.h3 some simple double linked list macros
25 /* hook into the front of the list */
26 #define DLIST_ADD(list, p) \
28 if (!(list)) { \
29 (list) = (p); \
32 (list)->prev = (p); \
33 (p)->next = (list); \
35 (list) = (p); \
39 /* remove an element from a list - element doesn't have to be in list
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/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-WNDR4500v2-V1.0.0.60_1.0.38/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...]
H A Dlinklist.h1 /* Generic linked list
25 typedef struct list *list; typedef in typeref:struct:list
35 struct list struct
51 struct list *list_new();
52 void list_free (struct list *);
54 void listnode_add (struct list *, void *);
55 void listnode_add_sort (struct list *, void *);
56 void listnode_add_after (struct list *, struct listnode *, void *);
57 void listnode_delete (struct list *, voi
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/packages/EPM/
H A DMakefile.am3 EXTRA_DIST = README curl.list.in
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-powerpc/
H A Dxmon.h17 extern void xmon_register_spus(struct list_head *list);
20 static inline void xmon_register_spus(struct list_head *list) { }; argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/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...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/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);
H A Dmystring.h9 int int_from_list(char *list, int n);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/pnp/isapnp/
H A Dcompat.c33 struct list_head *list; local
37 list = from ? from->global_list.next : pnp_cards.next;
39 while (list != &pnp_cards) {
40 struct pnp_card *card = global_to_pnp_card(list);
43 list = list->next;
58 struct list_head *list; local
60 list = pnp_global.next;
62 list = from->global_list.next;
64 while (list !
71 struct list_head *list; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/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-WNDR4500v2-V1.0.0.60_1.0.38/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...]
H A Drte_timers.c40 bcm_timer_list_p list; member in struct:bcm_timer_s
75 /* timer list lock - currently no need for this in RTE, no mechanism either */
76 #define TIMER_LIST_LOCK(list) 0
77 #define TIMER_LIST_UNLOCK(list)
83 /* alloc entry from top of list */
84 static int get_entry(bcm_timer_t **list, bcm_timer_t **entry) argument
86 /* take an entry from top of the list */
87 TIMERDBG("list = %08x", *list);
88 *entry = *list;
102 put_entry(bcm_timer_t **list, bcm_timer_t *entry) argument
118 remove_entry(bcm_timer_t **list, bcm_timer_t *entry) argument
154 bcm_timer_list_t *list = entry->list; local
176 bcm_timer_list_t *list; local
210 bcm_timer_list_t *list = (bcm_timer_list_t *)module_id; local
268 bcm_timer_list_t *list = (bcm_timer_list_t *)module_id; local
314 bcm_timer_list_t *list = entry->list; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dformat-lisp.c39 #define VERIFY_LIST(list) verify_list (list)
46 argument list. It is a recursive list structure. Structure sharing
51 FCT_REQUIRED, /* The format argument list cannot end before this argument. */
52 FCT_OPTIONAL /* The format argument list may end before this argument. */
74 enum format_cdr_type presence; /* Can the argument list end right before
77 struct format_arg_list *list; /* For FAT_LIST: List elements. */ member in struct:format_arg
91 /* The constraints for the potentially infinite argument list are assumed
108 struct format_arg_list *list; member in struct:spec
160 verify_list(const struct format_arg_list *list) argument
200 free_list(struct format_arg_list *list) argument
233 copy_list(const struct format_arg_list *list) argument
340 ensure_initial_alloc(struct format_arg_list *list, unsigned int newcount) argument
355 grow_initial_alloc(struct format_arg_list *list) argument
370 ensure_repeated_alloc(struct format_arg_list *list, unsigned int newcount) argument
385 grow_repeated_alloc(struct format_arg_list *list) argument
405 normalize_outermost_list(struct format_arg_list *list) argument
561 normalize_list(struct format_arg_list *list) argument
595 struct format_arg_list *list; local
621 struct format_arg_list *list; local
642 is_empty_list(const struct format_arg_list *list) argument
654 unfold_loop(struct format_arg_list *list, unsigned int m) argument
675 rotate_loop(struct format_arg_list *list, unsigned int m) argument
782 initial_splitelement(struct format_arg_list *list, unsigned int n) argument
830 initial_unshare(struct format_arg_list *list, unsigned int n) argument
912 shift_list(struct format_arg_list *list, unsigned int n) argument
1044 append_repeated_to_initial(struct format_arg_list *list) argument
1073 backtrack_in_initial(struct format_arg_list *list) argument
1321 make_intersection_with_empty_list(struct format_arg_list *list) argument
1747 make_union_with_empty_list(struct format_arg_list *list) argument
1806 is_required(const struct format_arg_list *list, unsigned int n) argument
1864 add_required_constraint(struct format_arg_list *list, unsigned int n) argument
1901 add_end_constraint(struct format_arg_list *list, unsigned int n) argument
1949 add_type_constraint(struct format_arg_list *list, unsigned int n, enum format_arg_type type) argument
1984 add_listtype_constraint(struct format_arg_list *list, unsigned int n, enum format_arg_type type, struct format_arg_list *sublist) argument
2087 struct format_arg_list *list; local
2449 struct format_arg_list *list = *listp; local
3575 print_list(struct format_arg_list *list) argument
[all...]
H A Dformat-scheme.c41 #define VERIFY_LIST(list) verify_list (list)
49 argument list. It is a recursive list structure. Structure sharing
54 FCT_REQUIRED, /* The format argument list cannot end before this argument. */
55 FCT_OPTIONAL /* The format argument list may end before this argument. */
77 enum format_cdr_type presence; /* Can the argument list end right before
80 struct format_arg_list *list; /* For FAT_LIST: List elements. */ member in struct:format_arg
94 /* The constraints for the potentially infinite argument list are assumed
111 struct format_arg_list *list; member in struct:spec
163 verify_list(const struct format_arg_list *list) argument
203 free_list(struct format_arg_list *list) argument
236 copy_list(const struct format_arg_list *list) argument
343 ensure_initial_alloc(struct format_arg_list *list, unsigned int newcount) argument
358 grow_initial_alloc(struct format_arg_list *list) argument
373 ensure_repeated_alloc(struct format_arg_list *list, unsigned int newcount) argument
388 grow_repeated_alloc(struct format_arg_list *list) argument
408 normalize_outermost_list(struct format_arg_list *list) argument
564 normalize_list(struct format_arg_list *list) argument
598 struct format_arg_list *list; local
624 struct format_arg_list *list; local
645 is_empty_list(const struct format_arg_list *list) argument
657 unfold_loop(struct format_arg_list *list, unsigned int m) argument
678 rotate_loop(struct format_arg_list *list, unsigned int m) argument
785 initial_splitelement(struct format_arg_list *list, unsigned int n) argument
833 initial_unshare(struct format_arg_list *list, unsigned int n) argument
915 shift_list(struct format_arg_list *list, unsigned int n) argument
1057 append_repeated_to_initial(struct format_arg_list *list) argument
1086 backtrack_in_initial(struct format_arg_list *list) argument
1334 make_intersection_with_empty_list(struct format_arg_list *list) argument
1770 make_union_with_empty_list(struct format_arg_list *list) argument
1829 is_required(const struct format_arg_list *list, unsigned int n) argument
1887 add_required_constraint(struct format_arg_list *list, unsigned int n) argument
1924 add_end_constraint(struct format_arg_list *list, unsigned int n) argument
1972 add_type_constraint(struct format_arg_list *list, unsigned int n, enum format_arg_type type) argument
2007 add_listtype_constraint(struct format_arg_list *list, unsigned int n, enum format_arg_type type, struct format_arg_list *sublist) argument
2110 struct format_arg_list *list; local
2452 struct format_arg_list *list = *listp; local
3498 print_list(struct format_arg_list *list) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-s390/
H A Dreset.h11 #include <linux/list.h>
14 struct list_head list; member in struct:reset_call

Completed in 123 milliseconds

1234567891011>>