HomeSort by: relevance | last modified time | path
    Searched refs:UIO_MX (Results 1 - 10 of 10) sorted by relevancy

  /src/sys/miscfs/procfs/
procfs_vnops.c 1361 if (uiop->uio_resid < UIO_MX)
1374 memset(&d, 0, UIO_MX);
1375 d.d_reclen = UIO_MX;
1378 UIO_MX - offsetof(struct dirent, d_name), "%ld", (long)p->p_pid);
1382 error = uiomove(&d, UIO_MX, uiop);
1438 if (uio->uio_resid < UIO_MX)
1445 memset(&d, 0, UIO_MX);
1446 d.d_reclen = UIO_MX;
1447 ncookies = uio->uio_resid / UIO_MX;
1471 uio->uio_resid >= UIO_MX && i < nproc_targets; pt++, i++)
    [all...]
procfs_vfsops.c 172 if (UIO_MX & (UIO_MX-1)) {
procfs.h 182 #define UIO_MX 32
  /src/sys/miscfs/fdesc/
fdesc_vnops.c 526 #define UIO_MX _DIRENT_RECLEN((struct dirent *)NULL, sizeof("stderr") - 1)
563 if (uio->uio_resid < UIO_MX)
570 (void)memset(&d, 0, UIO_MX);
571 d.d_reclen = UIO_MX;
573 ncookies = uio->uio_resid / UIO_MX;
591 for (ft = &fdesc_targets[i]; uio->uio_resid >= UIO_MX &&
617 if ((error = uiomove(&d, UIO_MX, uio)) != 0)
630 for (; i - 2 < dt->dt_nfiles && uio->uio_resid >= UIO_MX; i++) {
653 if ((error = uiomove(&d, UIO_MX, uio)) != 0)
  /src/sys/fs/ptyfs/
ptyfs.h 141 #define UIO_MX 32
ptyfs_vnops.c 667 if (uio->uio_resid < UIO_MX)
676 dp->d_reclen = UIO_MX;
677 ncookies = uio->uio_resid / UIO_MX;
694 for (; i < 2 && uio->uio_resid >= UIO_MX; i++) {
701 if ((error = uiomove(dp, UIO_MX, uio)) != 0)
707 while (uio->uio_resid >= UIO_MX) {
716 if ((error = uiomove(dp, UIO_MX, uio)) != 0)
ptyfs_vfsops.c 280 if (UIO_MX & (UIO_MX - 1)) {
  /src/sys/miscfs/kernfs/
kernfs_vnops.c 67 #define UIO_MX 32
77 /* NOTE: The name must be less than UIO_MX-16 chars in length */
102 /* NOTE: The name must be less than UIO_MX-16 chars in length */
912 if (uio->uio_resid < UIO_MX)
920 d.d_reclen = UIO_MX;
921 ncookies = uio->uio_resid / UIO_MX;
936 for (; i < nkern_targets && uio->uio_resid >= UIO_MX; i++) {
965 if ((error = uiomove(&d, UIO_MX, uio)) != 0)
986 for (; i < 2 && uio->uio_resid >= UIO_MX; i++) {
992 if ((error = uiomove(&d, UIO_MX, uio)) != 0
    [all...]
kernfs_vfsops.c 124 if (UIO_MX & (UIO_MX - 1)) {
kernfs.h 106 #define UIO_MX 32

Completed in 49 milliseconds