HomeSort by: relevance | last modified time | path
    Searched defs:rec_type (Results 1 - 23 of 23) sorted by relevancy

  /src/external/ibm-public/postfix/dist/src/cleanup/
cleanup_bounce.c 54 #include <rec_type.h>
104 int rec_type; local
149 if ((rec_type = rec_get(state->dst, buf, 0)) <= 0
150 || rec_type == REC_TYPE_END)
153 if (rec_type == REC_TYPE_ATTR) {
160 rec_type = junk;
163 switch (rec_type) {
cleanup_milter.c 112 #include <rec_type.h>
270 static void cleanup_milter_header_prepend(void *context, int rec_type,
785 int rec_type = REC_TYPE_ERROR; local
870 #define GET_NEXT_TEXT_OR_PTR_RECORD(rec_type, state, buf, curr_offset, quit) \
871 if ((rec_type = rec_get_raw(state->dst, buf, 0, REC_FLAG_NONE)) < 0) { \
879 if (rec_type == REC_TYPE_DTXT) \
881 if (rec_type != REC_TYPE_NORM && rec_type != REC_TYPE_CONT \
882 && rec_type != REC_TYPE_PTR) \
902 GET_NEXT_TEXT_OR_PTR_RECORD(rec_type, state, buf, curr_offset
998 int rec_type; local
1716 int rec_type; local
2449 int rec_type; local
    [all...]
  /src/external/ibm-public/postfix/dist/src/local/
forward.c 87 #include <rec_type.h>
279 int rec_type = 0; local
302 while (status == 0 && (rec_type = rec_get(attr.fp, buffer, 0)) > 0) {
303 if (rec_type != REC_TYPE_CONT && rec_type != REC_TYPE_NORM)
305 status = (REC_PUT_BUF(info->cleanup, rec_type, buffer) != rec_type);
307 if (status == 0 && rec_type != REC_TYPE_XTRA) {
309 info->queue_id, rec_type);
  /src/external/ibm-public/postfix/dist/src/bounce/
bounce_notify_util_tester.c 23 #include <rec_type.h>
54 int rec_type; local
100 while ((rec_type = rec_get(message_stream, rec_buf, 0)) > 0) {
101 switch (rec_type) {
109 msg_panic("unexpected message record type %d", rec_type);
bounce_notify_util.c 203 #include <rec_type.h>
237 int rec_type; local
327 while ((rec_type =
333 if (rec_type == REC_TYPE_SIZE) {
347 else if (rec_type == REC_TYPE_TIME) {
356 else if (rec_type == REC_TYPE_FROM) {
367 else if (rec_type == REC_TYPE_MESG) {
380 else if (rec_type == REC_TYPE_ATTR && var_threaded_bounce) {
861 int rec_type = 0; local
925 while (status == 0 && (rec_type = rec_get(bounce_info->orig_fp, bounce_info->buf, 0)) > 0)
    [all...]
  /src/external/ibm-public/postfix/dist/src/global/
delivered_hdr.c 99 #include <rec_type.h>
221 int rec_type; member in struct:test_case
246 REC_PUT_LIT(mem_fp, tp->rec_type, tp->content);
260 tp->rec_type, tp->content,
header_body_checks.c 15 /* void (*prepend) (void *context, int rec_type,
183 #include <rec_type.h>
476 static void out_cb(void *context, int rec_type, const char *buf,
529 static void body_out(void *context, int rec_type, const char *buf,
539 dp->recno, rec_type, (long) offset, buf);
540 out_cb(dp, rec_type, STR(dp->buf), LEN(dp->buf), offset);
543 dp->recno, rec_type, (long) offset, out);
544 out_cb(dp, rec_type, STR(dp->buf), LEN(dp->buf), offset);
575 int rec_type; local
624 rec_type = rec_streamlf_get(VSTREAM_IN, buf, REC_LEN)
    [all...]
mime_state.c 19 /* void (*body_out)(void *ptr, int rec_type,
26 /* int mime_state_update(state, rec_type, buf, len)
28 /* int rec_type;
188 /* .IP rec_type
189 /* The input record type as defined in rec_type(3h). State is
279 #include <rec_type.h>
449 #define BODY_OUT(ptr, rec_type, text, len) do { \
451 (ptr)->body_out((ptr)->app_context, (rec_type), \
710 static void mime_state_downgrade(MIME_STATE *state, int rec_type,
751 if (rec_type == REC_TYPE_NORM)
1268 int rec_type; local
    [all...]
  /src/external/ibm-public/postfix/dist/src/postdrop/
postdrop.c 160 #include <rec_type.h>
325 int rec_type; local
502 rec_type = rec_get_raw(VSTREAM_IN, buf, var_line_limit, REC_FLAG_NONE);
503 if (rec_type == REC_TYPE_EOF) { /* request canceled */
513 if (rec_type == REC_TYPE_ERROR)
515 if (strchr(*expected, rec_type) == 0)
516 msg_fatal("uid=%ld: unexpected record type: %d", (long) uid, rec_type);
517 if (rec_type == **expected)
520 if (rec_type == REC_TYPE_TIME)
523 if (rec_type == REC_TYPE_FROM)
    [all...]
  /src/external/ibm-public/postfix/dist/src/showq/
showq.c 143 #include <rec_type.h>
170 int rec_type; local
210 while (!vstream_ferror(client) && (rec_type = rec_get(qfile, buf, 0)) > 0) {
213 msg_info("record %c %s", rec_type, printable(start, '?'));
214 switch (rec_type) {
321 if (rec_type == REC_TYPE_FROM) {
  /src/sys/fs/hfs/
hfs.h 84 int16_t rec_type; member in struct:hfsnode::__anon6724::__anon6725
libhfs.h 342 int16_t rec_type; member in struct:__anon6758
359 int16_t rec_type; member in struct:__anon6759
378 int16_t rec_type; member in struct:__anon6760
  /src/external/ibm-public/postfix/dist/src/qmqpd/
qmqpd.c 207 #include <rec_type.h>
453 int rec_type; local
503 rec_type = REC_TYPE_NORM;
505 rec_type = REC_TYPE_CONT;
508 rec_fprintf(state->cleanup, rec_type,
516 if (rec_put(state->cleanup, rec_type, start, len) < 0) {
  /src/external/ibm-public/postfix/dist/src/postcat/
postcat.c 136 #include <rec_type.h>
178 int rec_type; local
192 #define TEXT_RECORD(rec_type) \
193 (rec_type == REC_TYPE_CONT || rec_type == REC_TYPE_NORM)
239 rec_type = rec_get_raw(fp, buffer, 0, rec_flags);
240 if (rec_type == REC_TYPE_ERROR)
242 if (rec_type == REC_TYPE_EOF)
271 vstream_printf("%s: %s\n", rec_type_name(rec_type), (value)); \
275 if (TEXT_RECORD(rec_type)) {
    [all...]
  /src/external/ibm-public/postfix/dist/src/smtpd/
smtpd_proxy.c 42 /* int proxy->rec_put(proxy->stream, rec_type, data, len)
44 /* int rec_type;
48 /* int proxy->rec_fprintf(proxy->stream, rec_type, format, ...)
50 /* int rec_type;
212 #include <rec_type.h>
558 int rec_type; local
609 switch (rec_type = rec_get(smtpd_proxy_replay_stream, replay_buf,
617 if (smtpd_proxy_rec_put(proxy->service_stream, rec_type,
657 msg_panic("%s: unexpected record type; %d", myname, rec_type);
831 static int smtpd_proxy_save_rec_put(VSTREAM *stream, int rec_type,
    [all...]
  /src/external/ibm-public/postfix/dist/src/oqmgr/
qmgr_message.c 135 #include <rec_type.h>
251 int rec_type; local
275 rec_type = rec_get(message->fp, buf, 0);
276 if (rec_type <= 0)
281 msg_info("old-style scan record %c %s", rec_type, start);
282 if (rec_type == REC_TYPE_END)
284 if (rec_type == REC_TYPE_MESG) {
310 if (message->data_offset == 0 || rec_type != REC_TYPE_END)
319 int rec_type; local
392 rec_type = rec_get_raw(message->fp, buf, 0, REC_FLAG_NONE)
    [all...]
  /src/external/ibm-public/postfix/dist/src/qmgr/
qmgr_message.c 144 #include <rec_type.h>
266 int rec_type; local
291 rec_type = rec_get(message->fp, buf, 0);
292 if (rec_type <= 0)
297 msg_info("old-style scan record %c %s", rec_type, start);
298 if (rec_type == REC_TYPE_END)
300 if (rec_type == REC_TYPE_DONE
301 || rec_type == REC_TYPE_RCPT
302 || rec_type == REC_TYPE_DRCP) {
306 if (rec_type == REC_TYPE_MESG)
341 int rec_type; local
    [all...]
  /src/external/ibm-public/postfix/dist/src/smtp/
smtp_proto.c 145 #include <rec_type.h>
1377 static void smtp_text_out(void *context, int rec_type,
1405 if (data_left > 0 || rec_type == REC_TYPE_CONT) {
1422 if (rec_type == REC_TYPE_CONT) {
1438 static void smtp_format_out(void *context, int rec_type, const char *fmt,...)
1448 smtp_text_out(context, rec_type, vstring_str(vp), VSTRING_LEN(vp), 0);
1622 static int smtp_out_raw_or_mime(SMTP_STATE *state, int rec_type, VSTRING *buf)
1628 smtp_text_out((void *) state, rec_type, vstring_str(buf),
1632 mime_state_update(session->mime_state, rec_type,
1699 int rec_type; local
    [all...]
  /src/external/ibm-public/postfix/dist/src/milter/
milter8.c 100 #include <rec_type.h>
2423 static void milter8_body(void *ptr, int rec_type,
2464 if (rec_type == REC_TYPE_NORM && todo == 0) {
2467 rec_type = REC_TYPE_EOF;
2491 if (rec_type == REC_TYPE_NORM && todo == 0) {
2494 rec_type = REC_TYPE_EOF;
2551 int rec_type; local
2610 if ((rec_type = rec_get(qfile, buf, 0)) < 0) {
2617 mime_errs = mime_state_update(mime_state, rec_type,
2628 if (rec_type != REC_TYPE_NORM && rec_type != REC_TYPE_CONT
    [all...]
  /src/external/gpl3/binutils/dist/bfd/
vms-alpha.c 4412 int rec_type = bfd_getl16 (ptr + 2);
4414 vms_debug2 ((2, "DST record: leng %d, type %d\n", rec_length, rec_type));
4418 if (rec_type == DST__K_MODEND)
4421 switch (rec_type)
4404 int rec_type = bfd_getl16 (ptr + 2); local
  /src/external/gpl3/binutils.old/dist/bfd/
vms-alpha.c 4399 int rec_type = bfd_getl16 (ptr + 2);
4401 vms_debug2 ((2, "DST record: leng %d, type %d\n", rec_length, rec_type));
4405 if (rec_type == DST__K_MODEND)
4408 switch (rec_type)
4391 int rec_type = bfd_getl16 (ptr + 2); local
  /src/external/gpl3/gdb.old/dist/bfd/
vms-alpha.c 4399 int rec_type = bfd_getl16 (ptr + 2);
4401 vms_debug2 ((2, "DST record: leng %d, type %d\n", rec_length, rec_type));
4405 if (rec_type == DST__K_MODEND)
4408 switch (rec_type)
4391 int rec_type = bfd_getl16 (ptr + 2); local
  /src/external/gpl3/gdb/dist/bfd/
vms-alpha.c 4399 int rec_type = bfd_getl16 (ptr + 2);
4401 vms_debug2 ((2, "DST record: leng %d, type %d\n", rec_length, rec_type));
4405 if (rec_type == DST__K_MODEND)
4408 switch (rec_type)
4391 int rec_type = bfd_getl16 (ptr + 2); local

Completed in 146 milliseconds