Home
last modified time | relevance | path

Searched refs:fd_fd (Results 1 – 4 of 4) sorted by relevance

/titanic_44/usr/src/cmd/mdb/common/mdb/
H A Dmdb_fdio.c53 int fd_fd; /* File descriptor */ member
62 return (read(fdp->fd_fd, buf, nbytes)); in fdio_read()
73 return (write(fdp->fd_fd, buf, nbytes)); in fdio_write()
84 return (lseek64(fdp->fd_fd, offset, whence)); in fdio_seek()
98 return (fdp->fd_fd); in fdio_ctl()
100 return (ioctl(fdp->fd_fd, req, arg)); in fdio_ctl()
108 (void) close(fdp->fd_fd); in fdio_close()
188 if ((off = lseek64(fdp->fd_fd, 0, SEEK_CUR)) == -1) in fdio_bdev_read()
196 if (pread64(fdp->fd_fd, blk, DEV_BSIZE, devoff) != DEV_BSIZE) in fdio_bdev_read()
208 (void) lseek64(fdp->fd_fd, off, SEEK_SET); in fdio_bdev_read()
[all …]
/titanic_44/usr/src/cmd/prstat/
H A Dprfile.c70 if (fdp->fd_fd >= 0 && fdp->fd_name[0] != '\0') { in fd_close()
71 (void) close(fdp->fd_fd); in fd_close()
76 fdp->fd_fd = -1; in fd_close()
103 if (fdp->fd_fd == -1) in fd_recycle()
107 (void) close(fdp->fd_fd); in fd_recycle()
110 fdp->fd_fd = -1; in fd_recycle()
128 if ((strcmp(fdp->fd_name, name) == 0) && (fdp->fd_fd >= 0)) { in fd_open()
144 fdp_new->fd_fd = fd; in fd_open()
156 return (fdp->fd_fd); in fd_getfd()
H A Dprfile.h42 int fd_fd; member
/titanic_44/usr/src/lib/libproc/common/
H A DPgcore.c93 int fd_fd; member
609 if (write_note(iter->fd_fd, NT_FDINFO, fdinfo, in iter_fd()
1414 iter.fd_fd = fd; in Pfgcore()