Lines Matching refs:count
292 int count;
320 count = util_replace_chars(vbuf, UDEV_ALLOWED_CHARS_INPUT);
321 if (count > 0)
322 log_debug("%i character(s) replaced" , count);
527 ssize_t count;
530 count = read(*fd, buf, sizeof(buf)-1);
531 if (count <= 0)
533 buf[count] = '\0';
537 if (respos + count < ressize) {
538 memcpy(&result[respos], buf, count);
539 respos += count;