Home
last modified time | relevance | path

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

/dragonfly/contrib/cvs-1.12/src/
H A Dlogmsg.c728 FILE *pipefp; in logfile_write() local
818 if ((pipefp = run_popen (cmdline, "w")) == NULL) in logfile_write()
825 (void) fprintf (pipefp, "Update of %s\n", repository); in logfile_write()
826 (void) fprintf (pipefp, "In directory %s:", hostname); in logfile_write()
829 fprintf (pipefp, "<cannot get working directory: %s>\n\n", in logfile_write()
833 fprintf (pipefp, "%s\n\n", cp); in logfile_write()
837 setup_tmpfile (pipefp, "", changes); in logfile_write()
838 (void) fprintf (pipefp, "Log Message:\n%s\n", (message) ? message : ""); in logfile_write()
841 (void) fprintf (pipefp, "Status:\n"); in logfile_write()
844 (void) putc (c, pipefp); in logfile_write()
[all …]
H A Dedit.c816 FILE *pipefp; in notify_proc() local
845 pipefp = run_popen (cmdline, "w"); in notify_proc()
846 if (pipefp == NULL) in notify_proc()
853 fprintf (pipefp, "%s %s\n---\n", srepos, args->file); in notify_proc()
854 fprintf (pipefp, "Triggered %s watch on %s\n", args->type, repository); in notify_proc()
855 fprintf (pipefp, "By %s\n", args->who); in notify_proc()
861 return pclose (pipefp); in notify_proc()
/dragonfly/usr.bin/patch/
H A Dpch.c1458 FILE *pipefp = NULL; in do_ed_script() local
1482 if (pipefp != NULL) in do_ed_script()
1483 fputs(buf, pipefp); in do_ed_script()
1493 if (pipefp != NULL) in do_ed_script()
1494 fputs(buf, pipefp); in do_ed_script()
1499 if (pipefp != NULL) in do_ed_script()
1510 if (pipefp == NULL) in do_ed_script()
1512 fprintf(pipefp, "w\n"); in do_ed_script()
1513 fprintf(pipefp, "q\n"); in do_ed_script()
1514 fflush(pipefp); in do_ed_script()
[all …]