Home | History | Annotate | Download | only in procfs

Lines Matching defs:xlen

357 	size_t xlen;
363 xlen = *buflenp;
366 if (xlen < uio->uio_resid)
368 xlen = uio->uio_resid;
370 if ((error = uiomove(bf, xlen, uio)) != 0)
377 bf[xlen] = '\0';
378 xlen = strlen(bf);
379 if (xlen > 0 && bf[xlen-1] == '\n')
380 bf[--xlen] = '\0';
381 *buflenp = xlen;