Searched refs:hdrs (Results 1 - 25 of 33) sorted by relevance

12

/illumos-gate/usr/src/cmd/mail/
H A Dpckaffspot.c46 if (hdrlines[H_AFWDFROM].head == (struct hdrs *)NULL) {
51 if (hdrlines[H_EOH].head != (struct hdrs *)NULL) {
52 if (hdrlines[H_DATE].head != (struct hdrs *)NULL) {
59 (hdrlines[H_EOH].head != (struct hdrs *)NULL)) {
H A Dpckrcvspot.c45 if (hdrlines[H_RECEIVED].head == (struct hdrs *)NULL) {
52 if (hdrlines[H_EOH].head != (struct hdrs *)NULL) {
53 if (hdrlines[H_DATE].head != (struct hdrs *)NULL) {
60 (hdrlines[H_EOH].head != (struct hdrs *)NULL)) {
H A Dpoplist.c35 struct hdrs *hdr2rm, *cont2rm, *nextcont;
42 if (hdr2rm == (struct hdrs *)NULL) {
46 if (hdr2rm->next == (struct hdrs *)NULL) {
49 (struct hdrs *)NULL;
52 hdr2rm->next->prev = (struct hdrs *)NULL;
55 if (hdr2rm->prev == (struct hdrs *)NULL) {
58 (struct hdrs *)NULL;
61 hdr2rm->prev->next = (struct hdrs *)NULL;
78 while (cont2rm != (struct hdrs *)NULL) {
H A Dpushlist.c40 struct hdrs *nhp, *ohp, *nextcont;
58 if ((p = malloc(sizeof(struct hdrs))) == (char *)NULL) {
62 memset(p, 0, sizeof(struct hdrs));
65 nhp = (struct hdrs *)p;
73 if (ohp == (struct hdrs *)NULL) {
100 while (nextcont->cont != (struct hdrs *)NULL) {
111 if (ohp == (struct hdrs *)NULL) {
H A Dprinthdr.c35 printhdr(int type, int hdrtype, struct hdrs *hptr, FILE *fp)
39 struct hdrs *contptr;
58 while (contptr->cont != (struct hdrs *)NULL) {
H A Dgendeliv.c42 register struct hdrs *hptr;
56 hdrlines[H_AFWDFROM].head = (struct hdrs *)NULL;
57 hdrlines[H_AFWDFROM].tail = (struct hdrs *)NULL;
60 hdrlines[H_RECEIVED].head = (struct hdrs *)NULL;
61 hdrlines[H_RECEIVED].tail = (struct hdrs *)NULL;
64 hdrlines[H_TCOPY].head = (struct hdrs *)NULL;
65 hdrlines[H_TCOPY].tail = (struct hdrs *)NULL;
114 if ((hptr = hdrlines[H_DATE].head) != (struct hdrs *)NULL) {
120 if ((hptr = hdrlines[H_FROM1].tail) == (struct hdrs *)NULL) {
157 if ((hptr = hdrlines[H_SUBJ].head) != (struct hdrs *)NUL
[all...]
H A Dclr_hinfo.c68 while (hdrlines[hdrtype].head != (struct hdrs *)NULL) {
H A Ddumpaff.c41 struct hdrs *hptr;
74 hptr != (struct hdrs *)NULL;
H A Ddumprcv.c41 struct hdrs *hptr;
67 hptr != (struct hdrs *)NULL;
H A Dsendmail.c53 struct hdrs *hptr;
259 (struct hdrs *)NULL) {
267 (struct hdrs *)NULL) {
275 (struct hdrs *)NULL) {
295 (struct hdrs *)NULL) {
303 (struct hdrs *)NULL) {
311 (struct hdrs *)NULL) {
337 if (hdrlines[H_MIMEVERS].head == (struct hdrs *)NULL) {
344 if (hdrlines[H_CTYPE].head == (struct hdrs *)NULL) {
351 if (hdrlines[H_CLEN].head == (struct hdrs *)NUL
[all...]
H A Dgoback.c140 hdrlines[H_AFWDFROM].head = (struct hdrs *)NULL;
141 hdrlines[H_AFWDFROM].tail = (struct hdrs *)NULL;
144 hdrlines[H_RECEIVED].head = (struct hdrs *)NULL;
145 hdrlines[H_RECEIVED].tail = (struct hdrs *)NULL;
148 hdrlines[H_TCOPY].head = (struct hdrs *)NULL;
149 hdrlines[H_TCOPY].tail = (struct hdrs *)NULL;
H A Dckdlivopts.c71 struct hdrs *hp;
81 if ((hp = hdrlines[H_DEFOPTS].head) != (struct hdrs *)NULL) {
86 if ((hp = hdrlines[H_TROPTS].head) != (struct hdrs *)NULL) {
91 if ((hp = hdrlines[tcopy_hdr].head) != (struct hdrs *)NULL) {
H A Dcopylet.c94 struct hdrs *hptr;
127 (struct hdrs *)NULL) {
209 (struct hdrs *)NULL) {
215 (struct hdrs *)NULL) {
222 (struct hdrs *)NULL) {
226 (struct hdrs *)NULL) {
230 (struct hdrs *)NULL) {
H A Dmail.h209 struct hdrs { struct
210 struct hdrs *next;
211 struct hdrs *prev;
212 struct hdrs *cont; /* Continuation lines */
217 struct hdrs *head;
218 struct hdrs *tail;
329 extern int printhdr (int type, int hdrtype, struct hdrs *hptr, FILE *fp);
H A Dsavehdrs.c65 if (hdrlines[H_FROM1].head == (struct hdrs *)NULL) {
/illumos-gate/usr/src/lib/lvm/libsvm/
H A DMakefile31 HDRDIR = common/hdrs
H A DMakefile.com51 CPPFLAGS += -I$(SRC)/lib/lvm/libsvm/common/hdrs
/illumos-gate/usr/src/lib/libinstzones/
H A DMakefile32 HDRDIR = hdrs
/illumos-gate/usr/src/lib/storage/libg_fc/
H A DMakefile39 HDRDIR = common/hdrs
/illumos-gate/usr/src/lib/storage/liba5k/
H A DMakefile41 HDRDIR = common/hdrs
/illumos-gate/usr/src/cmd/lvm/metassist/common/
H A DMakefile47 INCLUDES += -I../../../../lib/lvm/libmeta/common/hdrs
/illumos-gate/usr/src/cmd/lvm/util/
H A DMakefile76 metainit.i := CPPFLAGS += -I$(SRC)/lib/lvm/libmeta/common/hdrs
H A DMakefile.com101 metainit := CPPFLAGS += -I$(SRC)/lib/lvm/libmeta/common/hdrs
142 -I$(SRC)/lib/lvm/libmeta/common/hdrs $$f ; \
/illumos-gate/usr/src/cmd/lvm/metassist/layout/
H A DMakefile54 -I../../../../lib/lvm/libmeta/common/hdrs
/illumos-gate/usr/src/test/libc-tests/tests/symbols/
H A Dsymbols_test.c454 add_headers(struct sym_test *st, char *hdrs, char **err) argument
458 for (char *h = strsep(&hdrs, ";"); h != NULL; h = strsep(&hdrs, ";")) {
491 char *hdrs; local
500 hdrs = fields[1];
509 (add_headers(st, hdrs, err) < 0)) {
522 char *hdrs; local
532 hdrs = fields[2];
541 (add_headers(st, hdrs, err) < 0)) {
552 char *name, *value, *hdrs, *env local
593 char *hdrs; local
[all...]

Completed in 131 milliseconds

12