Home
last modified time | relevance | path

Searched refs:pipefp (Results 1 – 3 of 3) sorted by relevance

/mirbsd/src/gnu/usr.bin/cvs/src/
Dlogmsg.c757 FILE *pipefp; in logfile_write() local
849 if ((pipefp = run_popen (cmdline, "w")) == NULL) in logfile_write()
856 (void) fprintf (pipefp, "Update of %s\n", repository); in logfile_write()
857 (void) fprintf (pipefp, "In directory %s:", hostname); in logfile_write()
860 fprintf (pipefp, "<cannot get working directory: %s>\n\n", in logfile_write()
864 fprintf (pipefp, "%s\n\n", cp); in logfile_write()
868 setup_tmpfile (pipefp, "", changes); in logfile_write()
869 (void) fprintf (pipefp, "Log Message:\n%s\n", (message) ? message : ""); in logfile_write()
872 (void) fprintf (pipefp, "Status:\n"); in logfile_write()
875 (void) putc (c, pipefp); in logfile_write()
[all …]
Dedit.c818 FILE *pipefp; in notify_proc() local
848 pipefp = run_popen (cmdline, "w"); in notify_proc()
849 if (pipefp == NULL) in notify_proc()
856 fprintf (pipefp, "%s %s\n---\n", srepos, args->file); in notify_proc()
857 fprintf (pipefp, "Triggered %s watch on %s\n", args->type, repository); in notify_proc()
858 fprintf (pipefp, "By %s\n", args->who); in notify_proc()
864 return pclose (pipefp); in notify_proc()
/mirbsd/src/usr.bin/patch/
Dpch.c1370 FILE *pipefp; in do_ed_script() local
1372 pipefp = NULL; in do_ed_script()
1380 pipefp = popen(buf, "w"); in do_ed_script()
1394 if (pipefp != NULL) in do_ed_script()
1395 fputs(buf, pipefp); in do_ed_script()
1399 if (pipefp != NULL) in do_ed_script()
1400 fputs(buf, pipefp); in do_ed_script()
1410 if (pipefp == NULL) in do_ed_script()
1412 fprintf(pipefp, "w\n"); in do_ed_script()
1413 fprintf(pipefp, "q\n"); in do_ed_script()
[all …]