Lines Matching defs:count
30 size_t count;
59 ssize_t count = -ENOENT;
68 count = buffer->attr->show(buffer->item, buffer->page);
71 if (count < 0)
72 return count;
73 if (WARN_ON_ONCE(count > (ssize_t)SIMPLE_ATTR_SIZE))
76 buffer->count = count;
92 pr_debug("%s: count = %zd, pos = %lld, buf = %s\n",
94 if (iocb->ki_pos >= buffer->count)
97 buffer->count - iocb->ki_pos, to);
200 flush_write_buffer(struct file *file, struct configfs_buffer *buffer, size_t count)
207 res = buffer->attr->store(buffer->item, buffer->page, count);