nbytes             62 lib/replace/repdir_getdents.c 	int nbytes, ofs;
nbytes             94 lib/replace/repdir_getdents.c 	d->nbytes = 0;
nbytes            103 lib/replace/repdir_getdents.c 	if (d->ofs >= d->nbytes) {
nbytes            105 lib/replace/repdir_getdents.c 		d->nbytes = getdents(d->fd, d->buf, DIR_BUF_SIZE);
nbytes            108 lib/replace/repdir_getdents.c 	if (d->ofs >= d->nbytes) {
nbytes            119 lib/replace/repdir_getdents.c 	if (d->ofs >= d->nbytes) {
nbytes            122 lib/replace/repdir_getdents.c 		d->nbytes = 0;
nbytes            136 lib/replace/repdir_getdents.c 	d->nbytes = getdents(d->fd, d->buf, DIR_BUF_SIZE);
nbytes             64 lib/replace/repdir_getdirentries.c 	int nbytes, ofs;
nbytes             96 lib/replace/repdir_getdirentries.c 	d->nbytes = 0;
nbytes            105 lib/replace/repdir_getdirentries.c 	if (d->ofs >= d->nbytes) {
nbytes            107 lib/replace/repdir_getdirentries.c 		d->nbytes = getdirentries(d->fd, d->buf, DIR_BUF_SIZE, &pos);
nbytes            111 lib/replace/repdir_getdirentries.c 	if (d->ofs >= d->nbytes) {
nbytes            126 lib/replace/repdir_getdirentries.c 	if (d->ofs >= d->nbytes) {
nbytes            129 lib/replace/repdir_getdirentries.c 		d->nbytes = 0;
nbytes            148 lib/replace/repdir_getdirentries.c 	d->nbytes = getdirentries(d->fd, d->buf, DIR_BUF_SIZE, &pos);
nbytes             95 lib/zlib/zutil.h        void *_Cdecl farmalloc( unsigned long nbytes );
nbytes            557 source3/client/smbspool.c 	int             nbytes,	/* Number of bytes read */
nbytes            593 source3/client/smbspool.c 	while ((nbytes = fread(buffer, 1, sizeof(buffer), fp)) > 0) {
nbytes            594 source3/client/smbspool.c 		if (cli_write(cli, fnum, 0, buffer, tbytes, nbytes) != nbytes) {
nbytes            603 source3/client/smbspool.c 		tbytes += nbytes;
nbytes            150 source3/lib/eventlog/eventlog.c 	int nbytes, len, Retention, MaxSize;
nbytes            174 source3/lib/eventlog/eventlog.c 	nbytes = 0;
nbytes            196 source3/lib/eventlog/eventlog.c 		nbytes += ret.dsize;	/* note this includes overhead */
nbytes            209 source3/lib/eventlog/eventlog.c 			 (unsigned int)i, reclen, nbytes ) );
nbytes            219 source3/lib/eventlog/eventlog.c 		if ( !whack_by_date && ( nbytes >= needed ) )
nbytes            227 source3/lib/eventlog/eventlog.c 		 nbytes, needed, (unsigned int)start_record, (unsigned int)i ) );
nbytes            156 source3/lib/sysacls.c 		int		nbytes;
nbytes            204 source3/lib/sysacls.c 		nbytes = strlen(tag) + 1 + strlen(id) + 1 + 3 + 1 + 1;
nbytes            212 source3/lib/sysacls.c 		if ((len + nbytes) > maxlen) {
nbytes            213 source3/lib/sysacls.c 			maxlen += nbytes + 20 * (acl_d->count - i);
nbytes            220 source3/lib/sysacls.c 		slprintf(&text[len], nbytes-1, "%s:%s:%s\n", tag, id, perms);
nbytes            221 source3/lib/sysacls.c 		len += nbytes - 1;
nbytes            108 source3/modules/vfs_aio_fork.c static ssize_t read_fd(int fd, void *ptr, size_t nbytes, int *recvfd)
nbytes            139 source3/modules/vfs_aio_fork.c 	iov[0].iov_len = nbytes;
nbytes            176 source3/modules/vfs_aio_fork.c static ssize_t write_fd(int fd, void *ptr, size_t nbytes, int sendfd)
nbytes            210 source3/modules/vfs_aio_fork.c 	iov[0].iov_len = nbytes;
nbytes            212 source3/winbindd/winbindd_cache.c static bool centry_check_bytes(struct cache_entry *centry, size_t nbytes)
nbytes            214 source3/winbindd/winbindd_cache.c 	if (centry->len - centry->ofs < nbytes) {
nbytes            216 source3/winbindd/winbindd_cache.c 			 (unsigned int)nbytes,
nbytes             61 source4/heimdal/lib/krb5/send_to_kdc.c      int nbytes;
nbytes             83 source4/heimdal/lib/krb5/send_to_kdc.c 	     if (ioctl (fd, FIONREAD, &nbytes) < 0) {
nbytes             87 source4/heimdal/lib/krb5/send_to_kdc.c 	     if(nbytes <= 0)
nbytes             91 source4/heimdal/lib/krb5/send_to_kdc.c 		 nbytes = min(nbytes, limit - rep->length);
nbytes             93 source4/heimdal/lib/krb5/send_to_kdc.c 	     tmp = realloc (rep->data, rep->length + nbytes);
nbytes             99 source4/heimdal/lib/krb5/send_to_kdc.c 	     ret = recv (fd, (char*)tmp + rep->length, nbytes, 0);
nbytes             50 source4/heimdal/lib/roken/net_read.c net_read (int fd, void *buf, size_t nbytes)
nbytes             54 source4/heimdal/lib/roken/net_read.c     size_t rem = nbytes;
nbytes             73 source4/heimdal/lib/roken/net_read.c     return nbytes;
nbytes             50 source4/heimdal/lib/roken/net_write.c net_write (int fd, const void *buf, size_t nbytes)
nbytes             54 source4/heimdal/lib/roken/net_write.c     size_t rem = nbytes;
nbytes             71 source4/heimdal/lib/roken/net_write.c     return nbytes;
nbytes            305 source4/heimdal/lib/roken/roken-common.h eread (int fd, void *buf, size_t nbytes);
nbytes            308 source4/heimdal/lib/roken/roken-common.h ewrite (int fd, const void *buf, size_t nbytes);