Lines Matching defs:obuf
66 FILE *ibuf, *obuf, *fbuf, *readstat;
173 (obuf = fdopen(fd, "w")) == NULL) {
180 fclose(obuf);
186 putc(c, obuf);
189 fflush(obuf);
190 if (fferror(obuf)) {
193 fclose(obuf);
196 fclose(obuf);
198 (obuf = fdopen(fd, "r+")) == NULL) {
207 (obuf = fdopen(fd, "a")) == NULL) {
214 if (msend(mp, obuf, (int)value("alwaysignore") ?
219 fclose(obuf);
238 putc(c, obuf);
239 if (ferror(obuf))
244 fflush(obuf);
246 trunc(obuf);
247 if (fferror(obuf)) {
249 fclose(obuf);
252 fclose(obuf);
276 FILE *obuf = 0, *fbuf = 0, *rbuf = 0;
332 if ((obuf = fopen(mailname, "r+")) == NULL) {
339 putc(c, obuf);
345 if (msend(mp, obuf, 0, fputs) < 0) {
355 putc(c, obuf);
357 fflush(obuf);
358 trunc(obuf);
359 if (fferror(obuf)) {
372 if (!noremove && (fsize(obuf) == 0) && (value("keep") == NOSTR)) {
382 if (obuf)
383 fclose(obuf);