| /onnv/onnv-gate/usr/src/lib/libeti/form/common/ |
| form_opts.c | 39 set_form_opts(FORM *f, OPTIONS opts) 41 Form(f)->opts = opts; 48 return (Form(f) -> opts); 52 form_opts_on(FORM *f, OPTIONS opts) 54 Form(f)->opts |= opts; 59 form_opts_off(FORM *f, OPTIONS opts) 61 Form(f)-> opts &= ~opts; [all...] |
| field_opts.c | 39 set_field_opts(FIELD *f, OPTIONS opts) 41 return (_sync_opts(Field(f), opts)); 47 return (Field(f) -> opts); 51 field_opts_on(FIELD *f, OPTIONS opts) 54 return (_sync_opts(x, x->opts | opts)); 59 field_opts_off(FIELD *f, OPTIONS opts) 62 return (_sync_opts(x, x->opts & ~opts));
|
| /onnv/onnv-gate/usr/src/cmd/logadm/ |
| opts.h | 25 * logadm/opts.h -- public definitions for opts module 44 struct opts; 60 struct opts *opts_parse(char **args, int flags); 61 void opts_free(struct opts *opts); 62 void opts_set(struct opts *opts, const char *o, const char *optarg); 63 int opts_count(struct opts *opts, const char *options) [all...] |
| conf.h | 39 void conf_close(struct opts *opts); 41 struct opts *conf_opts(const char *lhs); 42 void conf_replace(const char *lhs, struct opts *newopts);
|
| opts.c | 30 * logadm/opts.c -- options handling routines 45 #include "opts.h" 49 static void opts_setcmdarg(struct opts *opts, const char *cmdarg); 52 struct opts { struct 89 struct opts * 92 struct opts *ret = MALLOC(sizeof (*ret)); 99 /* no words to process, just return empty opts struct */ 160 * opts_free -- free a struct opts previously allocated by opts_parse() 163 opts_free(struct opts *opts 492 struct opts *opts; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/ssh/sshd/ |
| auth-options.c | 67 auth_parse_options(struct passwd *pw, char *opts, char *file, u_long linenum) 75 if (!opts) 78 while (*opts && *opts != ' ' && *opts != '\t') { 80 if (strncasecmp(opts, cp, strlen(cp)) == 0) { 83 opts += strlen(cp); 87 if (strncasecmp(opts, cp, strlen(cp)) == 0) { 90 opts += strlen(cp); 94 if (strncasecmp(opts, cp, strlen(cp)) == 0) [all...] |
| /onnv/onnv-gate/usr/src/lib/libxcurses2/src/libc/xcurses/ |
| attr_on.c | 52 attr_on(attr_t at, void *opts) 54 (void) wattr_on(stdscr, at, opts); 62 attr_off(attr_t at, void *opts) 64 (void) wattr_off(stdscr, at, opts); 72 attr_set(attr_t at, short co, void *opts) 74 (void) wattr_set(stdscr, at, co, opts); 82 color_set(short co, void *opts) 84 (void) wcolor_set(stdscr, co, opts); 92 attr_get(attr_t *at, short *co, void *opts) 94 (void) wattr_get(stdscr, at, co, opts); [all...] |
| vid_attr.c | 50 vid_attr(attr_t attr, short pair, void *opts) 54 code = vid_puts(attr, pair, opts, __m_putchar);
|
| chgat.c | 52 chgat(int n, attr_t at, short co, const void *opts) 56 code = wchgat(stdscr, n, at, co, opts); 64 mvchgat(int y, int x, int n, attr_t at, short co, const void *opts) 69 code = wchgat(stdscr, n, at, co, opts); 78 short co, const void *opts) 83 code = wchgat(w, n, at, co, opts);
|
| /onnv/onnv-gate/usr/src/tools/scripts/ |
| protocmp.terse.sh | 29 opts="" 35 opts="$opts -$arg" 51 protocmp $opts "$@" 2>$errlog |
|
| /onnv/onnv-gate/usr/src/cmd/ssh/include/ |
| getopt.h | 16 int BSDgetopt(int argc, char * const *argv, const char *opts);
|
| /onnv/onnv-gate/usr/src/lib/libxcurses/src/libc/xcurses/ |
| vid_attr.c | 47 vid_attr(attr_t attr, short pair, void *opts) 52 __m_trace("vid_attr(%x, %d, %p)", attr, pair, opts); 55 code = vid_puts(attr, pair, opts, __m_putchar);
|
| attr_on.c | 45 (attr_on)(attr_t at, void *opts) 48 __m_trace("attr_on(%x, %p)", at, opts); 57 (attr_off)(attr_t at, void *opts) 60 __m_trace("attr_off(%x, %p)", at, opts); 69 (attr_set)(attr_t at, short co, void *opts) 72 __m_trace("attr_set(%x, %d, %p)", at, co, opts); 82 (color_set)(short co, void *opts) 85 __m_trace("color_set(%d, %p)", co, opts); 94 (attr_get)(attr_t *at, short *co, void *opts) 97 __m_trace("attr_get(%p, %p, %p)", at, co, opts); [all...] |
| chgat.c | 47 (chgat)(int n, attr_t at, short co, const void *opts) 52 __m_trace("chgat(%d, %x, %d, %p)", n, at, co, opts); 55 code = wchgat(stdscr, n, at, co, opts); 61 (mvchgat)(int y, int x, int n, attr_t at, short co, const void *opts) 66 __m_trace("mvchgat(%d, %d, %d, %x, %d, %p)", y, x, n, at, co, opts); 70 code = wchgat(stdscr, n, at, co, opts); 77 WINDOW *w, int y, int x, int n, attr_t at, short co, const void *opts) 84 w, y, x, n, at, co, opts 89 code = wchgat(w, n, at, co, opts);
|
| wattr_on.c | 47 wattr_on(WINDOW *w, attr_t at, void *opts) 50 __m_trace("wattr_on(%p, %x, %p)", w, at, opts); 61 wattr_off(WINDOW *w, attr_t at, void *opts) 64 __m_trace("wattr_off(%p, %x, %p)", w, at, opts); 75 wattr_set(WINDOW *w, attr_t at, short co, void *opts) 78 __m_trace("wattr_set(%p, %x, %d, %p)", w, at, co, opts); 90 wattr_get(WINDOW *w, attr_t *at, short *co, void *opts) 93 __m_trace("wattr_get(%p, %p, %p, %p)", w, at, co, opts); 108 wcolor_set(WINDOW *w, short co, void *opts) 111 __m_trace("wcolor_set(%p, %d, %p)", w, co, opts); [all...] |
| /onnv/onnv-gate/usr/src/cmd/prtconf/ |
| prtconf.c | 40 struct prt_opts opts; variable in typeref:struct:prt_opts 59 opts.o_progname = "prtconf"; 61 opts.o_progname = (const char *) p + 1; 63 opts.o_progname = name; 183 opts.o_promdev = "/dev/openprom"; 188 ++opts.o_ancestors; 191 ++opts.o_productinfo; 194 ++opts.o_children; 197 ++opts.o_pciid; 200 ++opts.o_drv_name [all...] |
| /onnv/onnv-gate/usr/src/cmd/ntfsprogs/ |
| ntfscp.c | 75 static struct options opts; variable in typeref:struct:options 151 opts.device = NULL; 152 opts.src_file = NULL; 153 opts.dest_file = NULL; 154 opts.attr_name = NULL; 155 opts.inode = 0; 156 opts.attribute = AT_DATA; 163 if (!opts.device) { 164 opts.device = argv[optind - 1]; 165 } else if (!opts.src_file) [all...] |
| ntfscat.c | 53 static struct options opts; variable in typeref:struct:options 186 opts.inode = -1; 187 opts.attr = cpu_to_le32(-1); 188 opts.attr_name = NULL; 189 opts.attr_name_len = 0; 194 if (!opts.device) { 195 opts.device = argv[optind - 1]; 196 } else if (!opts.file) { 197 opts.file = argv[optind - 1]; 205 if (opts.attr != cpu_to_le32(-1)) [all...] |
| ntfscluster.c | 57 static struct options opts; variable in typeref:struct:options 140 opts.action = act_none; 141 opts.range_begin = -1; 142 opts.range_end = -1; 147 if (!opts.device) { 148 opts.device = argv[optind-1]; 150 opts.device = NULL; 156 if ((opts.action == act_none) && 157 (utils_parse_range(optarg, &opts.range_begin, &opts.range_end, FALSE)) [all...] |
| /onnv/onnv-gate/usr/src/cmd/cpc/common/ |
| cputrack.c | 61 static const struct options *opts = (const struct options *)&__options; variable in typeref:struct:options 69 (void) fprintf(stderr, "%s: ", opts->pgmname); 70 if (opts->debug) 93 struct options *opts = &__options; local 103 if ((opts->pgmname = strrchr(argv[0], '/')) == NULL) 104 opts->pgmname = argv[0]; 106 opts->pgmname++; 111 "counter library - %s\n"), opts->pgmname, errstr); 121 opts->mseconds = 1000; 122 opts->dotitle = 1 [all...] |
| cpustat.c | 84 static const struct options *opts = (const struct options *)&__options; variable in typeref:struct:options 101 (void) fprintf(stderr, "%s: ", opts->pgmname); 102 if (opts->debug) 119 struct options *opts = &__options; local 130 if ((opts->pgmname = strrchr(argv[0], '/')) == NULL) 131 opts->pgmname = argv[0]; 133 opts->pgmname++; 141 opts->pgmname, errstr); 147 "counters - %s\n"), opts->pgmname, errstr); 162 opts->mseconds = 5000 [all...] |
| /onnv/onnv-gate/usr/src/cmd/krb5/kinit/ |
| kinit.c | 345 add_preauth_opt(struct k_opts *opts, char *av) 350 if (opts->num_pa_opts == 0) { 351 opts->pa_opts = malloc(sizeof(krb5_gic_opt_pa_data)); 352 if (opts->pa_opts == NULL) 355 size_t newsize = (opts->num_pa_opts + 1) * sizeof(krb5_gic_opt_pa_data); 356 x = realloc(opts->pa_opts, newsize); 359 opts->pa_opts = x; 361 p = &opts->pa_opts[opts->num_pa_opts]; 371 opts->num_pa_opts++ 1303 struct k_opts opts; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/ipf/lib/common/ |
| load_pool.c | 31 if ((poolfd == -1) && ((opts & OPT_DONOTHING) == 0)) 33 if ((poolfd == -1) && ((opts & OPT_DONOTHING) == 0)) 47 if ((opts & OPT_REMOVE) == 0) { 49 if ((opts & OPT_DONOTHING) == 0) { 55 if ((opts & OPT_VERBOSE) != 0) { 57 printpool(&pool, bcopywrap, pool.ipo_name, opts); 64 if ((opts & OPT_REMOVE) != 0) { 66 if ((opts & OPT_DONOTHING) == 0) {
|
| printhash_live.c | 20 iphtable_t *printhash_live(hp, fd, name, opts) 24 int opts; 34 printhashdata(hp, opts); 36 if ((opts & OPT_DEBUG) == 0) 66 (void) printhashnode(hp, node, bcopywrap, opts); 71 if ((opts & OPT_DEBUG) == 0) 78 if ((opts & OPT_DEBUG) == 0)
|
| /onnv/onnv-gate/usr/src/common/net/dhcp/ |
| scan.c | 93 if (pl->opts[CD_VENDOR_SPEC] == NULL) 95 len = pl->opts[CD_VENDOR_SPEC]->len; 96 start = pl->opts[CD_VENDOR_SPEC]->value; 107 * Load opts table in PKT_LIST entry with PKT's options. 129 field_scan(pkt->options, &pkt->options[opt_size], pl->opts, 137 if (scan_vendor && (pl->opts[CD_VENDOR_SPEC] != NULL)) 140 if (pl->opts[CD_DHCP_TYPE] == NULL) 143 if (pl->opts[CD_DHCP_TYPE]->len != 1) 146 if (*pl->opts[CD_DHCP_TYPE]->value < DISCOVER || 147 *pl->opts[CD_DHCP_TYPE]->value > INFORM [all...] |