Home
last modified time | relevance | path

Searched refs:bytes_this_time (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/apr/file_io/unix/
H A Dcopy.c65 apr_size_t bytes_this_time = sizeof(buf); in apr_file_transfer_contents() local
70 read_err = apr_file_read(s, buf, &bytes_this_time); in apr_file_transfer_contents()
78 write_err = apr_file_write_full(d, buf, bytes_this_time, NULL); in apr_file_transfer_contents()
/freebsd-13.1/contrib/subversion/subversion/libsvn_fs_base/
H A Dfs.c1257 apr_size_t bytes_this_time = chunksize; in copy_db_file_safely() local
1261 if ((read_err = svn_io_file_read(s, buf, &bytes_this_time, pool))) in copy_db_file_safely()
1274 if ((write_err = svn_io_file_write_full(d, buf, bytes_this_time, NULL, in copy_db_file_safely()
/freebsd-13.1/contrib/subversion/subversion/libsvn_subr/
H A Dio.c892 apr_size_t bytes_this_time = sizeof(buf); in copy_contents() local
897 read_err = apr_file_read(from_file, buf, &bytes_this_time); in copy_contents()
904 write_err = apr_file_write_full(to_file, buf, bytes_this_time, NULL); in copy_contents()