Lines Matching refs:lbuf
354 char lbuf[11] = { };
358 if (count > sizeof(lbuf))
361 if (copy_from_user(lbuf, buf, count))
364 lbuf[sizeof(lbuf) - 1] = '\0';
366 if (kstrtou32(lbuf, 0, &var))
380 char lbuf[11];
386 ret = snprintf(lbuf, sizeof(lbuf), "%d\n", var);
390 return simple_read_from_buffer(buf, count, pos, lbuf, ret);