/illumos-gate/usr/src/cmd/cdrw/ |
H A D | options.h | 40 } options; typedef in typeref:struct:option_mask 42 void set_options_mask(options *msk, char *str); 43 void add_option(options *msk, char option); 44 int compare_options_mask(options *msk, options *specified);
|
/illumos-gate/usr/src/ucblib/libucb/port/sys/ |
H A D | wait3.c | 54 wait3(int *status, int options, struct rusage *rp) argument 56 return (wait4(0, status, options, rp));
|
H A D | wait4.c | 72 wait4(pid_t pid, int *status, int options, struct rusage *rp) argument 95 if (options & ~(WNOHANG|WUNTRACED)) 97 noptions = options | WEXITED | WTRAPPED; 115 if ((options & WNOHANG) && (info.si_pid == 0))
|
/illumos-gate/usr/src/lib/libpp/i386/ |
H A D | pptab.h | 36 static struct ppkeyword options[] = variable in typeref:struct:ppkeyword
|
/illumos-gate/usr/src/lib/libpp/sparc/ |
H A D | pptab.h | 36 static struct ppkeyword options[] = variable in typeref:struct:ppkeyword
|
/illumos-gate/usr/src/cmd/vi/port/ |
H A D | ex_data.c | 88 struct option options[vi_NOPTS + 1] = { variable in typeref:struct:option
|
/illumos-gate/usr/src/lib/krb5/ss/ |
H A D | options.c | 17 static struct option options[] = { variable in typeref:struct:option 30 for (opt = options; opt->text; opt++)
|
/illumos-gate/usr/src/lib/lvm/libmeta/common/ |
H A D | meta_mdcf.c | 57 mdprtopts_t options = PRINT_SHORT | PRINT_FAST; local 82 if (meta_print_all(sp, tname, NULL, tfp, options, NULL, ep) != 0)
|
H A D | meta_replace.c | 44 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
|
H A D | meta_reset.c | 41 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...] |
/illumos-gate/usr/src/lib/libshell/common/bltins/ |
H A D | cflow.c | 51 const char *options = (**argv=='r'?sh_optreturn:sh_optexit); local 52 while((n = optget(argv,options))) switch(n)
|
/illumos-gate/usr/src/lib/libresolv2/common/irs/ |
H A D | dns.c | 59 irs_dns_acc(const char *options) { argument 63 UNUSED(options); 122 if ((dns->res->options & RES_INIT) == 0U &&
|
H A D | lcl.c | 54 irs_lcl_acc(const char *options) { argument 58 UNUSED(options); 109 if ((lcl->res->options & RES_INIT) == 0U &&
|
H A D | nis.c | 64 irs_nis_acc(const char *options) { argument 69 UNUSED(options); 122 if ((nis->res->options & RES_INIT) == 0 &&
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/rdist/ |
H A D | gram.y | 56 %type <intval> OPTION, options 121 cmd: INSTALL options opt_namelist SM = { 124 $1->sc_options = $2 | options; 169 options: /* VOID */ = { label 172 | options OPTION = {
|
/illumos-gate/usr/src/lib/libshell/common/include/ |
H A D | regress.h | 36 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)
|
/illumos-gate/usr/src/lib/libproc/common/ |
H A D | pr_waitid.c | 46 idtype_t idtype, id_t id, siginfo_t *infop, int options) 57 return (waitid(idtype, id, infop, options)); 90 adp++; /* options argument */ 91 adp->arg_value = options; 45 pr_waitid(struct ps_prochandle *Pr, idtype_t idtype, id_t id, siginfo_t *infop, int options) argument
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppd/plugins/ |
H A D | passprompt.c | 20 static option_t options[] = { variable 121 add_options(options);
|
/illumos-gate/usr/src/cmd/csh/ |
H A D | wait3.c | 61 csh_wait3(int *status, int options, struct rusage *rp) argument 77 options |= (WNOHANG|WUNTRACED|WEXITED|WSTOPPED|WTRAPPED|WCONTINUED); 78 error = waitid(P_ALL, 0, &info, options); 83 if ((options & WNOHANG) && (info.si_pid == 0))
|
/illumos-gate/usr/src/cmd/devmgmt/cmds/ |
H A D | getvol.c | 49 int options = 0; variable 90 options |= DM_FORMAT; 94 options |= DM_FORMFS; 98 options |= DM_OLABEL; 102 options |= DM_BATCH; 106 options |= DM_WLABEL; 123 options |= DM_ELABEL; 142 switch (n = getvol(argv[optind], label, options, prompt)) {
|
/illumos-gate/usr/src/cmd/lvm/util/ |
H A D | metarecover.c | 60 mdcmdopts_t options = (MDCMD_DOIT | MDCMD_PRINT); local 108 options |= MDCMD_VERBOSE; 112 options &= ~MDCMD_DOIT; 178 error = meta_recover_sp(sp, namep, --argc, ++argv, options, ep);
|
/illumos-gate/usr/src/cmd/mkpwdict/ |
H A D | mkpwdict.c | 38 char options[] = "s:d:"; variable 89 while ((c = getopt(argc, argv, options)) != EOF) {
|
/illumos-gate/usr/src/cmd/tbl/ |
H A D | t3.c | 21 struct optstr {char *optnam; int *optadd;} options [] = { variable in typeref:struct:optstr 52 for(lp= options; lp->optnam; lp++) 68 for(lp= options; lp->optadd; lp++)
|
/illumos-gate/usr/src/ucbcmd/rusage/ |
H A D | rusage.c | 56 int options = 0; local 94 while (wait3(&status.w_status, options, &ru) != p)
|
/illumos-gate/usr/src/lib/libast/amd64/include/ast/ |
H A D | mnt.h | 50 char* options; /* options */ member in struct:__anon2594
|