Searched refs:list (Results 151 - 175 of 5196) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/mm/
H A Dkmemleak-test.c26 #include <linux/list.h>
34 struct list_head list; member in struct:test_node
74 * Add elements to a list. They should only appear as orphan
83 INIT_LIST_HEAD(&elem->list);
85 list_add_tail(&elem->list, &test_list);
103 * Remove the list elements without actually freeing the
106 list_for_each_entry_safe(elem, tmp, &test_list, list)
107 list_del(&elem->list);
H A Dprio_tree.c39 * them is used as a tree node and others are stored in a vm_set list. The tree
40 * node points to the first vma (head) of the list using vm_set.head.
47 * ^ ^ <-- vm_set.list -->
51 * list, or just a member of a vm_set list. We cannot use vm_flags to store
57 * tree nodes and list head nodes.
62 * vma->shared.vm_set.head != NULL ==> list of others mapping same range
66 * vma->shared.vm_set.head != NULL ==> list head of vmas mapping same range
67 * vma->shared.vm_set.head == NULL ==> a list node
85 list_add(&vma->shared.vm_set.list,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/9p/
H A Dmod.c34 #include <linux/list.h>
60 list_add_tail(&m->list, &v9fs_trans_list);
73 list_del_init(&m->list);
89 list_for_each_entry(t, &v9fs_trans_list, list)
112 list_for_each_entry(t, &v9fs_trans_list, list)
119 list_for_each_entry(t, &v9fs_trans_list, list)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/avahi-0.6.25/avahi-daemon/
H A DMakefile567 @list='$(noinst_PROGRAMS)'; for p in $$list; do \
575 @list='$(sbin_PROGRAMS)'; for p in $$list; do \
588 @list='$(sbin_PROGRAMS)'; for p in $$list; do \
595 @list='$(sbin_PROGRAMS)'; for p in $$list; do \
1033 @list='$(dbusservice_DATA)'; for p in $$list; d
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/test/
H A Dshell-test.c6 #include <dbus/dbus-list.h>
20 DBusList *list = NULL, *node; local
25 _dbus_list_append (&list, (char *)arg1);
31 _dbus_list_append (&list, tmp);
35 original_argc = _dbus_list_get_length (&list);
38 for (i = 0, node = _dbus_list_get_first_link (&list); i < original_argc && node;
39 i++, node = _dbus_list_get_next_link (&list, node))
47 _dbus_list_clear (&list);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openvpn-2.3.1/src/openvpn/
H A Dclinat.h52 void print_client_nat_list(const struct client_nat_option_list *list, int msglevel);
61 void client_nat_transform (const struct client_nat_option_list *list,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/utils/xas/docs/
H A DMakefile.am11 list='$(dist_man_MANS)' ; \
12 for file in $$list; do \
24 list='$(dist_man_MANS)' ; \
25 for file in $$list; do \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/unittests/muleunit/
H A Dtestcase.h28 #include <list>
36 typedef std::list<Test*> TestList;
57 * Add a Test to the Test list. This method is used by TestRegistry.
59 * @param test Test instance to add to the Test list.
64 * Get the Test list.
66 * @return Test list
71 * Execute all Tests in the Test list of this TestCase, returning false if there were failures.
76 * Get the Test list size (number of Tests in this TestCase).
78 * @return The Test list size
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/
H A Dv4l2-event.c68 list_add_tail(&kev->list, &events->free);
77 #define list_kfree(list, type, member) \
78 while (!list_empty(list)) { \
80 hi = list_first_entry(list, type, member); \
92 list_kfree(&events->free, struct v4l2_kevent, list);
93 list_kfree(&events->available, struct v4l2_kevent, list);
94 list_kfree(&events->subscribed, struct v4l2_subscribed_event, list);
116 kev = list_first_entry(&events->available, struct v4l2_kevent, list);
117 list_move(&kev->list, &events->free);
159 list_for_each_entry(sev, &events->subscribed, list) {
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dcdev.h6 #include <linux/list.h>
16 struct list_head list; member in struct:cdev
H A Dkmsg_dump.h15 #include <linux/list.h>
28 * @list: Entry in the dumper list (private)
35 struct list_head list; member in struct:kmsg_dumper
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/memrar/
H A Dmemrar_allocator.h25 #include <linux/list.h>
43 * struct memrar_address_ranges - list of areas of memory.
44 * @list: Linked list of address ranges.
45 * @range: Memory address range corresponding to given list node.
49 struct list_head list; member in struct:memrar_address_ranges
69 * base address, capacity, free list, lock, etc.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/plugin_xmms/
H A Dcharset.c154 GList *list = NULL; local
158 list = g_list_append(list,_(charset_trans_array[i].charset_title));
159 return list;
164 GList *list = NULL; local
166 list = g_list_append(list,_(Charset_Get_Title_From_Name("UTF-8")));
167 return list;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/include/shared/
H A Dmconsole_kern.h9 #include "linux/list.h"
13 struct list_head list; member in struct:mconsole_entry
19 struct list_head list; member in struct:mc_device
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dvorbis.h40 vorbis_floor1_entry *list, int values);
43 void ff_vorbis_floor1_render_list(vorbis_floor1_entry * list, int values,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dvorbis.h40 vorbis_floor1_entry *list, int values);
43 void ff_vorbis_floor1_render_list(vorbis_floor1_entry * list, int values,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/avr32/mach-at32ap/
H A Dclock.h15 #include <linux/list.h>
21 struct list_head list; /* linking element */ member in struct:clk
/netgear-R7000-V1.0.7.12_1.2.5/src/router/udev/
H A Dlist.h26 * non-initialized list entries.
32 * Simple doubly linked list implementation.
57 * This is only for internal list manipulation where we know
73 * @head: list head to add it after
86 * @head: list head to add it before
97 * Delete a list entry by making the prev/next entries
100 * This is only for internal list manipulation where we know
110 * list_del - deletes entry from list.
111 * @entry: the element to delete from the list.
123 * list_del_init - deletes entry from list an
137 list_move(struct list_head *list, struct list_head *head) argument
148 list_move_tail(struct list_head *list, struct list_head *head) argument
164 __list_splice(struct list_head *list, struct list_head *head) argument
183 list_splice(struct list_head *list, struct list_head *head) argument
196 list_splice_init(struct list_head *list, struct list_head *head) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/scripts/kconfig/lxdialog/
H A Dchecklist.c29 * Print list item
114 * Display a dialog box with a list of options that can be turned on or off
122 WINDOW *dialog, *list; local
169 /* create new window for the list */
170 list = subwin(dialog, list_height, list_width, y + box_y + 1,
173 keypad(list, TRUE);
175 /* draw a box around the list items */
193 /* Print the list */
196 print_item(list, i, i == choice);
205 wnoutrefresh(list);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpu/drm/radeon/
H A Dmkregtable.c2 * this includes inlined list.h safe for userspace.
32 * Simple doubly linked list implementation.
50 static inline void INIT_LIST_HEAD(struct list_head *list) argument
52 list->next = list;
53 list->prev = list;
59 * This is only for internal list manipulation where we know
79 * @head: list head to add it after
92 * @head: list hea
169 list_move(struct list_head *list, struct list_head *head) argument
180 list_move_tail(struct list_head *list, struct list_head *head) argument
192 list_is_last(const struct list_head *list, const struct list_head *head) argument
235 __list_cut_position(struct list_head *list, struct list_head *head, struct list_head *entry) argument
262 list_cut_position(struct list_head *list, struct list_head *head, struct list_head *entry) argument
276 __list_splice(const struct list_head *list, struct list_head *prev, struct list_head *next) argument
294 list_splice(const struct list_head *list, struct list_head *head) argument
306 list_splice_tail(struct list_head *list, struct list_head *head) argument
320 list_splice_init(struct list_head *list, struct list_head *head) argument
337 list_splice_tail_init(struct list_head *list, struct list_head *head) argument
552 struct list_head list; member in struct:offset
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/smbd/
H A Dshare_access.c3 Check access based on valid users, read list and friends
145 * Check whether a user is contained in the list provided.
149 * whether a user is in the list is done after a lookup_name on the expanded
158 const char **list)
162 if (list == NULL) {
170 while (*list != NULL) {
172 if(strcmp(*list,username)==0) {
173 // if (token_contains_name(mem_ctx, username, sharename,token, *list)) {
178 list += 1;
192 * whether a user is in the list i
155 token_contains_name_in_list(const char *username, const char *sharename, const struct nt_user_token *token, const char **list) argument
220 const char *list[2]; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dlist.tex2 %% Name: list.tex
7 %% RCS-ID: $Id: list.tex 48887 2007-09-21 17:53:07Z JS $
14 The wxList<T> class provides linked list functionality. It has been written
15 to be type safe and to provide the full API of the STL std::list container and
18 to the actual objets in the list (see example below). In other words
26 to provide a proper template class providing both the STL std::list
29 Please refer to the STL std::list documentation for further
36 then wxList<T> will actually derive from std::list and just add a legacy
61 MyList list;
63 list
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/netlabel/
H A Dnetlabel_addrlist.c4 * This file contains network address list functions used to manage ordered
34 #include <linux/list.h>
53 * @head: the list head
56 * Searches the IPv4 address list given by @head. If a matching address entry
66 list_for_each_entry_rcu(iter, head, list)
77 * @head: the list head
80 * Searches the IPv4 address list given by @head. If an exact match if found
91 list_for_each_entry_rcu(iter, head, list)
103 * @head: the list head
106 * Searches the IPv6 address list give
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/scripts/kconfig/lxdialog/
H A Dchecklist.c29 * Print list item
108 * Display a dialog box with a list of options that can be turned on or off
117 WINDOW *dialog, *list; local
165 /* create new window for the list */
166 list = subwin(dialog, list_height, list_width, y + box_y + 1,
169 keypad(list, TRUE);
171 /* draw a box around the list items */
188 /* Print the list */
190 print_item(list, items[(scroll + i) * 3 + 1],
200 wnoutrefresh(list);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mtd/maps/
H A Dphysmap_of.c41 struct of_flash_list list[0]; member in struct:of_flash
108 if (info->cmtd != info->list[0].mtd) {
124 if (info->list[i].mtd)
125 map_destroy(info->list[i].mtd);
127 if (info->list[i].map.virt)
128 iounmap(info->list[i].map.virt);
130 if (info->list[i].res) {
131 release_resource(info->list[i].res);
132 kfree(info->list[i].res);
179 specifies the list o
[all...]

Completed in 235 milliseconds

1234567891011>>