Searched refs:member (Results 1 - 25 of 333) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Ddrbd_tag_magic.h10 #define NL_INTEGER(pn, pr, member)
11 #define NL_INT64(pn, pr, member)
12 #define NL_BIT(pn, pr, member)
13 #define NL_STRING(pn, pr, member, len)
21 #define NL_INTEGER(pn, pr, member) \
22 int member; int tag_and_len ## member;
23 #define NL_INT64(pn, pr, member) \
24 __u64 member; int tag_and_len ## member;
[all...]
H A Dirq_cpustat.h21 #define __IRQ_STAT(cpu, member) (irq_stat[cpu].member)
H A Dlist.h192 * in the process of modifying either member (next or prev)
343 * @member: the name of the list_struct within the struct.
345 #define list_entry(ptr, type, member) \
346 container_of(ptr, type, member)
352 * @member: the name of the list_struct within the struct.
356 #define list_first_entry(ptr, type, member) \
357 list_entry((ptr)->next, type, member)
415 * @member: the name of the list_struct within the struct.
417 #define list_for_each_entry(pos, head, member) \
418 for (pos = list_entry((head)->next, typeof(*pos), member); \
[all...]
H A Drculist.h205 * @member: the name of the list_struct within the struct.
210 #define list_entry_rcu(ptr, type, member) \
211 container_of(rcu_dereference_raw(ptr), type, member)
217 * @member: the name of the list_struct within the struct.
224 #define list_first_entry_rcu(ptr, type, member) \
225 list_entry_rcu((ptr)->next, type, member)
236 * @member: the name of the list_struct within the struct.
242 #define list_for_each_entry_rcu(pos, head, member) \
243 for (pos = list_entry_rcu((head)->next, typeof(*pos), member); \
244 prefetch(pos->member
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/include/asm/
H A Dfs_pd.h24 #define cpm2_map(member) (&cpm2_immr->member)
25 #define cpm2_map_size(member, size) (&cpm2_immr->member)
35 #define immr_map(member) (&mpc8xx_immr->member)
36 #define immr_map_size(member, size) (&mpc8xx_immr->member)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/libevent-2.0.20-stable/include/event2/
H A Drpc_compat.h48 #define EVTAG_ASSIGN(msg, member, args...) \
49 (*(msg)->base->member##_assign)(msg, ## args)
50 #define EVTAG_GET(msg, member, args...) \
51 (*(msg)->base->member##_get)(msg, ## args)
52 #define EVTAG_ADD(msg, member, args...) \
53 (*(msg)->base->member##_add)(msg, ## args)
55 #define EVTAG_LEN(msg, member) ((msg)->member##_length)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/plugin/
H A Dwsaapi.h66 # define SOAP_WSA(member) wsa3__##member
67 # define SOAP_WSA_(prefix,member) prefix##_wsa3__##member
68 # define SOAP_WSA__(prefix,member) prefix##wsa3__##member
70 # define SOAP_WSA(member) wsa4__##member
71 # define SOAP_WSA_(prefix,member) prefix##_wsa4__##member
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/plugin/
H A Dwsaapi.h66 # define SOAP_WSA(member) wsa3__##member
67 # define SOAP_WSA_(prefix,member) prefix##_wsa3__##member
68 # define SOAP_WSA__(prefix,member) prefix##wsa3__##member
70 # define SOAP_WSA(member) wsa4__##member
71 # define SOAP_WSA_(prefix,member) prefix##_wsa4__##member
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/firewire/
H A Dlist.h46 #define list_entry(link, type, member) \
47 ((type *)((char *)(link)-(unsigned long)(&((type *)0)->member)))
49 #define list_head(list, type, member) \
50 list_entry((list)->next, type, member)
52 #define list_tail(list, type, member) \
53 list_entry((list)->prev, type, member)
55 #define list_next(elm, member) \
56 list_entry((elm)->member.next, typeof(*elm), member)
58 #define list_for_each_entry(pos, list, member) \
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iptables-1.4.12.1/libiptc/
H A Dlinux_stddef.h16 * container_of - cast a member of a structure out to the containing structure
18 * @ptr: the pointer to the member.
20 * @member: the name of the member within the struct.
23 #define container_of(ptr, type, member) ({ \
24 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
25 (type *)( (char *)__mptr - offsetof(type,member) );})
H A Dlinux_list.h8 * container_of - cast a member of a structure out to the containing structure
10 * @ptr: the pointer to the member.
12 * @member: the name of the member within the struct.
15 #define container_of(ptr, type, member) ({ \
16 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
17 (type *)( (char *)__mptr - offsetof(type,member) );})
268 * in the process of still modifying either member
328 * @member: the name of the list_struct within the struct.
330 #define list_entry(ptr, type, member) \
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iptables-1.4.12/src/libiptc/
H A Dlinux_stddef.h16 * container_of - cast a member of a structure out to the containing structure
18 * @ptr: the pointer to the member.
20 * @member: the name of the member within the struct.
23 #define container_of(ptr, type, member) ({ \
24 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
25 (type *)( (char *)__mptr - offsetof(type,member) );})
H A Dlinux_list.h8 * container_of - cast a member of a structure out to the containing structure
10 * @ptr: the pointer to the member.
12 * @member: the name of the member within the struct.
15 #define container_of(ptr, type, member) ({ \
16 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
17 (type *)( (char *)__mptr - offsetof(type,member) );})
268 * in the process of still modifying either member
328 * @member: the name of the list_struct within the struct.
330 #define list_entry(ptr, type, member) \
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iptables-1.x/libiptc/
H A Dlinux_stddef.h16 * container_of - cast a member of a structure out to the containing structure
18 * @ptr: the pointer to the member.
20 * @member: the name of the member within the struct.
23 #define container_of(ptr, type, member) ({ \
24 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
25 (type *)( (char *)__mptr - offsetof(type,member) );})
H A Dlinux_list.h8 * container_of - cast a member of a structure out to the containing structure
10 * @ptr: the pointer to the member.
12 * @member: the name of the member within the struct.
15 #define container_of(ptr, type, member) ({ \
16 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
17 (type *)( (char *)__mptr - offsetof(type,member) );})
268 * in the process of still modifying either member
328 * @member: the name of the list_struct within the struct.
330 #define list_entry(ptr, type, member) \
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/IGMP-PROXY/src/
H A Dproxy.c202 membership_db* member; local
204 if ((member = (membership_db*) malloc(sizeof(*member)))) {
205 member->membership.group = group;
206 member->membership.fmode = fmode;
207 member->membership.numsources = numsources;
209 member->membership.sources[i].s_addr = sources[i].s_addr;
210 member->next = NULL;
211 return member;
240 membership_db *member; local
286 membership_db* member; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/security/tomoyo/
H A Dgroup.c40 struct list_head *member; local
48 member = &group->member_list;
57 member, tomoyo_same_path_group);
66 member, tomoyo_same_number_group);
83 * Returns matched member's pathname if @pathname matches pathnames in @group,
92 struct tomoyo_path_group *member; local
93 list_for_each_entry_rcu(member, &group->member_list, head.list) {
94 if (member->head.is_deleted)
96 if (!tomoyo_path_matches_pattern(pathname, member->member_name))
98 return member
118 struct tomoyo_number_group *member; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/conntrack-tools/conntrack-tools-1.4.0/include/
H A Dlinux_list.h10 * container_of - cast a member of a structure out to the containing structure
12 * @ptr: the pointer to the member.
14 * @member: the name of the member within the struct.
17 #define container_of(ptr, type, member) ({ \
18 typeof( ((type *)0)->member ) *__mptr = (ptr); \
19 (type *)( (char *)__mptr - offsetof(type,member) );})
272 * in the process of still modifying either member
332 * @member: the name of the list_struct within the struct.
334 #define list_entry(ptr, type, member) \
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpu/drm/radeon/
H A Dmkregtable.c21 * container_of - cast a member of a structure out to the containing structure
22 * @ptr: the pointer to the member.
24 * @member: the name of the member within the struct.
27 #define container_of(ptr, type, member) ({ \
28 const typeof(((type *)0)->member)*__mptr = (ptr); \
29 (type *)((char *)__mptr - offsetof(type, member)); })
213 * in the process of modifying either member (next or prev)
350 * @member: the name of the list_struct within the struct.
352 #define list_entry(ptr, type, member) \
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/tile/include/asm/
H A Dhardirq.h41 #define __IRQ_STAT(cpu, member) (per_cpu(irq_stat, cpu).member)
/netgear-R7000-V1.0.7.12_1.2.5/src/router/udev/
H A Dlist.h12 * container_of - cast a member of a structure out to the containing structure
14 * @ptr: the pointer to the member.
16 * @member: the name of the member within the struct.
19 #define container_of(ptr, type, member) ({ \
20 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
21 (type *)( (char *)__mptr - offsetof(type,member) );})
209 * @member: the name of the list_struct within the struct.
211 #define list_entry(ptr, type, member) \
212 container_of(ptr, type, member)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/isdn/mISDN/
H A Ddsp_cmx.c32 * There are 3 types of interaction: One member is alone, in this case only
54 * individual member. This is only the case if data needs to be dejittered
87 * If a member joins a conference:
89 * - If a member joins, its rx_buff is set to silence and change read pointer
109 * If tones are generated by hardware, this conference member is removed for
162 struct dsp_conf_member *member; local
179 list_for_each_entry(member, &conf->mlist, list) {
181 " - member = %s (slot_tx %d, bank_tx %d, "
184 member->dsp->name, member
222 struct dsp_conf_member *member; local
267 struct dsp_conf_member *member; local
386 struct dsp_conf_member *member, *nextm; local
1063 struct dsp_conf_member *member; local
1306 struct dsp *member, *other; local
1629 struct dsp_conf_member *member; local
1918 struct dsp_conf_member *member; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libevent-1.4.14b-stable/test/
H A Dregress.gen.h12 #define EVTAG_HAS(msg, member) ((msg)->member##_set == 1)
14 #define EVTAG_ASSIGN(msg, member, args...) (*(msg)->base->member##_assign)(msg, ## args)
15 #define EVTAG_GET(msg, member, args...) (*(msg)->base->member##_get)(msg, ## args)
17 #define EVTAG_ASSIGN(msg, member, ...) (*(msg)->base->member##_assign)(msg, ## __VA_ARGS__)
18 #define EVTAG_GET(msg, member, ...) (*(msg)->base->member##_ge
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/btrfs/
H A Dstruct-funcs.c44 #define BTRFS_SETGET_FUNCS(name, type, member, bits) \
51 unsigned long offset = part_offset + offsetof(type, member); \
55 offset + sizeof(((type *)0)->member) <= eb->map_start + \
58 return le##bits##_to_cpu(p->member); \
69 sizeof(((type *)0)->member), \
74 read_eb_member(eb, s, type, member, &leres); \
78 res = le##bits##_to_cpu(p->member); \
88 unsigned long offset = part_offset + offsetof(type, member); \
92 offset + sizeof(((type *)0)->member) <= eb->map_start + \
95 p->member
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/examples/LDAP/smbldap-tools-0.9.2/
H A Dsmbldap-groupmod114 my $member;
115 foreach $member ( @members ) {
118 if (is_unix_user($member) || is_nonldap_unix_user($member)) {
119 if (is_group_member($config{groupsdn},$member)) {
120 print "User $member already in the group\n";
122 print "adding user $member to group $groupName\n";
125 add => [memberUid => $member]
131 print "User $member does not exist: create it first !\n";
140 my $member;
[all...]

Completed in 207 milliseconds

1234567891011>>