Searched refs:option (Results 101 - 125 of 1583) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/lib/
H A Dgetopt1.c10 Free Software Foundation; either version 2, or (at your option) any
74 const struct option *long_options;
80 /* Like getopt_long, but '-' as well as '--' can indicate a long option.
81 If an option that starts with '-' (not '--') doesn't match a long option,
82 but does match a short option, it is parsed as a short option
90 const struct option *long_options;
116 static struct option long_options[] =
135 printf ("option
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/lib/
H A Dgetopt.in.h8 the Free Software Foundation; either version 2.1, or (at your option)
109 When `getopt' finds an option that takes an argument,
112 each non-option ARGV-element is returned here. */
123 non-option elements that the caller should itself scan.
135 /* Set to an option character which was unrecognized. */
142 of `struct option' terminated by an element containing a name which is
146 no_argument (or 0) if the option does not take an argument,
147 required_argument (or 1) if the option requires an argument,
148 optional_argument (or 2) if the option takes an optional argument.
151 to the value given in the field `val' when the option i
161 struct option struct
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/gperf-3.0.4/lib/
H A Dgetopt1.c9 (at your option) any later version.
70 const struct option *long_options;
76 /* Like getopt_long, but '-' as well as '--' can indicate a long option.
77 If an option that starts with '-' (not '--') doesn't match a long option,
78 but does match a short option, it is parsed as a short option
86 const struct option *long_options;
112 static struct option long_options[] =
131 printf ("option
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/gperf-3.0.4/src/
H A Doptions.h14 (at your option) any later version.
134 /* Tests a given boolean option. Returns true if set, false otherwise. */
135 bool operator[] (Option_Type option) const;
136 /* Sets a given boolean option. */
137 void set (Option_Type option);
284 /* Global option coordinator for the entire program. */
285 extern Options option;
H A Dinput.cc11 (at your option) any later version.
41 if (option.get_input_file_name ())
42 return option.get_input_file_name ();
248 When the option -t is given or when the first section contains
305 if (option[TYPE])
466 option.set_delimiters (arg);
470 option.set (TYPE);
474 option.set (UPPERLOWER);
479 option.set_language (arg);
484 option
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/udhcpd/
H A Doptions.c2 * options.c -- DHCP server option packet tools
49 /* Lengths of the different option types */
63 /* get an option with bounds checking (warning, not aligned). */
75 LOG(LOG_WARNING, "bogus packet, option fields too long.");
80 LOG(LOG_WARNING, "bogus packet, option fields too long.");
91 LOG(LOG_WARNING, "bogus packet, option fields too long.");
118 /* return the position of the 'end' option (no bounds checking) */
131 /* add an option string to the options (an option string contains an option cod
154 unsigned char option[2 + 4]; local
198 attach_option(struct option_set **opt_list, struct dhcp_option *option, char *buffer, int length) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/xz/lib/
H A Dgetopt.in.h8 the Free Software Foundation; either version 2.1, or (at your option)
109 When `getopt' finds an option that takes an argument,
112 each non-option ARGV-element is returned here. */
123 non-option elements that the caller should itself scan.
135 /* Set to an option character which was unrecognized. */
142 of `struct option' terminated by an element containing a name which is
146 no_argument (or 0) if the option does not take an argument,
147 required_argument (or 1) if the option requires an argument,
148 optional_argument (or 2) if the option takes an optional argument.
151 to the value given in the field `val' when the option i
161 struct option struct
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/
H A DMakefile56 ifeq ($(call cc-option-yn,-mmcount-ra-address), y)
61 cflags-y += $(call cc-option, -mno-check-zero-division)
119 cflags-$(CONFIG_CPU_HAS_SMARTMIPS) += $(call cc-option,-msmartmips)
120 cflags-$(CONFIG_CPU_MICROMIPS) += $(call cc-option,-mmicromips -mno-jals)
122 cflags-$(CONFIG_SB1XXX_CORELIS) += $(call cc-option,-mno-sched-prolog) \
135 cflags-$(CONFIG_CPU_MIPS32_R1) += $(call cc-option,-march=mips32,-mips32 -U_MIPS_ISA -D_MIPS_ISA=_MIPS_ISA_MIPS32) \
137 cflags-$(CONFIG_CPU_MIPS32_R2) += $(call cc-option,-march=mips32r2,-mips32r2 -U_MIPS_ISA -D_MIPS_ISA=_MIPS_ISA_MIPS32) \
139 cflags-$(CONFIG_CPU_MIPS64_R1) += $(call cc-option,-march=mips64,-mips64 -U_MIPS_ISA -D_MIPS_ISA=_MIPS_ISA_MIPS64) \
141 cflags-$(CONFIG_CPU_MIPS64_R2) += $(call cc-option,-march=mips64r2,-mips64r2 -U_MIPS_ISA -D_MIPS_ISA=_MIPS_ISA_MIPS64) \
144 cflags-$(CONFIG_CPU_R5432) += $(call cc-option,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/networking/udhcp/
H A Dfiles.c73 /* find option 'code' in opt_list */
85 /* add an option to the opt_list */
87 const struct dhcp_option *option, char *buffer, int length)
91 existing = find_option(*opt_list, option->code);
93 DEBUG("Attaching option %s to list", option->name);
96 if ((option->flags & TYPE_MASK) == OPTION_STR1035)
101 /* make a new option */
104 new->data[OPT_CODE] = option->code;
109 while (*curr && (*curr)->data[OPT_CODE] < option
86 attach_option(struct option_set **opt_list, const struct dhcp_option *option, char *buffer, int length) argument
157 const struct dhcp_option *option; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/qt/
H A Dtorrent-delegate.cc290 TorrentDelegate :: sizeHint( const QStyleOptionViewItem& option, const Torrent& tor ) const argument
295 QFont nameFont( option.font );
300 QFont statusFont( option.font );
301 statusFont.setPointSize( int( option.font.pointSize( ) * 0.9 ) );
316 TorrentDelegate :: sizeHint( const QStyleOptionViewItem & option, argument
320 return sizeHint( option, *tor );
325 const QStyleOptionViewItem & option,
330 painter->setClipRect( option.rect );
331 drawTorrent( painter, option, *tor );
336 TorrentDelegate :: setProgressBarPercentDone( const QStyleOptionViewItem& option, cons argument
324 paint( QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index) const argument
354 drawTorrent( QPainter * painter, const QStyleOptionViewItem& option, const Torrent& tor ) const argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/scripts/rt-tester/
H A Drt-tester.py111 for option, value in options:
112 if option == "-c":
114 elif option == "-q":
116 elif option == "-t":
118 elif option == '-h':
/netgear-R7000-V1.0.7.12_1.2.5/src/router/udev/extras/ata_id/
H A Data_id.c98 static const struct option options[] = {
107 int option; local
109 option = getopt_long(argc, argv, "xh", options, NULL);
110 if (option == -1)
113 switch (option) {
/netgear-R7000-V1.0.7.12_1.2.5/src/router/udev/
H A Dudevsettle.c64 static const struct option options[] = {
69 int option; local
79 option = getopt_long(argc, argv, "t:h", options, NULL);
80 if (option == -1)
83 switch (option) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iptables-1.4.12.1/include/
H A Dxtables.h55 * %XTTYPE_NONE: option takes no argument
100 * %XTOPT_INVERT: option is invertible (usable with !)
101 * %XTOPT_MAND: option is mandatory
102 * %XTOPT_MULTI: option may be specified multiple times
116 * @name: name of option
118 * @id: unique number (within extension) for option, 0-31
119 * @excl: bitmask of flags that cannot be used with this option
120 * @also: bitmask of flags that must be used with this option
121 * @flags: bitmask of option flags, see %XTOPT_*
139 * @entry: current option bein
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/l2tpd-0.69/
H A Dmisc.c195 struct ppp_opts *add_opt (struct ppp_opts *option, char *fmt, ...) argument
203 "%s : Unable to allocate ppp option memory. Expect a crash\n",
209 vsnprintf (new->option, sizeof (new->option), fmt, args);
211 if (option)
213 last = option;
217 return option;
222 void opt_destroy (struct ppp_opts *option) argument
225 while (option)
227 tmp = option
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iptables-1.4.12/src/install/include/
H A Dxtables.h55 * %XTTYPE_NONE: option takes no argument
100 * %XTOPT_INVERT: option is invertible (usable with !)
101 * %XTOPT_MAND: option is mandatory
102 * %XTOPT_MULTI: option may be specified multiple times
116 * @name: name of option
118 * @id: unique number (within extension) for option, 0-31
119 * @excl: bitmask of flags that cannot be used with this option
120 * @also: bitmask of flags that must be used with this option
121 * @flags: bitmask of option flags, see %XTOPT_*
139 * @entry: current option bein
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/miscutils/
H A Dcrontab.c5 * usually setuid root, -c option only works if getuid() == geteuid()
37 enum { NONE, EDIT, LIST, REPLACE, DELETE } option = NONE; local
56 option = REPLACE;
59 option = REPLACE;
75 option = LIST;
79 option = EDIT;
83 option = DELETE;
104 bb_error_msg_and_die("-c option: superuser only");
112 if (i != ac || option == NONE)
143 switch (option) {
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/
H A DMakefile27 cflags-$(CONFIG_CPU_SH2) := $(call cc-option,-m2,)
28 cflags-$(CONFIG_CPU_SH2A) += $(call cc-option,-m2a,) \
29 $(call cc-option,-m2a-nofpu,)
30 cflags-$(CONFIG_CPU_SH3) := $(call cc-option,-m3,)
31 cflags-$(CONFIG_CPU_SH4) := $(call cc-option,-m4,) \
32 $(call cc-option,-mno-implicit-fp,-m4-nofpu)
33 cflags-$(CONFIG_CPU_SH4A) += $(call cc-option,-m4a,) \
34 $(call cc-option,-m4a-nofpu,)
35 cflags-$(CONFIG_CPU_SH4AL_DSP) += $(call cc-option,-m4al,)
36 cflags-$(CONFIG_CPU_SH5) := $(call cc-option,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/
H A DMakefile22 KBUILD_CFLAGS +=$(call cc-option,-marm,)
23 KBUILD_CFLAGS +=$(call cc-option,-ffreestanding,)
26 KBUILD_CFLAGS += $(call cc-option,-fno-dwarf2-cfi-asm)
61 arch-$(CONFIG_CPU_32v7) :=-D__LINUX_ARM_ARCH__=7 $(call cc-option,-march=armv7-a,-march=armv5t -Wa$(comma)-march=armv7-a)
62 arch-$(CONFIG_CPU_32v6) :=-D__LINUX_ARM_ARCH__=6 $(call cc-option,-march=armv6,-march=armv5t -Wa$(comma)-march=armv6)
63 # Only override the compiler option if ARMv6. The ARMv6K extensions are
66 arch-$(CONFIG_CPU_32v6K) :=-D__LINUX_ARM_ARCH__=6 $(call cc-option,-march=armv6k,-march=armv5t -Wa$(comma)-march=armv6k)
68 arch-$(CONFIG_CPU_32v5) :=-D__LINUX_ARM_ARCH__=5 $(call cc-option,-march=armv5te,-march=armv4t)
81 tune-$(CONFIG_CPU_ARM946E) :=$(call cc-option,-mtune=arm9e,-mtune=arm9tdmi)
89 tune-$(CONFIG_CPU_XSCALE) :=$(call cc-option,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/s390/
H A DMakefile38 cflags-$(CONFIG_MARCH_G5) += $(call cc-option,-march=g5)
39 cflags-$(CONFIG_MARCH_Z900) += $(call cc-option,-march=z900)
40 cflags-$(CONFIG_MARCH_Z990) += $(call cc-option,-march=z990)
41 cflags-$(CONFIG_MARCH_Z9_109) += $(call cc-option,-march=z9-109)
42 cflags-$(CONFIG_MARCH_Z10) += $(call cc-option,-march=z10)
52 # old style option for packed stacks
53 ifeq ($(call cc-option-yn,-mkernel-backchain),y)
63 # new style option for packed stacks
64 ifeq ($(call cc-option-yn,-mpacked-stack),y)
74 ifeq ($(call cc-option
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/util/
H A Dparse-options.h43 struct option;
44 typedef int parse_opt_cb(const struct option *, const char *arg, int unset);
48 * holds the type of the option, you must have an OPTION_END last in your
52 * the character to use as a short option name, '\0' if none.
55 * the long option name, without the leading dashes, NULL if none.
61 * token to explain the kind of argument this option wants. Keep it
65 * the short help associated to what the option does.
72 * PARSE_OPT_NOARG: says that this option takes no argument, for CALLBACKs
73 * PARSE_OPT_NONEG: says that this option cannot be negated
74 * PARSE_OPT_HIDDEN this option i
86 struct option { struct
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libgcrypt-1.5.0/src/
H A Dath.c9 the License, or (at your option) any later version.
56 /* Return the thread type from the option field. */
58 /* Return the version number from the option field. */
92 unsigned int option = 0;
94 /* Check if the requested thread option is compatible to the
95 thread option we are already committed to. */
97 option = ath_ops->option;
99 if (!ops_set && GET_OPTION (option))
102 if (GET_OPTION (ops.option)
90 unsigned int option = 0; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libgcrypt-1.5.0/src/
H A Dath.c9 the License, or (at your option) any later version.
56 /* Return the thread type from the option field. */
58 /* Return the version number from the option field. */
92 unsigned int option = 0;
94 /* Check if the requested thread option is compatible to the
95 thread option we are already committed to. */
97 option = ath_ops->option;
99 if (!ops_set && GET_OPTION (option))
102 if (GET_OPTION (ops.option)
90 unsigned int option = 0; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/conntrack-tools/conntrack-tools-1.4.0/src/
H A Dread_config_lex.l8 * (at your option) any later version.
27 %option yylineno
28 %option noinput
29 %option nounput
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/wget-1.12/src/
H A Dcss.l1 %option case-insensitive
2 %option noyywrap
3 %option never-interactive
15 your option) any later version.

Completed in 230 milliseconds

1234567891011>>