Lines Matching defs:count
65 int count;
80 count = snd_ctl_poll_descriptors_count(handle);
81 if (count < 0) {
82 err = count;
85 if (count == 0) {
89 entry->pfd_count = count;
246 int count;
254 count = snd_ctl_poll_descriptors(entry->handle, pfds, entry->pfd_count);
255 if (count < 0) {
256 err = count;
259 if (count != (int)entry->pfd_count) {
319 int count;
322 count = epoll_wait(epfd, epev, max_ev_count, -1);
323 if (count < 0) {
326 err = count;
329 if (count == 0)
332 for (i = 0; i < count; ++i) {