Lines Matching defs:count
32 int (*write)(struct b43_wldev *dev, const char *buf, size_t count);
52 if (bufsize - count) \
53 count += scnprintf(buf + count, \
54 bufsize - count, \
68 ssize_t count = 0;
81 return count;
85 const char *buf, size_t count)
109 const char *buf, size_t count)
144 ssize_t count = 0;
157 return count;
161 const char *buf, size_t count)
185 const char *buf, size_t count)
223 ssize_t count = 0;
234 return count;
238 const char *buf, size_t count)
257 const char *buf, size_t count)
287 ssize_t count = 0;
298 return count;
302 const char *buf, size_t count)
321 const char *buf, size_t count)
352 ssize_t count = 0;
390 return count;
394 const char *buf, size_t count)
398 if (count > 0 && buf[0] == '1') {
427 ssize_t count = 0;
484 return err ? err : count;
490 size_t count, loff_t *ppos)
501 if (!count)
537 ret = simple_read_from_buffer(userbuf, count, ppos,
553 size_t count, loff_t *ppos)
560 if (!count)
562 if (count > PAGE_SIZE)
585 if (copy_from_user(buf, userbuf, count)) {
589 err = dfops->write(dev, buf, count);
598 return err ? err : count;