Home
last modified time | relevance | path

Searched refs:writesize (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/backup/dump/
H A Ddumptape.c196 writesize = ntrec * tp_bsize; in alloctape()
199 writesize / TP_BSIZE_MIN); in alloctape()
226 (NBUF * writesize) /* output buffers */ in alloctape()
255 bufp = (struct bdesc *)(obuf + NBUF*writesize); in alloctape()
1953 rbuf = (char *)malloc((uint_t)writesize); in dowrite()
1990 siz = rmtwrite(tp, writesize); in dowrite()
1991 else if ((siz = rmtread(rbuf, writesize)) == in dowrite()
1992 writesize && bcmp(rbuf, tp, writesize)) in dowrite()
1996 siz = write(to, tp, writesize); in dowrite()
1998 writesize && bcmp(rbuf, tp, writesize)) in dowrite()
[all …]
/illumos-gate/usr/src/uts/common/fs/pcfs/
H A Dpc_vfsops.c1329 size_t writesize; in pc_writefat() local
1334 writesize = fsp->pcfs_clsize; in pc_writefat()
1335 for (off = 0; off < fatsize; off += writesize, fatp += writesize) { in pc_writefat()
1336 if (writesize > (fatsize - off)) in pc_writefat()
1337 writesize = fatsize - off; in pc_writefat()
1341 bp = ngeteblk(writesize); in pc_writefat()
1346 bcopy(fatp, bp->b_un.b_addr, writesize); in pc_writefat()