Symbol: MEMBER
libexec/bootpd/readfile.c
1385
#define DUP_COPY(MEMBER) do \
libexec/bootpd/readfile.c
1387
if (!hp->flags.MEMBER) { \
libexec/bootpd/readfile.c
1388
if ((hp->flags.MEMBER = hp2->flags.MEMBER) != 0) { \
libexec/bootpd/readfile.c
1389
hp->MEMBER = hp2->MEMBER; \
libexec/bootpd/readfile.c
1394
#define DUP_LINK(MEMBER) do \
libexec/bootpd/readfile.c
1396
if (!hp->flags.MEMBER) { \
libexec/bootpd/readfile.c
1397
if ((hp->flags.MEMBER = hp2->flags.MEMBER) != 0) { \
libexec/bootpd/readfile.c
1398
assert(hp2->MEMBER); \
libexec/bootpd/readfile.c
1399
hp->MEMBER = hp2->MEMBER; \
libexec/bootpd/readfile.c
1400
(hp->MEMBER->linkcount)++; \
libexec/bootpd/readfile.c
706
#define PARSE_IA1(MEMBER) do \
libexec/bootpd/readfile.c
710
hp->flags.MEMBER = FALSE; \
libexec/bootpd/readfile.c
714
hp->MEMBER.s_addr = value; \
libexec/bootpd/readfile.c
715
hp->flags.MEMBER = TRUE; \
libexec/bootpd/readfile.c
720
#define PARSE_IAL(MEMBER) do \
libexec/bootpd/readfile.c
724
if (hp->flags.MEMBER) { \
libexec/bootpd/readfile.c
725
hp->flags.MEMBER = FALSE; \
libexec/bootpd/readfile.c
726
assert(hp->MEMBER); \
libexec/bootpd/readfile.c
727
del_iplist(hp->MEMBER); \
libexec/bootpd/readfile.c
728
hp->MEMBER = NULL; \
libexec/bootpd/readfile.c
731
hp->MEMBER = get_addresses(symbol); \
libexec/bootpd/readfile.c
732
if (hp->MEMBER == NULL) \
libexec/bootpd/readfile.c
734
hp->flags.MEMBER = TRUE; \
libexec/bootpd/readfile.c
739
#define PARSE_STR(MEMBER) do \
libexec/bootpd/readfile.c
743
if (hp->flags.MEMBER) { \
libexec/bootpd/readfile.c
744
hp->flags.MEMBER = FALSE; \
libexec/bootpd/readfile.c
745
assert(hp->MEMBER); \
libexec/bootpd/readfile.c
746
del_string(hp->MEMBER); \
libexec/bootpd/readfile.c
747
hp->MEMBER = NULL; \
libexec/bootpd/readfile.c
750
hp->MEMBER = get_shared_string(symbol); \
libexec/bootpd/readfile.c
751
if (hp->MEMBER == NULL) \
libexec/bootpd/readfile.c
753
hp->flags.MEMBER = TRUE; \
libexec/bootpd/readfile.c
758
#define PARSE_UINT(MEMBER) do \
libexec/bootpd/readfile.c
762
hp->flags.MEMBER = FALSE; \
libexec/bootpd/readfile.c
765
hp->MEMBER = value; \
libexec/bootpd/readfile.c
766
hp->flags.MEMBER = TRUE; \
sys/dev/drm/i915/i915_params.c
39
I915_PARAMS_FOR_EACH(MEMBER)
sys/dev/drm/i915/i915_params.h
75
I915_PARAMS_FOR_EACH(MEMBER);
tools/tools/drm/radeon/mkregtable/mkregtable.c
19
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)