Lines Matching defs:thefile

337  * @param thefile The apr file to use as stderr.
350 APR_DECLARE(apr_status_t) apr_file_open_stderr(apr_file_t **thefile,
355 * @param thefile The apr file to use as stdout.
360 APR_DECLARE(apr_status_t) apr_file_open_stdout(apr_file_t **thefile,
365 * @param thefile The apr file to use as stdin.
370 APR_DECLARE(apr_status_t) apr_file_open_stdin(apr_file_t **thefile,
375 * @param thefile The apr file to use as stderr.
390 APR_DECLARE(apr_status_t) apr_file_open_flags_stderr(apr_file_t **thefile,
396 * @param thefile The apr file to use as stdout.
411 APR_DECLARE(apr_status_t) apr_file_open_flags_stdout(apr_file_t **thefile,
417 * @param thefile The apr file to use as stdin.
432 APR_DECLARE(apr_status_t) apr_file_open_flags_stdin(apr_file_t **thefile,
438 * @param thefile The file descriptor to read from.
453 APR_DECLARE(apr_status_t) apr_file_read(apr_file_t *thefile, void *buf,
458 * @param thefile The file descriptor to write to.
471 APR_DECLARE(apr_status_t) apr_file_write(apr_file_t *thefile, const void *buf,
476 * @param thefile The file descriptor to write to.
489 APR_DECLARE(apr_status_t) apr_file_writev(apr_file_t *thefile,
496 * @param thefile The file descriptor to read from.
513 APR_DECLARE(apr_status_t) apr_file_read_full(apr_file_t *thefile, void *buf,
520 * @param thefile The file descriptor to write to.
537 APR_DECLARE(apr_status_t) apr_file_write_full(apr_file_t *thefile,
546 * @param thefile The file descriptor to write to.
556 APR_DECLARE(apr_status_t) apr_file_writev_full(apr_file_t *thefile,
563 * @param thefile The file descriptor to write to
565 APR_DECLARE(apr_status_t) apr_file_putc(char ch, apr_file_t *thefile);
570 * @param thefile The file descriptor to read from
572 APR_DECLARE(apr_status_t) apr_file_getc(char *ch, apr_file_t *thefile);
577 * @param thefile The file descriptor to write to
579 APR_DECLARE(apr_status_t) apr_file_ungetc(char ch, apr_file_t *thefile);
585 * @param thefile The file descriptor to read from
590 apr_file_t *thefile);
595 * @param thefile The file descriptor to write to
597 APR_DECLARE(apr_status_t) apr_file_puts(const char *str, apr_file_t *thefile);
601 * @param thefile The file descriptor to flush
603 APR_DECLARE(apr_status_t) apr_file_flush(apr_file_t *thefile);
607 * @param thefile The file descriptor to sync
609 APR_DECLARE(apr_status_t) apr_file_sync(apr_file_t *thefile);
613 * @param thefile The file descriptor to sync
615 APR_DECLARE(apr_status_t) apr_file_datasync(apr_file_t *thefile);
657 * @param thefile The file handle that is to be modified
666 APR_DECLARE(apr_status_t) apr_file_buffer_set(apr_file_t *thefile,
672 * @param thefile The file handle
674 APR_DECLARE(apr_size_t) apr_file_buffer_size_get(apr_file_t *thefile);
678 * @param thefile The file descriptor
687 APR_DECLARE(apr_status_t) apr_file_seek(apr_file_t *thefile,
795 * @param thefile The file to lock.
798 APR_DECLARE(apr_status_t) apr_file_lock(apr_file_t *thefile, int type);
802 * @param thefile The file to unlock.
804 APR_DECLARE(apr_status_t) apr_file_unlock(apr_file_t *thefile);
811 * @param thefile The currently open file.
814 apr_file_t *thefile);
928 * @param thefile The file to get information about.
932 apr_file_t *thefile);