Searched refs:options (Results 1 - 25 of 394) sorted by relevance

1234567891011>>

/osnet-11/usr/src/lib/lvm/libmeta/common/
H A Dmeta_reset.c41 mdcmdopts_t options,
54 if (meta_isopen(sp, np, ep, options) != 0) {
61 mir.force = (options & MDCMD_FORCE) ? 1 : 0;
81 mdcmdopts_t options,
85 options |= MDCMD_RECURSE;
92 if (meta_trans_reset(sp, NULL, options, ep) != 0)
94 if (meta_sp_reset(sp, NULL, options, ep) != 0)
96 if (meta_raid_reset(sp, NULL, options, ep) != 0)
98 if (meta_mirror_reset(sp, NULL, options, ep) != 0)
100 if (meta_stripe_reset(sp, NULL, options, e
38 meta_reset( mdsetname_t *sp, mdname_t *np, mdcmdopts_t options, md_error_t *ep ) argument
79 meta_reset_all( mdsetname_t *sp, mdcmdopts_t options, md_error_t *ep ) argument
114 meta_reset_by_name( mdsetname_t *sp, mdname_t *np, mdcmdopts_t options, md_error_t *ep ) argument
[all...]
H A Dmeta_replace.c44 mdcmdopts_t options,
62 return (meta_raid_replace(sp, np, oldnp, newnp, options, ep));
64 return (meta_mirror_replace(sp, np, oldnp, newnp, options, ep));
79 mdcmdopts_t options,
97 return (meta_raid_enable(sp, np, compnp, options, ep));
99 return (meta_mirror_enable(sp, np, compnp, options, ep));
39 meta_replace_byname( mdsetname_t *sp, mdname_t *np, mdname_t *oldnp, mdname_t *newnp, mdcmdopts_t options, md_error_t *ep ) argument
75 meta_enable_byname( mdsetname_t *sp, mdname_t *np, mdname_t *compnp, mdcmdopts_t options, md_error_t *ep ) argument
/osnet-11/usr/src/lib/libadm/common/
H A Dgetvol.c71 getvol(char *device, char *label, int options, char *prompt) argument
73 return (_getvol(device, label, options, prompt, NULL));
78 _getvol(char *device, char *label, int options, char *prompt, char *norewind) argument
/osnet-11/usr/src/lib/brand/solaris10/zone/
H A Dpreuninstall.ksh49 # This hook will see the same options as the uninstall hook, so make sure
52 options="FhHnv"
55 # process options
57 while getopts :$options OPT ; do
H A Duninstall.ksh41 # options processing
57 options="FhHnvx:"
65 # check for bad or duplicate options
67 while getopts $options OPT ; do
87 while getopts :$options OPT ; do
93 # process options
95 while getopts :$options OPT ; do
/osnet-11/usr/src/lib/libresolv/
H A Dres_sethost.c51 _res.options |= RES_STAYOPEN | RES_USEVC;
57 _res.options &= ~(RES_STAYOPEN | RES_USEVC);
H A Dres_send.c145 if (_res.options & RES_DEBUG) {
150 if (!(_res.options & RES_INIT))
159 v_circuit = (_res.options & RES_USEVC) || buflen > PACKETSZ;
167 if (_res.options & RES_DEBUG)
185 if (_res.options & RES_DEBUG) {
195 if (_res.options & RES_DEBUG) {
216 if (_res.options & RES_DEBUG)
236 if (_res.options & RES_DEBUG)
261 if (_res.options & RES_DEBUG)
278 if (_res.options
[all...]
/osnet-11/usr/src/lib/libkmf/include/
H A Dkmfmapper.h50 char *options; member in struct:__anon1836
56 * The presently open mapper pathname and options. Can be based on the
67 * (Processed) options. Transparent to KMF. Each mapper can store its
68 * data there since options can be unique to every KMF handle.
70 void *options; member in struct:__anon1837
/osnet-11/usr/src/lib/krb5/ss/
H A Doptions.c16 static struct option options[] = { variable in typeref:struct:option
29 for (opt = options; opt->text; opt++)
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dgetopt1.c41 getopt_long (int argc, char *__getopt_argv_const *argv, const char *options,
44 return _getopt_internal (argc, (char **) argv, options, long_options,
49 _getopt_long_r (int argc, char **argv, const char *options,
53 return _getopt_internal_r (argc, argv, options, long_options, opt_index,
64 const char *options,
67 return _getopt_internal (argc, (char **) argv, options, long_options,
72 _getopt_long_only_r (int argc, char **argv, const char *options,
76 return _getopt_internal_r (argc, argv, options, long_options, opt_index,
40 getopt_long(int argc, char *__getopt_argv_const *argv, const char *options, const struct option *long_options, int *opt_index) argument
48 _getopt_long_r(int argc, char **argv, const char *options, const struct option *long_options, int *opt_index, struct _getopt_data *d) argument
62 getopt_long_only(int argc, char *__getopt_argv_const *argv, const char *options, const struct option *long_options, int *opt_index) argument
71 _getopt_long_only_r(int argc, char **argv, const char *options, const struct option *long_options, int *opt_index, struct _getopt_data *d) argument
/osnet-11/usr/src/lib/pyzfs/common/
H A Duserspace.py48 def skiptype(options, prop):
51 if field not in options.fields:
53 if isgroup and "posixgroup" not in options.types and \
54 "smbgroup" not in options.types:
56 if not isgroup and "posixuser" not in options.types and \
57 "smbuser" not in options.types:
61 def new_entry(options, isgroup, domain, rid):
76 if typename.lower().replace(" ", "") not in options.types:
83 if not options.noname and rid < 1<<31:
102 def process_one_raw(acct, options, pro
[all...]
H A Dallow.py132 def args_to_perms(parser, options, who, perms):
169 if options.set:
171 elif options.create:
175 if options.user:
179 elif options.group:
196 if options.local:
198 if options.descend:
340 (options, args) = parser.parse_args(sys.argv[2:])
342 if sum((bool(options.everyone), bool(options
[all...]
/osnet-11/usr/src/lib/cfgadm_plugins/scsi/common/
H A Dcfga_scsi.c59 const char *options,
80 if (options != NULL && strcmp(options, OPT_DISABLE_RCM) != 0) {
81 cfga_err(errstring, 0, ERRARG_OPT_INVAL, options, 0);
89 if (options != NULL)
110 const char *options,
131 if (options != NULL && strcmp(options, OPT_DISABLE_RCM) != 0) {
132 cfga_err(errstring, 0, ERRARG_OPT_INVAL, options, 0);
149 if (options !
56 cfga_change_state( cfga_cmd_t state_change_cmd, const char *ap_id, const char *options, struct cfga_confirm *confp, struct cfga_msg *msgp, char **errstring, cfga_flags_t flags) argument
107 cfga_private_func( const char *func, const char *ap_id, const char *options, struct cfga_confirm *confp, struct cfga_msg *msgp, char **errstring, cfga_flags_t flags) argument
166 cfga_test( const char *ap_id, const char *options, struct cfga_msg *msgp, char **errstring, cfga_flags_t flags) argument
186 cfga_list_ext( const char *ap_id, cfga_list_data_t **ap_id_list, int *nlistp, const char *options, const char *listopts, char **errstring, cfga_flags_t flags) argument
283 cfga_help(struct cfga_msg *msgp, const char *options, cfga_flags_t flags) argument
[all...]
/osnet-11/usr/src/lib/libshell/common/include/
H A Dregress.h36 Shopt_t options; member in struct:Regress_s
39 #define sh_isregress(r) is_option(&sh.regress->options,r)
40 #define sh_onregress(r) on_option(&sh.regress->options,r)
41 #define sh_offregress(r) off_option(&sh.regress->options,r)
/osnet-11/usr/src/cmd/ntfsprogs/
H A Dntfscat.h31 struct options { struct
/osnet-11/usr/src/grub/grub-0.97/lib/
H A Dgetopt1.c70 getopt_long (argc, argv, options, long_options, opt_index)
73 const char *options;
77 return _getopt_internal (argc, argv, options, long_options, opt_index, 0);
86 getopt_long_only (argc, argv, options, long_options, opt_index)
89 const char *options;
93 return _getopt_internal (argc, argv, options, long_options, opt_index, 1);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/pod/
H A Dpod2latex.PL51 my %options = (
62 GetOptions(\%options,
73 pod2usage(1) if ($options{help});
74 pod2usage(-verbose => 2) if ($options{man});
103 # If $options{'out'} is set we are processing to a single output file
105 if (exists $options{'out'} && defined $options{'out'}) {
128 AddPreamble => $options{'full'},
129 AddPostamble => $options{'full'},
130 MakeIndex => $options{'ful
[all...]
/osnet-11/usr/src/lib/libcmd/common/
H A Dchgrp.c167 getids(register char* s, char** e, Key_t* key, int options) argument
181 options |= OPT_CHOWN;
186 if (options & OPT_CHOWN)
191 if (*z || !(options & OPT_NUMERIC))
211 if (*z || !(options & OPT_NUMERIC))
227 register int options = 0; local
260 options |= OPT_CHOWN;
263 if (options & OPT_CHOWN)
281 options |= OPT_VERBOSE;
284 options |
[all...]
/osnet-11/usr/src/lib/libcfgadm/common/
H A Dllib-lcfgadm37 const char *options,
48 const char *options,
58 const char *options,
68 const char *options,
75 const char *options,
84 const char* options,
94 const char *options,
/osnet-11/usr/src/lib/libc/port/gen/
H A Dwaitpid.c78 waitpid(pid_t pid, int *stat_loc, int options) argument
99 options |= (WEXITED|WTRAPPED);
101 if ((error = waitid(idtype, id, &info, options)) < 0)
117 wait4(pid_t pid, int *stat_loc, int options, struct rusage *rp) argument
138 if (options & ~(WNOHANG|WUNTRACED|WCONTINUED)) {
142 noptions = options | WEXITED | WTRAPPED;
162 if ((options & WNOHANG) && info.si_pid == 0)
188 wait3(int *stat_loc, int options, struct rusage *rp) argument
190 return (wait4(0, stat_loc, options, rp));
/osnet-11/usr/src/lib/cfgadm_plugins/fp/common/
H A Dcfga_fp.c46 const char *options,
81 if (options != NULL) {
82 hw_option = calloc(1, strlen(options) + 1);
83 (void) snprintf(hw_option, strlen(options) + 1, "%s", options);
85 /* Use getsubopt() if more options get added */
101 options, 0);
111 options, 0);
120 if (options != NULL && apidt.flags == 0) {
122 cfga_err(errstring, 0, ERRARG_OPT_INVAL, options,
43 cfga_change_state( cfga_cmd_t state_change_cmd, const char *ap_id, const char *options, struct cfga_confirm *confp, struct cfga_msg *msgp, char **errstring, cfga_flags_t flags) argument
159 cfga_private_func( const char *func, const char *ap_id, const char *options, struct cfga_confirm *confp, struct cfga_msg *msgp, char **errstring, cfga_flags_t flags) argument
182 cfga_test( const char *ap_id, const char *options, struct cfga_msg *msgp, char **errstring, cfga_flags_t flags) argument
203 cfga_list_ext( const char *ap_id, cfga_list_data_t **ap_id_list, int *nlistp, const char *options, const char *listopts, char **errstring, cfga_flags_t flags) argument
339 cfga_help(struct cfga_msg *msgp, const char *options, cfga_flags_t flags) argument
[all...]
/osnet-11/usr/src/lib/libshell/common/bltins/
H A Dgetopts.c55 register char *options=error_info.context->id; local
76 options = opt_info.arg;
90 error_info.id = options;
91 options = argv[0];
105 if(mode= (*options==':'))
106 options++;
107 extended = *options=='\n' && *(options+1)=='[' || *options=='[' && *(options
[all...]
/osnet-11/usr/src/tools/onbld/Checks/
H A DCStyle.py50 options = [opttrans[x] for x in opts if opts[x]]
55 ret, tmpfile = processcheck('cstyle', options, fh, output)
H A DJStyle.py49 options = [opttrans[x] for x in opts if opts[x]]
54 ret, tmpfile = processcheck('jstyle', options, fh, output)
/osnet-11/usr/src/lib/libresolv2/common/resolv/
H A Dres_sendsigned.c91 if (newmsglen > PACKETSZ || nstatp->options & RES_USEVC)
94 nstatp->options |= RES_IGNTC;
96 nstatp->options |= RES_USEVC;
100 nstatp->options &= ~RES_DEBUG;
114 NULL, NULL, &tsig_time, nstatp->options & RES_KEEPTSIG);
116 Dprint((statp->options & RES_DEBUG) ||
121 DprintQ((statp->options & RES_DEBUG) ||
147 if (hp->tc && !usingTCP && (statp->options & RES_IGNTC) == 0U) {
148 nstatp->options &= ~RES_IGNTC;
152 Dprint((statp->options
[all...]

Completed in 112 milliseconds

1234567891011>>