Searched defs:readsize (Results 1 - 8 of 8) sorted by relevance

/illumos-gate/usr/src/lib/libnsl/yp/
H A Ddbm.c321 ssize_t readsize; local
331 readsize = read(pagf, pagbuf, PBLKSIZ);
332 if (readsize != PBLKSIZ) {
333 if (readsize < 0)
334 readsize = 0;
335 (void) memset((&pagbuf+readsize), 0, PBLKSIZ-readsize);
346 ssize_t readsize; local
357 readsize = read(dirf, dirbuf, DBLKSIZ);
358 if (readsize !
[all...]
/illumos-gate/usr/src/ucblib/libdbm/
H A Ddbm.c332 ssize_t readsize; local
342 readsize = read(pagf, pagbuf, PBLKSIZ);
343 if (readsize != PBLKSIZ) {
344 if (readsize < 0) readsize = 0;
345 bzero(pagbuf+readsize, PBLKSIZ-readsize);
356 ssize_t readsize; local
367 readsize = read(dirf, dirbuf, DBLKSIZ);
368 if (readsize !
[all...]
/illumos-gate/usr/src/stand/lib/fs/nfs/
H A Dmount.c183 * Set a reasonable lower limit on readsize
194 uint16_t readsize; local
251 buflen = sizeof (readsize);
253 &readsize, &buflen)) {
254 nfs_readsize = ntohs(readsize);
375 * Set a reasonable lower limit on readsize
457 * Set a reasonable lower limit on readsize
/illumos-gate/usr/src/lib/libdscfg/common/
H A Dcfg.c1513 int readsize = 0; local
1581 readsize = cfp->cf_head->h_csize;
1584 (void) fprintf(stderr, "reading copy1 readsize = %d\n", readsize);
1587 (cfp, (char *)cfp->cf_head->h_ccopy1, readsize);
1605 (void) fprintf(stderr, "reading copy2 readsize = %d\n", readsize);
1609 (cfp, (char *)cfp->cf_head->h_ccopy2, readsize);
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs4_callback.c956 int readsize; local
985 readsize = nfs3tsize() + (RPC_MAXDATASIZE - NFS_MAXDATA);
986 if (readsize < RPC_MAXDATASIZE)
987 readsize = RPC_MAXDATASIZE;
1048 error = svc_tli_kcreate(fp, readsize, buf, &addrmask, &cb_xprt,
H A Dnfs_server.c422 int readsize; local
444 readsize = nfs3tsize() + (RPC_MAXDATASIZE - NFS_MAXDATA);
445 if (readsize < RPC_MAXDATASIZE)
446 readsize = RPC_MAXDATASIZE;
489 error = svc_tli_kcreate(fp, readsize, buf, &addrmask, &xprt,
/illumos-gate/usr/src/uts/common/fs/pcfs/
H A Dpc_vfsops.c1284 size_t readsize; local
1289 readsize = fsp->pcfs_clsize;
1290 for (off = 0; off < fatsize; off += readsize, fatp += readsize) {
1291 if (readsize > (fatsize - off))
1292 readsize = fatsize - off;
1295 bp = bread(fsp->pcfs_xdev, diskblk, readsize);
1301 bcopy(bp->b_un.b_addr, fatp, readsize);
/illumos-gate/usr/src/cmd/truss/
H A Dexpound.c4418 size_t readsize; local
4426 readsize = Pread(Proc, buf, size, offset);
4427 if (readsize != size) {
4634 size_t readsize; local
4638 readsize = Pread(Proc, blk, size, _rctlblk);
4639 if (readsize != size) {

Completed in 105 milliseconds