Searched defs:procnew (Results 1 - 6 of 6) sorted by relevance

/httpd/modules/generators/
H A Dmod_cgi.c387 apr_proc_t *procnew; local
455 procnew = apr_pcalloc(p, sizeof(*procnew));
456 rc = ap_os_create_privileged_process(r, procnew, command, argv, env,
466 apr_pool_note_subprocess(p, procnew, APR_KILL_AFTER_TIMEOUT);
468 *script_in = procnew->out;
474 *script_out = procnew->in;
479 *script_err = procnew->err;
H A Dmod_cgid.c81 static int cgid_start(apr_pool_t *p, server_rec *main_server, apr_proc_t *procnew);
682 apr_proc_t *procnew = NULL; local
710 procnew = apr_pcalloc(ptrans, sizeof(*procnew));
799 procnew->pid = 0; /* no process to clean up */
820 rc = ap_os_create_privileged_process(r, procnew, argv0, argv,
824 rc = apr_proc_create(procnew, argv0, argv,
838 procnew->pid = 0; /* no process to clean up */
864 (void *)((long)procnew->pid));
870 apr_proc_t *procnew)
869 cgid_start(apr_pool_t *p, server_rec *main_server, apr_proc_t *procnew) argument
904 apr_proc_t *procnew = NULL; local
[all...]
/httpd/modules/metadata/
H A Dmod_mime_magic.c2125 apr_proc_t *procnew; local
2149 procnew = apr_pcalloc(child_context, sizeof(*procnew));
2150 rc = apr_proc_create(procnew, compr[parm->method].argv[0],
2160 apr_pool_note_subprocess(child_context, procnew, APR_KILL_AFTER_TIMEOUT);
2161 *pipe_in = procnew->out;
/httpd/server/
H A Dlog.c256 apr_proc_t *procnew; local
273 procnew = (apr_proc_t *)apr_pcalloc(p, sizeof(*procnew));
281 rc = apr_proc_create(procnew, args[0], (const char * const *)args,
286 apr_pool_note_subprocess(p, procnew, APR_KILL_AFTER_TIMEOUT);
287 (*fpin) = procnew->in;
1644 apr_proc_t *procnew = NULL; local
1668 procnew = apr_pcalloc(pl->p, sizeof(apr_proc_t));
1669 status = apr_proc_create(procnew, args[0], (const char * const *) args,
1673 pl->pid = procnew;
[all...]
/httpd/modules/ssl/
H A Dmod_ssl_ct.c206 static int daemon_start(apr_pool_t *p, server_rec *main_server, apr_proc_t *procnew);
1057 apr_proc_t *procnew)
1071 procnew->pid = daemon_pid;
1072 procnew->err = procnew->in = procnew->out = NULL;
1073 apr_pool_note_subprocess(p, procnew, APR_KILL_AFTER_TIMEOUT);
1075 apr_proc_other_child_register(procnew, daemon_maint, procnew, NULL, p);
1224 apr_proc_t *procnew local
1056 daemon_start(apr_pool_t *p, server_rec *main_server, apr_proc_t *procnew) argument
[all...]
/httpd/modules/mappers/
H A Dmod_rewrite.c1182 apr_proc_t *procnew; local
1196 procnew = apr_pcalloc(p, sizeof(*procnew));
1197 rc = apr_proc_create(procnew, argv[0], (const char **)argv, NULL,
1201 apr_pool_note_subprocess(p, procnew, APR_KILL_AFTER_TIMEOUT);
1204 (*fpin) = procnew->in;
1208 (*fpout) = procnew->out;

Completed in 50 milliseconds