Home
last modified time | relevance | path

Searched refs:man (Results 1 – 25 of 616) sorted by path

12345678910>>...25

/illumos-gate/exception_lists/
H A Dpackaging800 opt/onbld/man/man1onbld/sgsmsg.1onbld
/illumos-gate/usr/src/
H A DMakefile42 COMMON_SUBDIRS= data uts lib cmd ucblib ucbcmd man test
68 PARALLEL_DIRS = data uts lib man
74 CHKMANSUBDIRS = man
H A DTargetdirs245 /usr/has/man \
345 /usr/share/man \
518 /usr/man \
614 $(ROOT)/usr/man:= LINKDEST=share/man
/illumos-gate/usr/src/cmd/
H A DMakefile263 man \
638 man \
/illumos-gate/usr/src/cmd/bnu/
H A DREADME36 uustat.1c: uustat man page
37 uulog.1c: uulog man page
38 uucleanup.1m: man page for uucleanup
/illumos-gate/usr/src/cmd/cmd-inet/etc/ike/
H A Dconfig.sample33 # Consult the ike.config(5) man page for further details. Here is a small
34 # example from the man page.
/illumos-gate/usr/src/cmd/cmd-inet/etc/secret/
H A Dike.preshared35 # Consult the man page for ike.preshared(5) for details.
/illumos-gate/usr/src/cmd/look/
H A Dwords14119 man
/illumos-gate/usr/src/cmd/lp/filter/postscript/
H A DREADME40 man page or file postio/README if you want to change the default.
163 Brief descriptions of the programs and source directories follow. Check the man
172 establish an interactive connection to the printer. Check the man page
265 man
/illumos-gate/usr/src/cmd/lp/filter/postscript/postio/
H A DREADME30 properly (-S option). All the options are described in the man page. In addition
74 Check the man page for more examples.
/illumos-gate/usr/src/cmd/man/
H A DMakefile18 PROG= man
21 OBJS= makewhatis.o man.o stringlist.o
22 MANIFEST= update-man-index.xml
23 SVCMETHOD= update-man-index
H A DTHIRDPARTYLICENSE1 man.c:
H A Dupdate-man-index41 for suffix in man share/man; do
54 /usr/bin/man -w
/illumos-gate/usr/src/cmd/mandoc/
H A DMakefile.common35 man.o \
H A DTHIRDPARTYLICENSE51 man.1:
H A Dhtml.c146 if ((h->base_man1 = outopts->man) == NULL) in html_alloc()
592 print_href(struct html *h, const char *name, const char *sec, int man) in print_href() argument
598 if (man) { in print_href()
611 if (man && p[1] == 'S') { in print_href()
616 } else if ((man && p[1] == 'N') || in print_href()
617 (man == 0 && p[1] == 'I')) in print_href()
H A Dlib.in18 * libc. While there will be section 3lib man pages for them, they
19 * won't be referenced in other man pages.
H A Dlibman.h22 #define MACRO_PROT_ARGS struct roff_man *man, \
H A Dman.c44 man_parseln(struct roff_man *man, int ln, char *buf, int offs) in man_parseln() argument
47 if (man->last->type != ROFFT_EQN || ln > man->last->line) in man_parseln()
48 man->flags |= MAN_NEWLINE; in man_parseln()
50 return roff_getcontrol(man->roff, buf, &offs) ? in man_parseln()
51 man_pmacro(man, ln, buf, offs) : in man_parseln()
52 man_ptext(man, ln, buf, offs); in man_parseln()
74 man_descope(struct roff_man *man, int line, int offs, char *start) in man_descope() argument
87 if (man->flags & MAN_ELINE) { in man_descope()
88 while (man->last->parent->type != ROFFT_ROOT && in man_descope()
89 man_macro(man->last->parent->tok)->flags & MAN_ESCOPED) in man_descope()
[all …]
H A Dman_html.c38 #define MAN_ARGS const struct roff_meta *man, \
114 html_man(void *arg, const struct roff_meta *man) in html_man() argument
121 n = man->first->child; in html_man()
129 print_man_head(man, h); in html_man()
134 man_root_pre(man, h); in html_man()
136 print_man_nodelist(man, n, h); in html_man()
138 man_root_post(man, h); in html_man()
143 print_man_head(const struct roff_meta *man, struct html *h) in print_man_head() argument
148 mandoc_asprintf(&cp, "%s(%s)", man->title, man->msec); in print_man_head()
158 print_man_node(man, n, h); in print_man_nodelist()
[all …]
H A Dman_macro.c93 man_unscope(struct roff_man *man, const struct roff_node *to) in man_unscope() argument
98 n = man->last; in man_unscope()
104 if (man->flags & (MAN_BLINE | MAN_ELINE) && in man_unscope()
110 if (man->flags & MAN_ELINE) { in man_unscope()
113 man->flags &= ~MAN_ELINE; in man_unscope()
117 man->flags &= ~MAN_BLINE; in man_unscope()
119 man->last = n; in man_unscope()
121 roff_node_delete(man, man->last); in man_unscope()
138 man->last = n; in man_unscope()
140 man->last->flags |= NODE_VALID; in man_unscope()
[all …]
H A Dman_term.c150 terminal_man(void *arg, const struct roff_meta *man) in terminal_man() argument
171 n = man->first->child; in terminal_man()
188 print_man_nodelist(p, &mt, n, man); in terminal_man()
191 term_begin(p, print_man_head, print_man_foot, man); in terminal_man()
194 print_man_nodelist(p, &mt, n, man); in terminal_man()
H A Dman_validate.c43 #define CHKARGS struct roff_man *man, struct roff_node *n
109 man_validate(struct roff_man *man) in man_validate() argument
119 n = man->last; in man_validate()
134 man->last = man->last->child; in man_validate()
135 while (man->last != NULL) { in man_validate()
136 man_validate(man); in man_validate()
137 if (man->last == n) in man_validate()
138 man->last = man->last->child; in man_validate()
140 man->last = man->last->next; in man_validate()
145 man->last = n; in man_validate()
[all …]
H A Dmanconf.h33 char *man; member
H A Dmanpath.c158 free(conf->output.man); in manconf_free()
271 if (conf->man != NULL) { in manconf_output()
272 oldval = mandoc_strdup(conf->man); in manconf_output()
275 conf->man = mandoc_strdup(cp); in manconf_output()

12345678910>>...25