Home | History | Annotate | Download | only in mail

Lines Matching defs:obuf

260 show_msgnum(FILE *obuf, struct message *mp, struct message *parent)
264 (void)fprintf(obuf, "Message %s:\n", sget_msgnum(mp, parent));
268 FILE *obuf;
280 show_msgnum(args->obuf, mp, args->parent);
283 (void)mime_sendmessage(mp, args->obuf, args->igtab, NULL, NULL);
286 (void)mime_sendmessage(mp, args->obuf, args->igtab, NULL, *args->mip);
290 (void)sendmessage(mp, args->obuf, args->igtab, NULL, NULL);
327 FILE *volatile obuf; /* avoid longjmp clobbering */
337 if ((obuf = last_registered_file(0)) == NULL)
338 obuf = stdout;
359 args.obuf = obuf;
452 FILE *volatile obuf; /* void longjmp clobbering */
461 obuf = stdout;
466 obuf = Popen(cmd, "we");
467 if (obuf == NULL) {
474 (void)sendmessage(dot, obuf, ignoreall, NULL, NULL);
477 if (obuf != stdout) {
484 (void)Pclose(obuf);