HomeSort by relevance Sort by last modified time
    Searched defs:option (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /onnv/onnv-gate/usr/src/cmd/lp/lib/lp/
dashos.c 56 *option; local
68 for (option = o; *o && !issep(*o); o++)
74 if (option < o) {
77 addlist (&list, option);
  /onnv/onnv-gate/usr/src/lib/krb5/ss/
options.c 12 struct option { struct
17 static struct option options[] = {
29 register struct option *opt;
  /onnv/onnv-gate/usr/src/grub/grub-0.97/lib/
getopt.h 9 Free Software Foundation; either version 2, or (at your option) any
30 When `getopt' finds an option that takes an argument,
33 each non-option ARGV-element is returned here. */
44 non-option elements that the caller should itself scan.
56 /* Set to an option character which was unrecognized. */
62 of `struct option' terminated by an element containing a name which is
66 no_argument (or 0) if the option does not take an argument,
67 required_argument (or 1) if the option requires an argument,
68 optional_argument (or 2) if the option takes an optional argument.
71 to the value given in the field `val' when the option is found, bu
81 struct option struct
    [all...]
  /onnv/onnv-gate/usr/src/head/
getopt.h 51 struct option { struct
52 char *name; /* name of long option */
53 int has_arg; /* whether option takes an argument */
54 int *flag; /* if not NULL, set *flag to val when option found */
72 const struct option *, int *);
74 const struct option *, int *);
76 const struct option *, int *);
  /onnv/onnv-gate/usr/src/lib/libast/amd64/include/ast/
getopt.h 23 struct option struct
31 extern __MANGLE__ int getopt_long __PROTO__((int, char* const*, const char*, const struct option*, int*));
32 extern __MANGLE__ int getopt_long_only __PROTO__((int, char* const*, const char*, const struct option*, int*));
option.h 29 * command line option parse interface
77 char option[8]; /* current flag {-,+} + option */ member in struct:Opt_s
81 unsigned char assignment; /* option arg assigment op */
  /onnv/onnv-gate/usr/src/lib/libast/i386/include/ast/
getopt.h 23 struct option struct
31 extern __MANGLE__ int getopt_long __PROTO__((int, char* const*, const char*, const struct option*, int*));
32 extern __MANGLE__ int getopt_long_only __PROTO__((int, char* const*, const char*, const struct option*, int*));
  /onnv/onnv-gate/usr/src/lib/libast/sparc/include/ast/
getopt.h 23 struct option struct
31 extern __MANGLE__ int getopt_long __PROTO__((int, char* const*, const char*, const struct option*, int*));
32 extern __MANGLE__ int getopt_long_only __PROTO__((int, char* const*, const char*, const struct option*, int*));
  /onnv/onnv-gate/usr/src/lib/libast/sparcv9/include/ast/
getopt.h 23 struct option struct
31 extern __MANGLE__ int getopt_long __PROTO__((int, char* const*, const char*, const struct option*, int*));
32 extern __MANGLE__ int getopt_long_only __PROTO__((int, char* const*, const char*, const struct option*, int*));
  /onnv/onnv-gate/usr/src/lib/libast/common/comp/
getopt.h 40 struct option struct
48 extern int getopt_long(int, char* const*, const char*, const struct option*, int*);
49 extern int getopt_long_only(int, char* const*, const char*, const struct option*, int*);
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/cli/common/
DhcpCliOption.java 31 * This class is used to represent one command line option.
36 * The option key.
38 private int option; field in class:DhcpCliOption
41 * The value of the option.
46 * Constructor most likely used to create a boolean option.
47 * @param option the option key value
49 public DhcpCliOption(int option) {
51 this(option, null);
56 * Constructor most likely used to create a String valued option
    [all...]
DhcpCliOptions.java 54 * Creates a new option and adds it to the list.
55 * @param flag the option key value
56 * @param value the option value
61 DhcpCliOption option = new DhcpCliOption(flag, value); local
62 int i = options.indexOf(option);
64 options.add(option);
69 args[0] = option.getOptionCharacter();
77 * Reports as to whether or not an option exists in the list.
78 * @param flag the option key value
79 * @return true if the option is in the list, false if no
83 DhcpCliOption option = new DhcpCliOption(flag); local
96 DhcpCliOption option = new DhcpCliOption(flag); local
117 int option = 0; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/data/
BooleanOptionValue.java 52 Option option = OptionsTable.getTable().get(name); local
55 Option.getTypeDhcptabString(option.getType()) };
OptionsTable.java 58 public void add(Option [] opts) {
65 * Add a single option to the table.
66 * @param o The option to add.
68 public void add(Option o) {
69 // Don't add unless it is a valid option.
76 * Retrieve an option from the table by name
77 * @param opt the name of the option to retrieve
78 * @return the option found, or null if the option is not in the table
80 public Option get(String opt)
91 Option option = null; local
    [all...]
AsciiOptionValue.java 65 // Find option in option definition table in order to validate the data
66 Option option = OptionsTable.getTable().get(name); local
67 if (option == null) {
76 Option.getTypeDhcptabString(option.getType()) };
85 Option.getTypeDhcptabString(option.getType()) };
89 if ((option.getMaximum() != 0
    [all...]
IPOptionValue.java 48 // Find option in option definition table in order to validate the data
49 Option option = OptionsTable.getTable().get(name); local
50 if (option == null) {
59 Option.getTypeDhcptabString(option.getType()) };
77 Option.getTypeDhcptabString(option.getType()) };
86 Option.getTypeDhcptabString(option.getType()) }
    [all...]
OctetOptionValue.java 48 // Find option in option definition table in order to validate the data
49 Option option = OptionsTable.getTable().get(name); local
50 if (option == null) {
58 Option.getTypeDhcptabString(option.getType()) };
NumberOptionValue.java 79 // Find option in option definition table in order to validate the data
80 Option option = OptionsTable.getTable().get(name); local
81 if (option == null) {
87 // of what kind of number option we're dealing with. If this
88 // is a NUMBER option, then granularity defines the number of
91 // that type make make a valid option of that type. Note that
95 byte type = option.getType();
97 int bits = option.getGranularity() * 8
    [all...]
  /onnv/onnv-gate/usr/src/cmd/prtfru/
main.c 50 int containers_only = 0, dtd = 0, list_only = 0, nodtd = 0, option, local
58 while ((option = getopt(argc, argv, "cdlx")) != EOF) {
59 switch (option) {
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/client/
CreateOptionDialog.java 47 * Dialog to create/duplicate/edit an option.
65 private Option option, originalOption; field in class:CreateOptionDialog
72 Option.ctxts[Option.EXTEND],
73 Option.ctxts[Option.VENDOR],
74 Option.ctxts[Option.SITE]
85 return option.getVendorCount()
    [all...]
DeleteOptionDialog.java 42 * This dialog allows the user to delete an option definition
46 private Option option; field in class:DeleteOptionDialog
49 public DeleteOptionDialog(Frame f, Option o) {
52 option = o;
82 server.deleteRecord(option, signalBox.isSelected());
100 args[0] = option.getKey();
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/cli/dhtadm/
DisplayTable.java 33 import com.sun.dhcpmgr.data.Option;
63 * Returns the option flag for this function.
64 * @returns the option flag for this function.
84 Option [] options = null;
111 Option option = options[i]; local
112 Format.print(System.out, "%-20s\t", option.getKey());
114 Format.print(System.out, "%s\n", option.getValue());
AddEntry.java 33 import com.sun.dhcpmgr.data.Option;
67 * Returns the option flag for this function.
68 * @returns the option flag for this function.
119 Option option = local
121 dhcptabRecord = option;
  /onnv/onnv-gate/usr/src/lib/libsldap/common/
ns_trace.c 54 struct option { struct
60 static struct option options[] = {
74 struct option *opt;
  /onnv/onnv-gate/usr/src/lib/brand/lx/lx_brand/common/
file.c 434 int option = (int)p1; local
439 * man page literally defines the "option" field as being 1, 2 or 3,
443 switch (option) {

Completed in 360 milliseconds

1 2 3 4