/httpd/support/ |
H A D | fcgistarter.c | 85 char opt; local 87 rv = apr_getopt(gopt, "c:p:i:N:", &opt, &arg); 93 switch (opt) {
|
H A D | httxt2dbm.c | 179 apr_getopt_t *opt; local 203 rv = apr_getopt_init(&opt, pool, argc, argv); 215 while ((rv = apr_getopt(opt, "vf::i::o::", &ch, &opt_arg)) == APR_SUCCESS) {
|
H A D | logresolve.c | 162 char opt; local 163 status = apr_getopt(o, "s:c", &opt, &arg); 171 switch (opt) {
|
H A D | passwd_common.c | 281 int parse_common_options(struct passwd_ctx *ctx, char opt, argument 284 switch (opt) { 340 opt);
|
H A D | htdbm.c | 324 char opt; local 340 while ((rv = apr_getopt(state, "cnmspdBbtivxlC:T:", &opt, &opt_arg)) == APR_SUCCESS) { 341 switch (opt) { 373 ret = parse_common_options(&h->ctx, opt, opt_arg);
|
H A D | htpasswd.c | 168 char opt; local 176 while ((rv = apr_getopt(state, "cnmspdBbDiC:v", &opt, &opt_arg)) == APR_SUCCESS) { 177 switch (opt) { 192 ret = parse_common_options(ctx, opt, opt_arg);
|
H A D | firehose.c | 654 apr_getopt_t *opt; local 686 apr_getopt_init(&opt, pool, argc, argv); 687 while ((status = apr_getopt_long(opt, cmdline_opts, &optch, &optarg)) 746 while (opt->ind < argc) { 752 filter->prefix = opt->argv[opt->ind]; 753 filter->len = strlen(opt->argv[opt->ind]); 754 apr_hash_set(file->filters, opt->argv[opt [all...] |
H A D | rotatelogs.c | 565 apr_getopt_t *opt; local 584 apr_getopt_init(&opt, status.pool, argc, argv); 586 while ((rv = apr_getopt(opt, "lL:p:fDtvecn:", &c, &opt_arg)) == APR_SUCCESS) { 588 while ((rv = apr_getopt(opt, "lL:p:fDtven:", &c, &opt_arg)) == APR_SUCCESS) { 640 if ((argc - opt->ind < 2) || (argc - opt->ind > 4) ) { 644 rv = apr_filepath_merge(&config.szLogRoot, "", argv[opt->ind++], 651 for(; opt->ind < argc; opt->ind++) { 652 if ((err = get_time_or_size(&config, argv[opt [all...] |
H A D | htcacheclean.c | 1385 char opt; local 1428 status = apr_getopt(o, "iDnvrtd:l:L:p:P:R:aA", &opt, &arg); 1438 switch (opt) { 1441 usage_repeated_arg(pool, opt); 1448 usage_repeated_arg(pool, opt); 1455 usage_repeated_arg(pool, opt); 1462 usage_repeated_arg(pool, opt); 1469 usage_repeated_arg(pool, opt); 1476 usage_repeated_arg(pool, opt); 1484 usage_repeated_arg(pool, opt); [all...] |
H A D | ab.c | 2127 apr_getopt_t *opt; local 2168 apr_getopt_init(&opt, cntxt, argc, argv); 2169 while ((status = apr_getopt(opt, "n:c:t:s:b:T:p:u:v:lrkVhwix:y:z:C:H:P:A:g:X:de:SqB:m:" 2369 if (opt->ind != argc - 1) { 2378 if (parse_url(apr_pstrdup(cntxt, opt->argv[opt->ind++]))) {
|
/httpd/server/ |
H A D | main.c | 473 apr_getopt_t *opt; local 516 apr_getopt_init(&opt, pcommands, process->argc, process->argv); 518 while ((rv = apr_getopt(opt, AP_SERVER_BASEARGS, &c, &opt_arg)) 627 if (rv != APR_EOF || opt->ind < opt->argc) {
|
H A D | mpm_unix.c | 857 apr_getopt_t *opt; local 864 apr_getopt_init(&opt, process->pool, process->argc, process->argv); 865 opt->errfn = NULL; 869 while ((rv = apr_getopt(opt, "k:" AP_SERVER_BASEARGS, 892 opt->ind--; 895 while (opt->ind < opt->argc) { 897 apr_pstrdup(process->pool, opt->argv[opt->ind++]);
|
H A D | core.c | 1625 allow_options_t opt; local 1640 opt = OPT_INDEXES; 1645 opt = (OPT_INCLUDES | OPT_INC_WITH_EXEC); 1648 opt = OPT_INCLUDES; 1651 opt = OPT_SYM_LINKS; 1654 opt = OPT_SYM_OWNER; 1657 opt = OPT_EXECCGI; 1660 opt = OPT_MULTI; 1663 opt = OPT_MULTI|OPT_EXECCGI; 1666 opt 1821 allow_options_t opt; local [all...] |
/httpd/modules/ssl/ |
H A D | ssl_engine_config.c | 1189 ssl_opt_t opt; local 1206 opt = SSL_OPT_STDENVVARS; 1209 opt = SSL_OPT_EXPORTCERTDATA; 1212 opt = SSL_OPT_FAKEBASICAUTH; 1215 opt = SSL_OPT_STRICTREQUIRE; 1218 opt = SSL_OPT_OPTRENEGOTIATE; 1221 opt = SSL_OPT_LEGACYDNFORMAT; 1230 dc->nOptionsAdd &= ~opt; 1231 dc->nOptionsDel |= opt; 1232 dc->nOptions &= ~opt; [all...] |
/httpd/server/mpm/netware/ |
H A D | mpm_netware.c | 1114 apr_getopt_t *opt; local 1157 apr_getopt_init(&opt, process->pool, process->argc, process->argv); 1158 while (apr_getopt(opt, AP_SERVER_BASEARGS"n:", optbuf + 1, &opt_arg) == APR_SUCCESS) {
|
/httpd/server/mpm/winnt/ |
H A D | mpm_winnt.c | 1014 apr_getopt_t *opt; local 1141 apr_getopt_init(&opt, process->pool, process->argc, process->argv); 1142 opt->errfn = NULL; 1143 while ((rv = apr_getopt(opt, "wn:k:" AP_SERVER_BASEARGS, 1180 opt->ind--; 1183 while (opt->ind < opt->argc) { 1185 apr_pstrdup(process->pool, opt->argv[opt->ind++]);
|