|
apr_status_t | apr_file_open (apr_file_t **newf, const char *fname, apr_int32_t flag, apr_fileperms_t perm, apr_pool_t *pool) |
|
apr_status_t | apr_file_close (apr_file_t *file) |
|
apr_status_t | apr_file_remove (const char *path, apr_pool_t *pool) |
|
apr_status_t | apr_file_rename (const char *from_path, const char *to_path, apr_pool_t *pool) |
|
apr_status_t | apr_file_link (const char *from_path, const char *to_path) |
|
apr_status_t | apr_file_copy (const char *from_path, const char *to_path, apr_fileperms_t perms, apr_pool_t *pool) |
|
apr_status_t | apr_file_append (const char *from_path, const char *to_path, apr_fileperms_t perms, apr_pool_t *pool) |
|
apr_status_t | apr_file_eof (apr_file_t *fptr) |
|
apr_status_t | apr_file_open_stderr (apr_file_t **thefile, apr_pool_t *pool) |
|
apr_status_t | apr_file_open_stdout (apr_file_t **thefile, apr_pool_t *pool) |
|
apr_status_t | apr_file_open_stdin (apr_file_t **thefile, apr_pool_t *pool) |
|
apr_status_t | apr_file_open_flags_stderr (apr_file_t **thefile, apr_int32_t flags, apr_pool_t *pool) |
|
apr_status_t | apr_file_open_flags_stdout (apr_file_t **thefile, apr_int32_t flags, apr_pool_t *pool) |
|
apr_status_t | apr_file_open_flags_stdin (apr_file_t **thefile, apr_int32_t flags, apr_pool_t *pool) |
|
apr_status_t | apr_file_read (apr_file_t *thefile, void *buf, apr_size_t *nbytes) |
|
apr_status_t | apr_file_write (apr_file_t *thefile, const void *buf, apr_size_t *nbytes) |
|
apr_status_t | apr_file_writev (apr_file_t *thefile, const struct iovec *vec, apr_size_t nvec, apr_size_t *nbytes) |
|
apr_status_t | apr_file_read_full (apr_file_t *thefile, void *buf, apr_size_t nbytes, apr_size_t *bytes_read) |
|
apr_status_t | apr_file_write_full (apr_file_t *thefile, const void *buf, apr_size_t nbytes, apr_size_t *bytes_written) |
|
apr_status_t | apr_file_writev_full (apr_file_t *thefile, const struct iovec *vec, apr_size_t nvec, apr_size_t *nbytes) |
|
apr_status_t | apr_file_putc (char ch, apr_file_t *thefile) |
|
apr_status_t | apr_file_getc (char *ch, apr_file_t *thefile) |
|
apr_status_t | apr_file_ungetc (char ch, apr_file_t *thefile) |
|
apr_status_t | apr_file_gets (char *str, int len, apr_file_t *thefile) |
|
apr_status_t | apr_file_puts (const char *str, apr_file_t *thefile) |
|
apr_status_t | apr_file_flush (apr_file_t *thefile) |
|
apr_status_t | apr_file_sync (apr_file_t *thefile) |
|
apr_status_t | apr_file_datasync (apr_file_t *thefile) |
|
apr_status_t | apr_file_dup (apr_file_t **new_file, apr_file_t *old_file, apr_pool_t *p) |
|
apr_status_t | apr_file_dup2 (apr_file_t *new_file, apr_file_t *old_file, apr_pool_t *p) |
|
apr_status_t | apr_file_setaside (apr_file_t **new_file, apr_file_t *old_file, apr_pool_t *p) |
|
apr_status_t | apr_file_buffer_set (apr_file_t *thefile, char *buffer, apr_size_t bufsize) |
|
apr_size_t | apr_file_buffer_size_get (apr_file_t *thefile) |
|
apr_status_t | apr_file_seek (apr_file_t *thefile, apr_seek_where_t where, apr_off_t *offset) |
|
apr_status_t | apr_file_pipe_create (apr_file_t **in, apr_file_t **out, apr_pool_t *pool) |
|
apr_status_t | apr_file_pipe_create_ex (apr_file_t **in, apr_file_t **out, apr_int32_t blocking, apr_pool_t *pool) |
|
apr_status_t | apr_file_namedpipe_create (const char *filename, apr_fileperms_t perm, apr_pool_t *pool) |
|
apr_status_t | apr_file_pipe_timeout_get (apr_file_t *thepipe, apr_interval_time_t *timeout) |
|
apr_status_t | apr_file_pipe_timeout_set (apr_file_t *thepipe, apr_interval_time_t timeout) |
|
apr_status_t | apr_file_lock (apr_file_t *thefile, int type) |
|
apr_status_t | apr_file_unlock (apr_file_t *thefile) |
|
apr_status_t | apr_file_name_get (const char **new_path, apr_file_t *thefile) |
|
apr_status_t | apr_file_data_get (void **data, const char *key, apr_file_t *file) |
|
apr_status_t | apr_file_data_set (apr_file_t *file, void *data, const char *key, apr_status_t(*cleanup)(void *)) |
|
int | apr_file_printf (apr_file_t *fptr, const char *format,...) |
|
apr_status_t | apr_file_perms_set (const char *fname, apr_fileperms_t perms) |
|
apr_status_t | apr_file_attrs_set (const char *fname, apr_fileattrs_t attributes, apr_fileattrs_t attr_mask, apr_pool_t *pool) |
|
apr_status_t | apr_file_mtime_set (const char *fname, apr_time_t mtime, apr_pool_t *pool) |
|
apr_status_t | apr_dir_make (const char *path, apr_fileperms_t perm, apr_pool_t *pool) |
|
apr_status_t | apr_dir_make_recursive (const char *path, apr_fileperms_t perm, apr_pool_t *pool) |
|
apr_status_t | apr_dir_remove (const char *path, apr_pool_t *pool) |
|
apr_status_t | apr_file_info_get (apr_finfo_t *finfo, apr_int32_t wanted, apr_file_t *thefile) |
|
apr_status_t | apr_file_trunc (apr_file_t *fp, apr_off_t offset) |
|
apr_int32_t | apr_file_flags_get (apr_file_t *f) |
|
apr_pool_t * | apr_file_pool_get (const apr_file_t *thefile) |
|
apr_status_t | apr_file_inherit_set (apr_file_t *thefile) |
|
apr_status_t | apr_file_inherit_unset (apr_file_t *thefile) |
|
apr_status_t | apr_file_mktemp (apr_file_t **fp, char *templ, apr_int32_t flags, apr_pool_t *p) |
|
apr_status_t | apr_temp_dir_get (const char **temp_dir, apr_pool_t *p) |
|