Lines Matching refs:actual_size

58     long *actual_size,
90 long actual_size, rec_size; in output_mem() local
94 rec = get_write_buffer(len, &actual_size, in output_mem()
96 rec_size = min(actual_size, len); in output_mem()
155 long actual_size; in output_acl_header() local
163 &actual_size, TRUE, local_commands); in output_acl_header()
204 long actual_size; in output_humongus_header() local
219 &actual_size, TRUE, local_commands); in output_humongus_header()
250 long actual_size; in output_xattr_header() local
281 &actual_size, TRUE, local_commands); in output_xattr_header()
309 &actual_size, TRUE, local_commands); in output_xattr_header()
354 long actual_size; in output_file_header() local
397 &actual_size, TRUE, local_commands); in output_file_header()
440 &actual_size, TRUE, local_commands); in output_file_header()
476 &actual_size, TRUE, local_commands); in output_file_header()
745 long actual_size; in tlm_output_xattr() local
767 &actual_size, FALSE, local_commands); in tlm_output_xattr()
771 if ((actual_size < section_size) && in tlm_output_xattr()
777 size = actual_size; in tlm_output_xattr()
778 actual_size = section_size; in tlm_output_xattr()
790 read_size = min(section_size, actual_size); in tlm_output_xattr()
791 if ((actual_size = read(afd, buf, read_size)) < 0) in tlm_output_xattr()
804 NS_ADD(rdisk, actual_size); in tlm_output_xattr()
807 if (actual_size == -1) { in tlm_output_xattr()
813 seek_spot += actual_size; in tlm_output_xattr()
814 section_size -= actual_size; in tlm_output_xattr()
1010 long actual_size; in tlm_output_file() local
1029 &actual_size, FALSE, local_commands); in tlm_output_file()
1041 read_size = min(section_size, actual_size); in tlm_output_file()
1042 actual_size = read(fd, buf, read_size); in tlm_output_file()
1043 NS_ADD(rdisk, actual_size); in tlm_output_file()
1046 if (actual_size == 0) in tlm_output_file()
1049 if (actual_size == -1) { in tlm_output_file()
1055 seek_spot += actual_size; in tlm_output_file()
1056 file_size -= actual_size; in tlm_output_file()
1057 section_size -= actual_size; in tlm_output_file()
1136 get_write_buffer(long size, long *actual_size, in get_write_buffer() argument
1140 char *rec = tlm_get_write_buffer(size, actual_size, in get_write_buffer()
1164 long actual_size; in write_tar_eof() local
1172 &actual_size, TRUE, local_commands); in write_tar_eof()
1174 &actual_size, TRUE, local_commands); in write_tar_eof()
1182 &actual_size, TRUE, local_commands); in write_tar_eof()
1191 &actual_size, TRUE, local_commands); in write_tar_eof()
1365 long actual_size; in ndmp_include_zfs() local
1457 if ((wbuf = get_write_buffer(size, &actual_size, TRUE, in ndmp_include_zfs()
1461 (void) memcpy(wbuf, pp, (actual_size < size) ? in ndmp_include_zfs()
1462 actual_size : size); in ndmp_include_zfs()
1463 pp += (actual_size < size) ? actual_size : size; in ndmp_include_zfs()
1465 sz = actual_size; in ndmp_include_zfs()