Lines Matching defs:process
289 * in the parent process, unless running in ONE_PROCESS mode
321 * Child process main loop.
463 /* If we got a new socket, set it to non-blocking mode and process
882 if (ap_run_pre_mpm(s->process->pool, SB_NOT_SHARED) != OK) {
1109 static void netware_rewrite_args(process_rec *process)
1124 /* Rewrite process->argv[];
1131 if (process->argc > 0) {
1132 char *s = apr_pstrdup (process->pconf, process->argv[0]);
1140 APR_FILEPATH_TRUENAME, process->pool);
1144 /* Use process->pool so that the rewritten argv
1145 * lasts for the lifetime of the server process,
1149 mpm_new_argv = apr_array_make(process->pool, process->argc + 2,
1151 *(const char **)apr_array_push(mpm_new_argv) = process->argv[0];
1157 apr_getopt_init(&opt, process->pool, process->argc, process->argv);
1170 apr_pstrdup(process->pool, optbuf);
1178 process->argc = mpm_new_argv->nelts;
1179 process->argv = (const char * const *) mpm_new_argv->elts;