Lines Matching defs:in

5  * (the "License"); you may not use this file except in compliance with
10 * Unless required by applicable law or agreed to in writing, software
97 * @note Win32 only effective with version 1.2.12, portably introduced in 1.3.0
137 apr_file_t *in;
146 * @bug This should either always or never be present in release
148 * it always in APR 1.0 yet leave it undefined in most cases.
154 * @remark This handle is closed and reset to NULL in every case
222 * Set if newly created threads should be created in detached state.
240 * @param stacksize The stack size in bytes
248 * @param guardsize The stack guard area size in bytes
262 * @param func The function to start the new thread in
305 * be passed in each time the function is tried to be
351 * @param new_mem The data stored in private memory
358 * Set the data to be stored in thread private memory
359 * @param priv The data to be stored in private memory
405 * @param in Should stdin be a pipe back to the parent?
410 * specified, that corresponding stream is closed in the child (and will
412 * side effects, as the next file opened in the child on Unix will fall
416 apr_int32_t in, apr_int32_t out,
429 * creates one in the process space for you.
473 * Set which directory the child process should start executing in.
475 * @param dir Which dir to start in. By default, this is the same dir as
476 * the parent currently resides in, when the createprocess call
497 * Determine if the child should start in detached state.
499 * @param detach Should the child start in detached state? Default is no.
523 * Specify an error function to be called in the child process if APR
524 * encounters an error in the child prior to running the specified program.
526 * @param errfn The function to call in the child process.
530 * in the parent process rather than invoke the callback in the now-forked
538 * failures to the caller of apr_proc_create(), rather than find out in
544 * fork() is used. This leads to extra overhead in the calling
552 * Determine if the child should start in its own address space or using the
555 * @param addrspace Should the child start in its own address space? Default
584 * This is currently the only non-portable call in APR. This executes
637 * @remark The child's status is in the return code to this process. It is one of:
671 * for some platforms... this should be revisited in 1.0
686 * stay in the foreground.
703 * and should be replaced in the APR 1.0 API with a bitflag of which
704 * proc->in/out/err handles should be health checked.