Lines Matching defs:count
71 size_t count, loff_t *ppos)
78 printk(KERN_DEBUG "hostaudio: read called, count = %d\n", count);
81 kbuf = kmalloc(count, GFP_KERNEL);
85 err = os_read_file(state->fd, kbuf, count);
98 size_t count, loff_t *ppos)
105 printk(KERN_DEBUG "hostaudio: write called, count = %d\n", count);
108 kbuf = memdup_user(buffer, count);
112 err = os_write_file(state->fd, kbuf, count);