Searched refs:field (Results 1 - 25 of 246) sorted by relevance

12345678910

/opensolaris-onvv-gate/usr/src/cmd/sendmail/db/include/
H A Dqueue.h92 #define LIST_NEXT(elm, field) ((elm)->field.le_next)
102 #define LIST_INSERT_AFTER(listelm, elm, field) do { \
103 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
104 (listelm)->field.le_next->field.le_prev = \
105 &(elm)->field.le_next; \
106 (listelm)->field.le_next = (elm); \
107 (elm)->field
[all...]
H A Dshqueue.h62 #define SH_LIST_NEXTP(elm, field, type) \
63 ((struct type *)(((u_int8_t *)(elm)) + (elm)->field.sle_next))
65 #define SH_LIST_NEXT(elm, field, type) \
66 ((elm)->field.sle_next == -1 ? NULL : \
67 ((struct type *)(((u_int8_t *)(elm)) + (elm)->field.sle_next)))
69 #define SH_LIST_PREV(elm, field) \
70 ((ssize_t *)(((u_int8_t *)(elm)) + (elm)->field.sle_prev))
80 * of the next field in the structure.
82 #define SH_LIST_NEXT_TO_PREV(elm, field) \
83 (-(elm)->field
[all...]
H A Ddb_shash.h22 * field: the name of the field by which the "type" structures are linked.
33 #define HASHLOOKUP(begin, type, field, elt, r, n, hash, cmp) do { \
40 r != NULL; r = SH_TAILQ_NEXT(r, field, type)) \
52 * field: the name of the field by which the "type" structures are linked.
57 #define HASHINSERT(begin, type, field, elt, n, hash) do { \
63 SH_TAILQ_INSERT_HEAD(__bucket, elt, field, type); \
71 * field: the name of the field b
[all...]
/opensolaris-onvv-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/include/
H A Ddb-queue.h103 #define LIST_INSERT_AFTER(listelm, elm, field) { \
104 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
105 (listelm)->field.le_next->field.le_prev = \
106 &(elm)->field.le_next; \
107 (listelm)->field.le_next = (elm); \
108 (elm)->field.le_prev = &(listelm)->field.le_next; \
111 #define LIST_INSERT_HEAD(head, elm, field) { \
[all...]
/opensolaris-onvv-gate/usr/src/cmd/sendmail/include/sm/
H A Dtailq.h79 #define SM_TAILQ_NEXT(elm, field) ((elm)->field.tqe_next)
83 #define SM_TAILQ_PREV(elm, headname, field) \
84 (*(((struct headname *)((elm)->field.tqe_prev))->tqh_last))
88 #define SM_TAILQ_FOREACH(var, head, field) \
91 (var) = SM_TAILQ_NEXT(var, field))
93 #define SM_TAILQ_FOREACH_REVERSE(var, head, headname, field) \
96 (var) = SM_TAILQ_PREV(var, headname, field))
106 #define SM_TAILQ_INSERT_HEAD(head, elm, field) do { \
107 if (((elm)->field
[all...]
/opensolaris-onvv-gate/usr/src/lib/libsmbfs/smb/
H A Dqueue.h72 #define SLIST_FOREACH(var, head, field) \
75 (var) = SLIST_NEXT((var), field))
81 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \
82 SLIST_NEXT((elm), field) = SLIST_NEXT((slistelm), field); \
83 SLIST_NEXT((slistelm), field) = (elm); \
86 #define SLIST_INSERT_HEAD(head, elm, field) do { \
87 SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \
91 #define SLIST_NEXT(elm, field) ((elm)->field
[all...]
/opensolaris-onvv-gate/usr/src/cmd/sgs/dump/common/
H A Dfcns.c89 int field; local
94 field = 16;
96 field = 12;
101 field, "Type", field, "Offset",
102 field, "Vaddr", "Paddr");
104 field, "Filesz", field, "Memsz",
105 field, "Flags", "Align");
124 field, EC_WOR
[all...]
/opensolaris-onvv-gate/usr/src/uts/common/io/drm/
H A Dqueue.h160 #define SLIST_FOREACH(var, head, field) \
163 (var) = SLIST_NEXT((var), field))
165 #define SLIST_FOREACH_SAFE(var, head, field, tvar) \
167 (var) && ((tvar) = SLIST_NEXT((var), field), 1); \
170 #define SLIST_FOREACH_PREVPTR(var, varp, head, field) \
173 (varp) = &SLIST_NEXT((var), field))
179 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \
180 SLIST_NEXT((elm), field) = SLIST_NEXT((slistelm), field); \
181 SLIST_NEXT((slistelm), field)
[all...]
/opensolaris-onvv-gate/usr/src/cmd/ssh/include/
H A Dsys-queue.h199 #define SLIST_NEXT(elm, field) ((elm)->field.sle_next)
201 #define SLIST_FOREACH(var, head, field) \
204 (var) = SLIST_NEXT(var, field))
213 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \
214 (elm)->field.sle_next = (slistelm)->field.sle_next; \
215 (slistelm)->field.sle_next = (elm); \
218 #define SLIST_INSERT_HEAD(head, elm, field) do { \
219 (elm)->field
[all...]
H A Dsys-tree.h79 #define SPLAY_LEFT(elm, field) (elm)->field.spe_left
80 #define SPLAY_RIGHT(elm, field) (elm)->field.spe_right
85 #define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \
86 SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field); \
87 SPLAY_RIGHT(tmp, field) = (head)->sph_root; \
91 #define SPLAY_ROTATE_LEFT(head, tmp, field) do { \
92 SPLAY_RIGHT((head)->sph_root, field)
[all...]
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dshellwords.pl14 local(@words,$snippet,$field);
18 $field = '';
43 $field .= $snippet;
45 push(@words, $field);
/opensolaris-onvv-gate/usr/src/uts/common/sys/
H A Dqueue.h114 #define QUEUEDEBUG_LIST_INSERT_HEAD(head, elm, field) \
116 (head)->lh_first->field.le_prev != &(head)->lh_first) \
118 #define QUEUEDEBUG_LIST_OP(elm, field) \
119 if ((elm)->field.le_next && \
120 (elm)->field.le_next->field.le_prev != \
121 &(elm)->field.le_next) \
123 if (*(elm)->field.le_prev != (elm)) \
125 #define QUEUEDEBUG_LIST_POSTREMOVE(elm, field) \
126 (elm)->field
[all...]
H A Dmodel.h119 #define STRUCT_FADDR(handle, field) \
121 (void *)&(handle).ptr.m32->field : \
122 &(handle).ptr.m64->field)
124 #define STRUCT_FGET(handle, field) \
126 (handle).ptr.m32->field : \
127 (handle).ptr.m64->field)
129 #define STRUCT_FGETP(handle, field) \
131 (void *)(uintptr_t)(handle).ptr.m32->field : \
132 (handle).ptr.m64->field)
134 #define STRUCT_FSET(handle, field, va
[all...]
/opensolaris-onvv-gate/usr/src/lib/libparted/common/libparted/fs/jfs/
H A Djfs_types.h131 /* lxd_t field construction */
139 /* lxd_t field extraction */
160 /* xd_t field construction */
169 /* xd_t field extraction */
201 /* dxd_t field construction
274 * list header field definition in header element:
276 * type - type of list element struct embedding the link field
292 * list link field definition in list element:
294 * type - type of parent list element struct embedding the link field
310 * header - ptr to the header field i
[all...]
/opensolaris-onvv-gate/usr/src/lib/scsi/plugins/ses/SUN-Storage-J4500/common/
H A Dloki.c84 char *field; local
135 * fields, where each field can be either a key ("Fan PartNUM") or a
136 * value. If the field length is less than our shortest expected
144 for (field = (char *)stringin + 4;
145 field + fieldlen <= (char *)stringin + len; field += fieldlen) {
146 if (strncmp(field, "Storage J4500", 13) == 0) {
153 field += fieldlen;
154 if (field + fieldlen > (char *)stringin + len)
159 LIBSES_PROP_PART, field, fieldle
[all...]
/opensolaris-onvv-gate/usr/src/uts/common/avs/ns/
H A Dmodel.h128 #define STRUCT_FADDR(handle, field) \
130 (void *)&(handle).ptr.m32->field : \
131 &(handle).ptr.m64->field)
133 #define STRUCT_FGET(handle, field) \
135 (handle).ptr.m32->field : \
136 (handle).ptr.m64->field)
138 #define STRUCT_FGETP(handle, field) \
140 (void *)(handle).ptr.m32->field : \
141 (handle).ptr.m64->field)
143 #define STRUCT_FSET(handle, field, va
[all...]
/opensolaris-onvv-gate/usr/src/lib/libeti/form/common/
H A Dfield.c40 * default field
113 f->type = fsrc->type; /* copy field type */
189 dup_field(FIELD *field, int frow, int fcol) argument
191 /* FIELD * field; field to duplicate */
198 if (field && frow >= 0 && fcol >= 0 && Alloc(f, FIELD)) {
205 f->rows = field->rows;
206 f->cols = field->cols;
207 f->drows = field->drows;
208 f->dcols = field
238 link_field(FIELD *field, int frow, int fcol) argument
[all...]
/opensolaris-onvv-gate/usr/src/uts/common/sys/scsi/impl/
H A Dinquiry.h39 * Minimum inquiry data length (includes up through RDF field)
53 * example the INQUIRY_REVISION_ID field in 'struct scsi_inquiry' is
71 int scsi_ascii_inquiry_len(char *field, size_t length);
/opensolaris-onvv-gate/usr/src/uts/sun4u/starcat/sys/
H A Diosramvar.h118 * Values for the status field
139 #define IOSRAM_GET_HDRFIELD32(softp, field) \
140 (ddi_get32((softp)->handle, &((iosram_hdr_t *)(softp)->iosramp)->field))
141 #define IOSRAM_SET_HDRFIELD32(softp, field, val) \
142 (ddi_put32((softp)->handle, &((iosram_hdr_t *)(softp)->iosramp)->field,\
152 * NOTE - Although the unused field may be renamed for some use in the future,
274 #define IOSRAM_STAT(field) iosram_stats.field++
275 #define IOSRAM_STAT_ADD(field, amount) iosram_stats.field
[all...]
H A Dsc_cvcio.h120 * These macros can be used to determine the offset or size of any field in the
123 #define CVC_CTL_OFFSET(field) ((uint32_t)&(((cvc_ctl_t *)0)->field))
124 #define CVC_CTL_SIZE(field) (sizeof (((cvc_ctl_t *)0)->field))
/opensolaris-onvv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/data/qualifier/
H A DQualifierIPv6.java63 String field = tokenizer.nextToken();
65 if (field == null) {
67 } else if (field.equals(":")) {
81 matcher = pattern.matcher(field);
84 Object ipv4Field = ipv4.parseValue(field);
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/asn1/
H A Dasn1t.h286 #define ASN1_EX_TYPE(flags, tag, stname, field, type) { \
287 (flags), (tag), offsetof(stname, field),\
288 #field, ASN1_ITEM_ref(type) }
297 #define ASN1_IMP_EX(stname, field, type, tag, ex) \
298 ASN1_EX_TYPE(ASN1_TFLG_IMPLICIT | ex, tag, stname, field, type)
300 #define ASN1_EXP_EX(stname, field, type, tag, ex) \
301 ASN1_EX_TYPE(ASN1_TFLG_EXPLICIT | ex, tag, stname, field, type)
303 /* Any defined by macros: the field used is in the table itself */
313 #define ASN1_SIMPLE(stname, field, type) ASN1_EX_TYPE(0,0, stname, field, typ
[all...]
/opensolaris-onvv-gate/usr/src/common/net/wanboot/crypt/
H A Dcmn_test.c67 getxdata(unsigned char *cp, char *field, int len) argument
73 t = xstrtoi(field, 2);
75 field += 2;
/opensolaris-onvv-gate/usr/src/cmd/dtrace/test/tst/common/funcs/
H A Dtst.strtok.d37 /(this->field = strtok(this->str, ",")) == NULL/
44 printf("%s\n", this->field);
48 /(this->field = strtok(NULL, ",")) == NULL/
55 printf("%s\n", this->field);
59 /(this->field = strtok(NULL, ",")) == NULL/
66 printf("%s\n", this->field);
70 /(this->field = strtok(NULL, ",")) == NULL/
77 printf("%s\n", this->field);
83 printf("unexpected field: %s\n", this->field);
[all...]
/opensolaris-onvv-gate/usr/src/cmd/filesync/
H A Dbase.c330 char *field = "???"; local
363 field = "keyword";
368 field = gettext(TXT_noargs);
373 field = gettext(TXT_badver);
389 field = "source directory";
399 field = "destination directory";
405 field = "no source directory";
418 field = "missing base";
423 field = "level";
430 field
[all...]

Completed in 297 milliseconds

12345678910