Home
last modified time | relevance | path

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

/netbsd/src/external/gpl2/xcvs/dist/src/
Dlogmsg.c733 FILE *pipefp; in logfile_write() local
823 if ((pipefp = run_popen (cmdline, "w")) == NULL) in logfile_write()
830 (void) fprintf (pipefp, "Update of %s\n", repository); in logfile_write()
831 (void) fprintf (pipefp, "In directory %s:", hostname); in logfile_write()
834 fprintf (pipefp, "<cannot get working directory: %s>\n\n", in logfile_write()
838 fprintf (pipefp, "%s\n\n", cp); in logfile_write()
842 setup_tmpfile (pipefp, "", changes); in logfile_write()
843 (void) fprintf (pipefp, "Log Message:\n%s\n", (message) ? message : ""); in logfile_write()
846 (void) fprintf (pipefp, "Status:\n"); in logfile_write()
849 (void) putc (c, pipefp); in logfile_write()
[all …]
Dedit.c818 FILE *pipefp; in notify_proc() local
847 pipefp = run_popen (cmdline, "w"); in notify_proc()
848 if (pipefp == NULL) in notify_proc()
855 fprintf (pipefp, "%s %s\n---\n", srepos, args->file); in notify_proc()
856 fprintf (pipefp, "Triggered %s watch on %s\n", args->type, repository); in notify_proc()
857 fprintf (pipefp, "By %s\n", args->who); in notify_proc()
863 return pclose (pipefp); in notify_proc()
/netbsd/src/usr.bin/patch/
Dpch.c1408 FILE *pipefp = NULL; in do_ed_script() local
1418 pipefp = popen(buf, "w"); in do_ed_script()
1432 if (pipefp != NULL) in do_ed_script()
1433 fprintf(pipefp, "%s", buf); in do_ed_script()
1443 if (pipefp != NULL) in do_ed_script()
1444 fprintf(pipefp, "%s", buf); in do_ed_script()
1449 if (pipefp != NULL) in do_ed_script()
1450 fprintf(pipefp, "%s", buf); in do_ed_script()
1460 if (pipefp == NULL) in do_ed_script()
1462 fprintf(pipefp, "w\n"); in do_ed_script()
[all …]