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

/macosx-10.10/apache-793/httpd/modules/generators/
H A Dmod_cgid.c81 static int cgid_start(apr_pool_t *p, server_rec *main_server, apr_proc_t *procnew);
674 apr_proc_t *procnew = NULL; local
702 procnew = apr_pcalloc(ptrans, sizeof(*procnew));
791 procnew->pid = 0; /* no process to clean up */
812 rc = ap_os_create_privileged_process(r, procnew, argv0, argv,
816 rc = apr_proc_create(procnew, argv0, argv,
830 procnew->pid = 0; /* no process to clean up */
856 (void *)((long)procnew->pid));
862 apr_proc_t *procnew)
861 cgid_start(apr_pool_t *p, server_rec *main_server, apr_proc_t *procnew) argument
896 apr_proc_t *procnew = NULL; local
[all...]
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;
/macosx-10.10/apache-793/httpd/modules/ssl/
H A Dssl_engine_pphrase.c404 apr_proc_t *procnew;
416 procnew = (apr_proc_t *)apr_pcalloc(p, sizeof(*procnew));
417 rc = apr_proc_create(procnew, pname, (const char * const *)args,
421 * apr_pool_note_subprocess(p, procnew, APR_KILL_AFTER_TIMEOUT);
423 writetty = procnew->in;
424 readtty = procnew->out;
/macosx-10.10/apache-793/httpd/server/
H A Dlog.c319 apr_proc_t *procnew; local
336 procnew = (apr_proc_t *)apr_pcalloc(p, sizeof(*procnew));
343 rc = apr_proc_create(procnew, args[0], (const char * const *)args,
347 apr_pool_note_subprocess(p, procnew, APR_KILL_AFTER_TIMEOUT);
348 (*fpin) = procnew->in;
1545 apr_proc_t *procnew = NULL; local
1569 procnew = apr_pcalloc(pl->p, sizeof(apr_proc_t));
1570 status = apr_proc_create(procnew, args[0], (const char * const *) args,
1574 pl->pid = procnew;
[all...]
/macosx-10.10/apache-793/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;
/macosx-10.10/apache-793/httpd/modules/mappers/
H A Dmod_rewrite.c1152 apr_proc_t *procnew; local
1164 procnew = apr_pcalloc(p, sizeof(*procnew));
1165 rc = apr_proc_create(procnew, argv[0], (const char **)argv, NULL,
1169 apr_pool_note_subprocess(p, procnew, APR_KILL_AFTER_TIMEOUT);
1172 (*fpin) = procnew->in;
1176 (*fpout) = procnew->out;

Completed in 107 milliseconds