Lines Matching defs:buf
398 char buf[4];
400 count = min(count, sizeof(buf) - 1);
401 if (copy_from_user(buf, s, count))
403 buf[count] = '\0';
404 return kstrtobool(buf, res);
412 char buf[1 + sizeof(type) * 8 + 1 + 1]; \
414 count = min(count, sizeof(buf) - 1); \
415 if (copy_from_user(buf, s, count)) \
417 buf[count] = '\0'; \
418 return g(buf, base, res); \