HomeSort by: relevance | last modified time | path
    Searched defs:fmode (Results 1 - 7 of 7) sorted by relevancy

  /src/sys/fs/unionfs/
unionfs_subr.c 601 int fmode; local in function:unionfs_vn_create_on_upper
610 fmode = FFLAGS(O_WRONLY | O_CREAT | O_TRUNC | O_EXCL);
645 if ((error = VOP_OPEN(vp, fmode, cred)) != 0) {
  /src/sys/fs/union/
union_subr.c 894 int fmode = FFLAGS(O_WRONLY|O_CREAT|O_TRUNC|O_EXCL); local in function:union_vn_create
932 error = VOP_OPEN(vp, fmode, cred);
945 union_vn_close(struct vnode *vp, int fmode, kauth_cred_t cred, struct lwp *l)
948 if (fmode & FWRITE)
950 return (VOP_CLOSE(vp, fmode, cred));
  /src/sys/dev/vme/
xy.c 613 int spt, mb, blk, lcv, fmode, s = 0, newstate; local in function:xyattach
644 fmode = xa->fullmode;
678 error = xyc_cmd(xyc, XYCMD_RST, 0, xy->xy_drive, 0, 0, 0, fmode);
707 dmaddr, fmode);
768 error = xyc_cmd(xyc, XYCMD_SDS, 0, xy->xy_drive, blk, 0, 0, fmode);
786 dmaddr, fmode);
xd.c 714 int rqno, spt = 0, mb, blk, lcv, fmode, s = 0, newstate; local in function:xdattach
739 fmode = xa->fullmode;
774 rqno = xdc_cmd(xdc, XDCMD_RST, 0, xd->xd_drive, 0, 0, 0, fmode);
788 rqno = xdc_cmd(xdc, XDCMD_WRP, XDFUN_FMT, xd->xd_drive, 0, 0, 0, fmode);
797 rqno = xdc_cmd(xdc, XDCMD_RDP, XDFUN_DRV, xd->xd_drive, 0, 0, 0, fmode);
820 rqno = xdc_cmd(xdc, XDCMD_WRP, XDFUN_DRV, xd->xd_drive, 0, 0, 0, fmode);
829 rqno = xdc_cmd(xdc, XDCMD_RD, 0, xd->xd_drive, 0, 1, dmaddr, fmode);
856 rqno = xdc_cmd(xdc, XDCMD_WRP, XDFUN_DRV, xd->xd_drive, 0, 0, 0, fmode);
872 rqno = xdc_cmd(xdc, XDCMD_RD, 0, xd->xd_drive, blk, 1, dmaddr, fmode);
  /src/sys/arch/amiga/amiga/
custom.h 196 unsigned short fmode; member in struct:Custom
  /src/sys/fs/nfs/client/
nfs_clvnops.c 510 int fmode = ap->a_mode; local in function:nfs_open
521 error = nfsrpc_open(vp, fmode, ap->a_cred, ap->a_td);
588 if (newnfs_directio_enable && (fmode & O_DIRECT) &&
605 if (NFSHASPNFS(VFSTONFS(vp->v_mount)) && (fmode & FWRITE) != 0)
615 if ((fmode & FWRITE) != 0) {
672 int fmode = ap->a_fflag; local in function:nfs_close
791 if (newnfs_directio_enable && (fmode & O_DIRECT) && (vp->v_type == VREG)) {
1543 int error = 0, attrflag, dattrflag, fmode = 0; local in function:nfs_create
1555 fmode |= O_EXCL;
1569 vap, cverf, fmode, cnp->cn_cred, cnp->cn_thread, &dnfsva, &nfsva
    [all...]
  /src/lib/libperfuse/
ops.c 1361 mode_t fmode; local in function:perfuse_node_open2
1438 fmode = mode & ~(FREAD|FWRITE);
1439 fmode |= (mode & FWRITE) ? O_RDWR : O_RDONLY;
1443 foi->flags = fmode;

Completed in 19 milliseconds