Lines Matching defs:count
297 int count;
325 count = util_replace_chars(vbuf, UDEV_ALLOWED_CHARS_INPUT);
326 if (count > 0)
327 log_debug("%i character(s) replaced" , count);
531 ssize_t count;
534 count = read(*fd, buf, sizeof(buf)-1);
535 if (count <= 0)
537 buf[count] = '\0';
541 if (respos + count < ressize) {
542 memcpy(&result[respos], buf, count);
543 respos += count;
807 /* function to return the count of rules that assign NAME= to a value matching arg#2 , defined in udev-rules.c */