| /src/sys/arch/i386/stand/lib/ | 
| menuutils.c | 48 	char *options;  local in function:docommand 51 	options = gettrailer(arg);
 55 			(*commands[i].c_fn)(options);
 
 | 
| parseutils.c | 53 	char *options;  local in function:gettrailer 55 	for (options = arg; *options; options++) {
 56 		switch (*options) {
 59 			*options++ = '\0';
 66 	if (*options == '\0')
 67 		return options;
 70 	while (*options == ' ' || *options == '\t'
 [all...]
 | 
| /src/usr.bin/vndcompress/ | 
| main.c | 44 static int (*operation)(int, char **, const struct options *) = &vndcompress; 49 	static const struct options zero_options;
 50 	struct options options = zero_options, *O = &options;  local in function:main
 
 | 
| /src/sys/arch/x68k/stand/libsa/ | 
| parseutils.c | 59 	char *options;  local in function:gettrailer 61 	if ((options = strchr(arg, ' ')) == NULL)
 64 		*options++ = '\0';
 67 	while (*options == ' ')
 68 		options++;
 70 	return options;
 127 	/* now, deal with options */
 
 | 
| /src/usr.bin/find/ | 
| option.c | 59 static OPTION const options[] = {  variable in typeref:typename:OPTION const[] 106  * Unimplemented Gnu findutils options
 187 	return ((OPTION *)bsearch(&tmp, options,
 188 	    sizeof(options)/sizeof(OPTION), sizeof(OPTION), typecompare));
 
 | 
| /src/usr.bin/rdist/ | 
| gram.y | 77 %type <intval> OPTION, options 142 cmd:		  INSTALL options opt_namelist SM = {
 145 			$1->sc_options = $2 | options;
 181 options:	  /* VOID */ = {  label
 184 		| options OPTION = {
 
 | 
| main.c | 68 int	options;	/* global options */  variable in typeref:typename:int 151 				if (options & VERIFY) {
 153 					options &= ~VERIFY;
 163 				options |= COMPARE;
 167 				options |= REMOVE;
 175 				options |= VERIFY;
 179 				options |= WHOLE;
 183 				options |= YOUNGER;
 187 				options |= FOLLOW
 [all...]
 | 
| /src/sys/stand/efiboot/ | 
| prompt.c | 50 	char *options;  local in function:gettrailer 52 	for (options = arg; *options; options++) {
 53 		switch (*options) {
 56 			*options++ = '\0';
 63 	if (*options == '\0')
 64 		return options;
 67 	while (*options == ' ' || *options == '\t'
 133  char *options;  local in function:docommand
 [all...]
 | 
| /src/sys/compat/linux32/common/ | 
| linux32_wait.c | 81 		syscallarg(int) options; 87 	SCARG(&ua, options) = SCARG(uap, options);
 99 		syscallarg(int) options;
 102 	int error, status, linux_options, options, pid;  local in function:linux32_sys_wait4
 107 	linux_options = SCARG(uap, options);
 111 	options = 0;
 113 		options |= WNOHANG;
 115 		options |= WUNTRACED;
 117 		options |= WALLSIG
 [all...]
 | 
| /src/usr.sbin/makefs/ | 
| msdos.c | 69 	struct msdos_options options;  member in struct:msdos_options_ex 86 	.value = &msdos_opt->options._name,				\
 157 	msdos_opt->options.create_size = MAX(msdos_opt->options.create_size,
 159 	msdos_opt->options.offset = fsopts->offset;
 160 	if (msdos_opt->options.bytes_per_sector == 0) {
 163 		msdos_opt->options.bytes_per_sector = fsopts->sectorsize;
 165 		fsopts->sectorsize = msdos_opt->options.bytes_per_sector;
 166 	} else if (fsopts->sectorsize != msdos_opt->options.bytes_per_sector) {
 169 		    fsopts->sectorsize, msdos_opt->options.bytes_per_sector)
 [all...]
 | 
| /src/bin/ksh/ | 
| c_ulimit.c | 62 		/* Do not use options -H, -S or -a */ 128 	static char	options[3 + NELEM(limits)];  local in function:c_ulimit
 138 	if (!options[0]) {
 139 		/* build options string on first call - yuck */
 140 		char *p = options;
 148 	while ((optc = ksh_getopt(wp, &builtin_opt, options)) != EOF)
 
 | 
| /src/lib/libpam/libpam/ | 
| pam_std_option.c | 43 /* Everyone has to have these options. It is not an error to 58 /* Populate the options structure, syslogging all errors */
 60 pam_std_option(struct options *options, struct opttab other_options[],
 76 			options->opt[i].name = std_options[i].name;
 81 			options->opt[i].name = oo->name;
 85 			options->opt[i].name = NULL;
 87 		options->opt[i].bool = 0;
 88 		options->opt[i].arg = NULL;
 97 			if (options->opt[i].name == NULL
 168  struct options options;  local in function:main
 [all...]
 | 
| /src/lib/libutil/ | 
| getmntopts.c | 57 	const char *options;  member in struct:mntoptparse 123 getmntopts(const char *options, const struct mntopt *m0, int *flagp,
 140 	if ((mp->optbuf = strdup(options)) == NULL) {
 152 	mp->options = options;
 163 		 * for options with assignments in them (ie. quotas)
 
 | 
| passwd.c | 558 	static const char *options[][2] = {  local in function:pw_default 565 	for (i = 0; i < sizeof(options) / sizeof(options[0]); i++)
 566 		if (strcmp(options[i][0], option) == 0)
 567 			return (options[i][1]);
 
 | 
| /src/sbin/fsck_v7fs/ | 
| fsck_v7fs.c | 75 	char *options = 0;  local in function:main 86 			 * generic fsck options
 110 			 * v7fs fsck options
 130 				catopt(&options, optarg);
 145 	if (options) {
 146 		if (strstr(options, "data"))
 148 		if (strstr(options, "free"))
 218 	(void)fprintf(stderr, "usage: %s [-ynpP] [-o options] [-B endian] "
 221 	(void)fprintf(stderr, "usage: %s -F [-ynpP] [-o options] [-B endian] "
 
 | 
| /src/sys/arch/mvme68k/stand/netboot/ | 
| config.h | 53 	u_short options;  member in struct:brdid 
 | 
| /src/usr.bin/realpath/ | 
| realpath.c | 56 static const char options[] = "Eeq";  variable in typeref:typename:const char[] 71 	while ((ch = getopt(argc, argv, options)) != -1) {
 251 	    getprogname(), options);
 
 | 
| /src/usr.bin/xlint/lint1/ | 
| ckgetopt.c | 48  * In a typical while loop for parsing getopt options, ensure that each 49  * option from the options string is handled, and that each handled option
 50  * is listed in the options string.
 63 	 * The options string from the getopt call.  Whenever an option is
 69 	char *options;  member in struct:__anonaccfaae40108
 119 	if (opt == ':' && ck.options[0] != ':')
 122 	char *optptr = strchr(ck.options, opt);
 127 		/* option '%c' should be listed in the options string */
 134 	for (const char *opt = ck.options; *opt != '\0'; opt++) {
 151 		if (!is_getopt_condition(tn, &ck.options))
 [all...]
 | 
| /src/libexec/telnetd/ | 
| global.c | 52 char	options[256];  variable in typeref:typename:char[256] 
 | 
| /src/sys/arch/emips/stand/common/ | 
| boot.c | 83 	char bootpath[PATH_MAX], options[OPT_MAX];  local in function:main 117 	options[0] = 0;
 123 	    name = getboot(bootpath,options);
 157 	call_kernel(entry, name, options, BOOTINFO_MAGIC, bootinfo);
 
 | 
| /src/sys/external/bsd/compiler_rt/dist/lib/asan/ | 
| asan_fuchsia.cc | 106   const AsanThread::InitOptions options = {stack_bottom, stack_size};  local in function:__asan::CreateAsanThread 107   thread->Init(&options);
 117 void AsanThread::SetThreadStackAndTls(const AsanThread::InitOptions *options) {
 120   CHECK_NE(options->stack_bottom, 0);
 121   CHECK_NE(options->stack_size, 0);
 122   stack_bottom_ = options->stack_bottom;
 123   stack_top_ = options->stack_bottom + options->stack_size;
 
 | 
| /src/usr.bin/extattr/ | 
| getextattr.c | 169 	const char *options, *attrname;  local in function:main 181 	options = NULL;
 189 		options = "fhqsxv:";
 193 		options = "fhnqi:";
 197 		options = "fhq";
 201 		options = "fhq";
 206 	while ((ch = getopt(argc, argv, options)) != -1) {
 
 | 
| /src/usr.sbin/autofs/ | 
| automount.c | 81 mount_autofs(const char *from, const char *fspath, const char *options, 89 	log_debugx("mounting %s on %s, prefix \"%s\", options \"%s\"",
 90 	    from, fspath, prefix, options);
 94 	args.master_options = __UNCONST(options);
 103 mount_if_not_already(const struct node *n, const char *map, const char *options,
 122 			 * XXX: Compare options and 'from',
 137 	mount_autofs(from, mountpoint, options, prefix);
 269 	char *options = NULL;  local in function:main_automount
 293 			options = concat(options, ',', optarg)
 [all...]
 | 
| /src/games/rogue/ | 
| room.c | 68 } options[NOPTS] = {  variable in typeref:typename:const struct option[] 568 			if (options[i].is_bool) {
 569 				*(options[i].bval) = (((ch == 't') || (ch == 'T')) ? 1 : 0);
 576 			if (options[i].is_bool) {
 590 						move(i, j + strlen(options[i].prompt));
 592 						move(i, j + strlen(options[i].prompt));
 603 					(void)strcpy(*(options[i].strval), buf);
 626 	const struct option *opt = &options[i];
 641 	const struct option *opt = &options[i];
 650 	move(i, strlen(options[i].prompt))
 [all...]
 | 
| /src/sbin/ifconfig/ | 
| media.c | 159 	 * any options, and we're ready to go. 274 	int type, subtype, options;  local in function:setmediainst
 288 	options = IFM_OPTIONS(media_current);
 290 	media_current = IFM_MAKEWORD(type, subtype, options, inst);
 299 	int type, subtype, options, inst, mode;  local in function:setmediamode
 310 	options = IFM_OPTIONS(media_current);
 323 	media_current = IFM_MAKEWORD(type, subtype, options, inst) | mode;
 343 	/* Find options. */
 
 |