Searched defs:maxwrite (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs4_srv_readdir.c429 uint64_t maxwrite; local
450 maxread = maxwrite = rfs4_tsize(req);
1161 IXDR_PUT_HYPER(ptr, maxwrite);
/illumos-gate/usr/src/uts/common/nfs/
H A Dnfs4_attr.h340 fattr4_maxwrite maxwrite; member in union:nfs4_attr_u
/illumos-gate/usr/src/cmd/cpio/
H A Dcpio.c2315 * maxwrite - The amount of data to write to the output.
2320 write_bytes(int ofd, char *buf, size_t maxwrite, data_in_t *data_in_info) argument
2325 if ((cnt = write(ofd, buf, maxwrite)) < (ssize_t)maxwrite) {
2446 size_t maxwrite; local
2450 maxwrite = bytes;
2457 maxwrite = min(bytes, piosize);
2459 return (maxwrite);
2490 size_t maxwrite; local
2497 maxwrite
2514 size_t maxwrite; local
[all...]
/illumos-gate/usr/src/cmd/tar/
H A Dtar.c3877 size_t maxwrite; local
3901 maxwrite = bytes;
3913 maxwrite = min(bytes, piosize);
3921 if ((buf = malloc(TBLOCKS(maxwrite) * TBLOCK)) == NULL) {
3932 for (bytesread = 0; bytesread < maxwrite; bytesread += TBLOCK) {
3936 if (write(ofile, buf, maxwrite) < 0) {
3965 bytes -= maxwrite;
3969 * to be written, maxwrite had to have been determined
3973 * just set maxwrite to the number of bytes left to write.
3975 if ((bytes > 0) && (bytes < maxwrite)) {
[all...]

Completed in 263 milliseconds