Lines Matching defs:buf
381 char buf[4];
383 count = min(count, sizeof(buf) - 1);
384 if (copy_from_user(buf, s, count))
386 buf[count] = '\0';
387 return kstrtobool(buf, res);
395 char buf[1 + sizeof(type) * 8 + 1 + 1]; \
397 count = min(count, sizeof(buf) - 1); \
398 if (copy_from_user(buf, s, count)) \
400 buf[count] = '\0'; \
401 return g(buf, base, res); \