Searched refs:help (Results 1 - 25 of 216) sorted by relevance

123456789

/src/sys/arch/ia64/stand/common/
H A Dmerge_help.awk6 # Merge two boot loader help files for FreeBSD 3.0
38 help[ind, "T"] = T;
39 help[ind, "S"] = S;
40 help[ind, "link"] = -1;
43 while (help[i, "T"] help[i, "S"] < T S)
46 i = help[i, "link"];
52 help[j, "link"] = ind;
53 help[ind, "link"] = -1;
55 help[in
[all...]
/src/sys/arch/i386/stand/lib/
H A Dgetextmemx.c64 int help = buf[0]; local in function:getextmemx
65 if (help == 15 * 1024)
66 help += buf[1] * 64;
67 if (extmem < help)
68 extmem = help;
88 int help = bufps2.dta[0]; local in function:getextmemx
89 if (help == 15 * 1024)
90 help += bufps2.dta[1];
91 if (extmem < help)
92 extmem = help;
[all...]
/src/usr.sbin/timed/timedc/
H A Dcmdtab.c44 const char helphelp[] = "gets help on commands";
53 { "help", helphelp, help },
57 { "?", helphelp, help },
H A Dtimedc-extern.h39 void help(int, char *[]);
/src/distrib/utils/more/
H A Dhelp.c1 /* $NetBSD: help.c,v 1.6 2003/10/13 14:34:25 agc Exp $ */
36 static char sccsid[] = "@(#)help.c 8.1 (Berkeley) 6/6/93";
38 __RCSID("$NetBSD: help.c,v 1.6 2003/10/13 14:34:25 agc Exp $");
50 help() function in typeref:typename:void
H A DMakefile9 SRCS= ch.c command.c decode.c help.c input.c line.c linenum.c main.c \
19 ${.CURDIR}/more.help ${DESTDIR}/usr/share/misc
/src/sys/lib/libsa/
H A Dalloc.c168 char *help; local in function:alloc
194 help = top;
202 panic("heap full (%p+%zu)", help, size);
204 *(unsigned int *)(void *)help = (unsigned int)ALIGN(size);
205 return help + ALIGN(sizeof(unsigned int));
213 help = (char *)(void *)*f;
215 return help + ALIGN(sizeof(unsigned int));
/src/sys/arch/sparc/stand/ofwboot/
H A Dalloc.c129 char *help; local in function:alloc
177 help = OF_claim(NULL, (unsigned)size, NBPG);
178 if (help == (char *)-1)
181 f = (struct ml *)help;
185 (u_long)(help + OVERHEAD), f->size);
198 help = (char *)f;
200 printf("=%lx (origsize %u)\n", (u_long)(help + OVERHEAD), f->size);
205 return (help + OVERHEAD);
/src/sys/arch/shark/stand/ofwboot/
H A Dalloc.c129 char *help; local in function:alloc
177 help = OF_claim(NULL, (unsigned)size, NBPG);
178 if (help == (char *)-1)
181 f = (struct ml *)help;
185 (u_long)(help + OVERHEAD), f->size);
198 help = (char *)f;
200 printf("=%lx (origsize %u)\n", (u_long)(help + OVERHEAD), f->size);
205 return (help + OVERHEAD);
/src/sys/arch/macppc/stand/ofwboot/
H A Dalloc.c128 char *help; local in function:alloc
176 help = OF_claim(NULL, (unsigned)size, NBPG);
177 if (help == (char *)-1)
180 f = (struct ml *)help;
184 (u_long)(help + OVERHEAD), f->size);
197 help = (char *)f;
199 printf("=%lx (origsize %u)\n", (u_long)(help + OVERHEAD), f->size);
204 return (help + OVERHEAD);
/src/usr.sbin/lpr/lpc/
H A Dextern.h45 void help(int, char **);
H A Dcmdtab.c54 #define helphelp "get help on commands"
70 { "help", helphelp, help, 0 },
78 { "?", helphelp, help, 0 },
/src/libexec/httpd/lua/
H A Dbozo.lua37 opt.add_option{"-C", "--cgimap", action="store", dest="cgimap", help="--cgimap 's t'"}
38 opt.add_option{"-E", "--enable-user-cgibin", action="store_true", dest="enableusercgibin", help="--enable-user-cgibin"}
39 opt.add_option{"-H", "--hide-dots", action="store_true", dest="hidedots", help="--hide-dots"}
40 opt.add_option{"-I", "--portnum", action="store", dest="portnum", help="--portnum number"}
41 opt.add_option{"-M", "--dynamicmime", action="store", dest="dynmime", help="--dynamicmime 'suffix type a b'"}
42 opt.add_option{"-S", "--server-software", action="store", dest="serversw", help="--server-software name"}
43 opt.add_option{"-U", "--username", action="store", dest="username", help="--username name"}
44 opt.add_option{"-V", "--unknown-slash", action="store_true", dest="unknown", help="--unknown-slash"}
45 opt.add_option{"-X", "--dir-index", action="store_true", dest="dirindex", help="--dir-index"}
46 opt.add_option{"-Z", "--ssl", action="store", dest="ssl", help
[all...]
H A Doptparse.lua9 -- op=add_option{"<opt>", action=<action>, dest=<dest>, help="<help message for this option>"}
78 if options.help then
112 " " .. optdesc.help .. "\n")
115 o.add_option{"--help", action="store_true", dest="help",
116 help="show this help message and exit"}
119 help="output version info."}
/src/sys/arch/zaurus/stand/zboot/
H A Dloadfile_zboot.c105 struct btinfo_common *help; local in function:zboot_exec
118 help = (struct btinfo_common *)(bootinfo->entry[i]);
119 if ((p - bibuf) + help->len > BOOTINFO_MAXSIZE)
122 memcpy(p, help, help->len);
123 p += help->len;
/src/compat/
H A Dm32.mk4 # Makefile fragment to help implement a set of 'cc -m32' libraries.
/src/games/boggle/boggle/
H A Dextern.h45 int help(void);
H A DMakefile7 SRCS= bog.c help.c mach.c prtable.c timer.c word.c
/src/tests/net/if/
H A Difconf.c43 help(void) function in typeref:typename:void
119 help();
129 help();
131 help();
/src/sys/arch/i386/pnpbios/
H A Dpnpbios.c523 short *help = (short *)(pnpbios_scratchbuf + PNPBIOS_BUFSIZE); local in function:pnpbios_getnumnodes
525 *--help = GSEL(GPNPBIOSDATA_SEL, SEL_KPL);
526 *--help = GSEL(GPNPBIOSSCRATCH_SEL, SEL_KPL);
527 *--help = 2; /* buffer offset for node size */
528 *--help = GSEL(GPNPBIOSSCRATCH_SEL, SEL_KPL);
529 *--help = 0; /* buffer offset for numnodes */
530 *--help = PNP_FC_GET_NUM_NODES;
532 res = pnpbioscall(((char *)help) - pnpbios_scratchbuf);
545 short *help = (short *)(pnpbios_scratchbuf + PNPBIOS_BUFSIZE); local in function:pnpbios_getnode
547 *--help
593 short *help = (short *)(pnpbios_scratchbuf + PNPBIOS_BUFSIZE); local in function:pnpbios_getevent
608 short *help = (short *)(pnpbios_scratchbuf + PNPBIOS_BUFSIZE); local in function:pnpbios_sendmessage
621 short *help = (short *)(pnpbios_scratchbuf + PNPBIOS_BUFSIZE); local in function:pnpbios_getdockinfo
[all...]
/src/sys/arch/atari/stand/tostools/rawwrite/
H A Drawwrite.c41 static void help PROTO((void));
46 int h_flag = 0; /* Show help */
95 help();
156 help(void) function in typeref:typename:void
/src/usr.bin/tip/
H A Dcmdtab.c58 { '?', NORM, "get this summary", help },
/src/sys/external/isc/libsodium/dist/build-aux/
H A Dmissing28 echo 1>&2 "Try '$0 --help' for more information"
45 -h|--h|--he|--hel|--help)
53 -h, --help display this help and exit
74 echo 1>&2 "Try '$0 --help' for more information"
89 case $2 in --version|--help) exit $st;; esac
/src/sys/external/isc/libsodium/dist/
H A Dmissing28 echo 1>&2 "Try '$0 --help' for more information"
45 -h|--h|--he|--hel|--help)
53 -h, --help display this help and exit
74 echo 1>&2 "Try '$0 --help' for more information"
89 case $2 in --version|--help) exit $st;; esac
/src/lib/librumpuser/build-aux/
H A Dmissing28 echo 1>&2 "Try '$0 --help' for more information"
45 -h|--h|--he|--hel|--help)
53 -h, --help display this help and exit
74 echo 1>&2 "Try '$0 --help' for more information"
89 case $2 in --version|--help) exit $st;; esac

Completed in 33 milliseconds

123456789