Home | History | Annotate | Download | only in wcnss-service

Lines Matching defs:rcount

94 	int rcount = 0;
133 rcount = read(fd_file, (void *)buf, sizeof(buf));
134 if (rcount < 0) {
137 rc = rcount;
141 if (!rcount)
144 wcount = write(fd_dev, buf, rcount);
152 } while (rcount);
172 int rcount = 0;
183 rcount = read(fd_dev, (void *)buf, sizeof(buf));
184 if (rcount < 0) {
187 rc = rcount;
206 if (!rcount)
209 wcount = write(fd_file, buf, rcount);
217 } while (rcount);