Lines Matching defs:nbytes
126 static int parse_dirfile(char *buf, size_t nbytes, struct file *file,
129 while (nbytes >= FUSE_NAME_OFFSET) {
134 if (reclen > nbytes)
143 nbytes -= reclen;
286 static int parse_dirplusfile(char *buf, size_t nbytes, struct file *file,
295 while (nbytes >= FUSE_NAME_OFFSET_DIRENTPLUS) {
302 if (reclen > nbytes)
320 nbytes -= reclen;
401 unsigned int nbytes = size - offset;
404 if (nbytes < FUSE_NAME_OFFSET || !dirent->namelen)
411 if (WARN_ON(reclen > nbytes))