Searched defs:pager (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/cmd/sgs/elfedit/common/
H A D_elfedit.h175 } pager; member in struct:__anon1464
H A Delfedit.c307 * If there is a pager process running, we are returning to the
309 * pager handle it instead of writing it directly from this process.
312 * If there is a pager process running, and we are not returning
313 * to the caller, then end the pager process now, before we generate
314 * any new output. This allows for any text buffered in the pager
317 if (state.pager.fptr != NULL) {
320 stream = state.pager.fptr;
391 * Start an output pager process for elfedit_printf()/elfedit_write() to use.
394 * If this elfedit session is not interactive, then no pager is
407 * If there is no pager proces
473 int pager; local
525 int pager; local
[all...]
/illumos-gate/usr/src/cmd/mandoc/
H A Dmain.c538 * When using a pager, finish writing both temporary files,
567 /* Once in the foreground, activate the pager. */
575 /* Wait for the pager to stop or exit. */
1036 const char *pager; local
1042 pager = getenv("MANPAGER");
1043 if (pager == NULL || *pager == '\0')
1044 pager = getenv("PAGER");
1045 if (pager == NULL || *pager
[all...]
/illumos-gate/usr/src/cmd/man/
H A Dman.c168 static char *pager = NULL; variable
253 pager = "cat";
370 if (pager == NULL) {
371 if ((pager = getenv("PAGER")) == NULL || *pager == '\0')
372 pager = PAGER;
374 DPRINTF("-- Using pager: %s\n", pager);
1253 (void) snprintf(cmdbuf, BUFSIZ, "%s %s", pager, catpname);
1261 path, cattool, manpname, (manwidth > 0) ? tmpbuf : "", pager);
[all...]
/illumos-gate/usr/src/cmd/fm/fmadm/common/
H A Dfaulty.c1651 * -p pipe output through pager
1663 char *pager; local
1716 if ((pager = getenv("PAGER")) == NULL)
1717 pager = "/usr/bin/more";
1718 fp = popen(pager, "w");
/illumos-gate/usr/src/cmd/zonecfg/
H A Dzonecfg.c1003 char *pager, *space; local
1005 pager = getenv("PAGER");
1006 if (pager == NULL || *pager == '\0')
1007 pager = PAGER;
1009 space = strchr(pager, ' ');
1012 if (path_find(pager) == 0) {
1015 if ((newfp = popen(pager, "w")) == NULL)
1021 pager, strerror(errno));

Completed in 317 milliseconds