Searched defs:optbuf (Results 1 - 3 of 3) sorted by relevance

/httpd/server/
H A Dmpm_unix.c858 char optbuf[3]; local
866 optbuf[0] = '-';
867 /* option char returned by apr_getopt() will be stored in optbuf[1] */
868 optbuf[2] = '\0';
870 optbuf + 1, &optarg)) == APR_SUCCESS) {
871 switch(optbuf[1]) {
883 apr_pstrdup(process->pool, optbuf);
/httpd/server/mpm/netware/
H A Dmpm_netware.c1112 char optbuf[3]; local
1155 optbuf[0] = '-';
1156 optbuf[2] = '\0';
1158 while (apr_getopt(opt, AP_SERVER_BASEARGS"n:", optbuf + 1, &opt_arg) == APR_SUCCESS) {
1159 switch (optbuf[1]) {
1170 apr_pstrdup(process->pool, optbuf);
/httpd/server/mpm/winnt/
H A Dmpm_winnt.c1010 char optbuf[3]; local
1139 optbuf[0] = '-';
1140 optbuf[2] = '\0';
1144 optbuf + 1, &opt_arg)) == APR_SUCCESS) {
1145 switch (optbuf[1]) {
1169 apr_pstrdup(process->pool, optbuf);

Completed in 583 milliseconds