/src/sbin/fsck_lfs/ |
kernelops.h | 20 extern const struct kernelops kops;
|
kernelops.c | 58 const struct kernelops kops = { variable in typeref:typename:const struct kernelops 71 const struct kernelops kops = { variable in typeref:typename:const struct kernelops
|
vnode.c | 77 return kops.ko_pread(bp->b_vp->v_fd, bp->b_data, bp->b_bcount, 80 return kops.ko_pwrite(bp->b_vp->v_fd, bp->b_data, bp->b_bcount,
|
lfs.c | 116 count = kops.ko_pread(bp->b_vp->v_fd, bp->b_data, bp->b_bcount, 121 count = kops.ko_pwrite(bp->b_vp->v_fd, bp->b_data, bp->b_bcount,
|
/src/sys/compat/netbsd32/ |
netbsd32_event.c | 98 netbsd32_timespecp_t timeout, struct kevent_ops *kops) 103 kops->keo_private = 107 NETBSD32PTR64(eventlist), nevents, NETBSD32PTR64(timeout), kops); 109 kmem_free(kops->keo_private, maxalloc * sizeof(struct netbsd32_kevent)); 125 struct kevent_ops kops = { local in function:netbsd32___kevent100 134 SCARG(uap, timeout), &kops);
|
netbsd32_compat_50.c | 608 struct kevent_ops kops = { local in function:compat_50_netbsd32_kevent 617 (netbsd32_timespecp_t)SCARG(uap, timeout), &kops);
|
/src/libexec/lfs_cleanerd/ |
coalesce.c | 252 if (kops.ko_fcntl(fs->clfs_ifilefd, LFCNBMAPV, &lim) < 0) { 334 if (kops.ko_pread(fs->clfs_devfd, bip[i].bi_bp, bip[i].bi_size, 360 kops.ko_fcntl(fs->clfs_ifilefd, 371 if (kops.ko_fcntl(fs->clfs_ifilefd, LFCNMARKV, &lim) < 0) {
|
fdfs.c | 205 if ((r = kops.ko_pread(fs->fd_fd, fs->fd_bufp[fs->fd_bufi].buf, 253 count = kops.ko_pread(bp->b_vp->v_fd, bp->b_data, bp->b_bcount, 258 count = kops.ko_pwrite(bp->b_vp->v_fd, bp->b_data, bp->b_bcount,
|
lfs_cleanerd.c | 148 kops.ko_close(fs->clfs_ifilefd); 149 kops.ko_close(fs->clfs_devfd); 171 if ((fs->clfs_devfd = kops.ko_open(fs->clfs_dev, O_RDWR)) < 0) { 231 if (kops.ko_statvfs(fsname, &sf, ST_WAIT) < 0) 245 if ((fs->clfs_devfd = kops.ko_open(fs->clfs_dev, O_RDONLY, 0)) < 0) { 252 if ((rootfd = kops.ko_open(fsname, O_RDONLY, 0)) < 0) 254 if (kops.ko_fcntl(rootfd, LFCNIFILEFH, &fs->clfs_ifilefh) < 0) 256 if ((fs->clfs_ifilefd = kops.ko_fhopen(&fs->clfs_ifilefh, 259 kops.ko_close(rootfd); 268 if (kops.ko_pread(fs->clfs_devfd, sbuf, LFS_SBPAD, LFS_LABELPAD) < 0) [all...] |