HomeSort by relevance Sort by last modified time
    Searched defs:vp (Results 1 - 25 of 356) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/uts/common/syscall/
mkdir.c 55 vnode_t *vp; local
62 error = vn_create(dname, UIO_USERSPACE, &vattr, EXCL, 0, &vp, CRMKDIR,
66 VN_RELE(vp);
mknod.c 60 vnode_t *vp; local
91 if (error = vn_create(fname, UIO_USERSPACE, &vattr, EXCL, 0, &vp,
94 VN_RELE(vp);
mount.c 70 vnode_t *vp = NULL; local
99 if (error = lookupname(uap->dir, UIO_USERSPACE, FOLLOW, NULLVPP, &vp))
107 if ((vp->v_flag & VPXFS) && ((uap->flags & MS_GLOBAL) != MS_GLOBAL)) {
125 error = domount("pxfs", uap, vp, CRED(), &vfsp);
130 error = domount(NULL, uap, vp, CRED(), &vfsp);
134 VN_RELE(vp);
ioctl.c 65 vnode_t *vp; local
72 vp = fp->f_vnode;
74 if (vp->v_type == VREG || vp->v_type == VDIR) {
92 error = VOP_GETATTR(vp, &vattr, 0, fp->f_cred, NULL);
pathconf.c 56 cpathconf(register vnode_t *vp, int cmd, struct cred *cr)
64 if (error = VOP_PATHCONF(vp, _PC_SYMLINK_MAX, &val, cr, NULL))
73 if ((error = VFS_STATVFS(vp->v_vfsp, &sb)) != 0)
110 if (!(error = VOP_FSYNC(vp, FSYNC, cr, NULL)))
115 return ((vp->v_vfsp->vfs_flag & VFS_XATTR) ? 1 : 0);
118 if (error = VOP_PATHCONF(vp, cmd, &val, cr, NULL))
143 vnode_t *vp; local
149 if (error = lookupname(fname, UIO_USERSPACE, FOLLOW, NULLVPP, &vp)) {
155 retval = cpathconf(vp, name, CRED());
156 VN_RELE(vp);
    [all...]
readlink.c 56 vnode_t *vp; local
68 if (error = lookupname(name, UIO_USERSPACE, NO_FOLLOW, NULLVPP, &vp)) {
74 if (vp->v_type != VLNK) {
80 error = VOP_GETATTR(vp, &vattr, 0, CRED(), NULL);
82 VN_RELE(vp);
97 error = VOP_READLINK(vp, &auio, CRED(), NULL);
98 VN_RELE(vp);
  /onnv/onnv-gate/usr/src/uts/common/ktli/
t_kgtstate.c 74 vnode_t *vp; local
81 vp = fp->f_vnode;
92 error = strdoioctl(vp->v_stream, &strioc, FNATIVE, K_TO_K, CRED(),
t_kbind.c 73 vnode_t *vp; local
83 vp = fp->f_vnode;
119 error = strdoioctl(vp->v_stream, &strioc, FNATIVE, K_TO_K, fp->f_cred,
t_kspoll.c 86 vnode_t *vp; local
95 vp = fp->f_vnode;
119 error = kstrgetmsg(vp, NULL, NULL, &pri, &pflag, timout, &rval);
t_kunbind.c 75 vnode_t *vp; local
85 vp = fp->f_vnode;
102 error = strdoioctl(vp->v_stream, &strioc, FNATIVE, K_TO_K, CRED(),
t_kopen.c 76 vnode_t *vp; local
118 vp = makespecvp(rdev, VCHR);
126 if ((error = VOP_OPEN(&vp, flags, cr, NULL))
135 VN_RELE(vp);
146 fp->f_vnode = vp;
151 vp = fp->f_vnode;
154 if (vp->v_stream == NULL) {
168 KTLILOG(2, "t_kopen: vp %x, ", vp);
169 KTLILOG(2, "stp %x\n", vp->v_stream)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fmli/vt/
hide.c 48 register struct vt *vp; local
101 vp = &VT_array[ VT_curid ];
102 vp->flags |= VT_TDIRTY;
107 if ((!(vp->flags & VT_NOBORDER)) &&
109 vp->flags |= VT_BDIRTY;
112 for (n = VT_front; n != VT_UNDEFINED; n = vp->next) {
113 vp = &VT_array[n];
114 if (vp->next == vid)
116 vp->next = VT_array[vid].next;
122 vp = &VT_array[ vid ]
    [all...]
vmark.c 44 register struct vt *vp; local
51 for (n = VT_front; n != VT_UNDEFINED; n = vp->next) {
52 vp = &VT_array[n];
53 getbegyx(vp->win, sr2, sc2);
54 getmaxyx(vp->win, r2, c2);
57 _debug3(stderr, "\t\tmarking %d(#%d) dirty\n", n, vp->number);
59 vp->flags |= VT_BDIRTY;
  /onnv/onnv-gate/usr/src/uts/common/fs/ctfs/
ctfs_sym.c 60 vnode_t *vp; local
63 vp = gfs_file_create(sizeof (ctfs_symnode_t), pvp, ctfs_ops_sym);
64 vp->v_type = VLNK;
65 symnode = vp->v_data;
76 return (vp);
85 vnode_t *vp,
91 ctfs_symnode_t *symnode = vp->v_data;
99 ctfs_common_getattr(vp, vap);
112 ctfs_sym_readlink(vnode_t *vp, uio_t *uiop, cred_t *cr, caller_context_t *ct)
114 ctfs_symnode_t *symnode = vp->v_data
    [all...]
ctfs_all.c 63 vnode_t *vp = gfs_dir_create(sizeof (ctfs_adirnode_t), pvp, local
67 return (vp);
76 vnode_t *vp,
90 vap->va_ctime.tv_sec = vp->v_vfsp->vfs_mtime;
93 ctfs_common_getattr(vp, vap);
100 ctfs_adir_do_lookup(vnode_t *vp, const char *nm, vnode_t **vpp, ino64_t *inop,
110 ct = contract_ptr(i, VTOZONE(vp)->zone_uniqid);
114 *vpp = ctfs_create_symnode(vp, ct);
123 ctfs_adir_do_readdir(vnode_t *vp, void *dp, int *eofp,
132 zuniqid = VTOZONE(vp)->zone_uniqid
    [all...]
ctfs_cdir.c 70 vnode_t *vp; local
73 if ((vp = contract_vnode_get(ct, pvp->v_vfsp)) != NULL)
74 return (vp);
76 vp = gfs_dir_create(sizeof (ctfs_cdirnode_t), pvp, ctfs_ops_cdir,
78 cdir = vp->v_data;
84 gfs_file_set_inode(vp, CTFS_INO_CT_DIR(ct->ct_id));
88 contract_vnode_set(ct, &cdir->ctfs_cn_linkage, vp);
90 return (vp);
99 vnode_t *vp,
105 ctfs_cdirnode_t *cdirnode = vp->v_data
    [all...]
ctfs_tmpl.c 57 vnode_t *vp; local
62 vp = gfs_file_create(sizeof (ctfs_tmplnode_t), pvp, ctfs_ops_tmpl);
63 tmplnode = vp->v_data;
67 return (vp);
91 vnode_t *vp,
101 vap->va_ctime.tv_sec = vp->v_vfsp->vfs_mtime;
104 ctfs_common_getattr(vp, vap);
117 vnode_t *vp,
125 ctfs_tmplnode_t *tmplnode = vp->v_data;
179 ctfs_tmpl_inactive(vnode_t *vp, cred_t *cr, caller_context_t *ct
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/fs/objfs/
objfs_odir.c 44 objfs_odir_do_inode(vnode_t *vp, int index)
46 objfs_odirnode_t *odir = vp->v_data;
54 vnode_t *vp = gfs_dir_create(sizeof (objfs_odirnode_t), pvp, local
57 objfs_odirnode_t *onode = vp->v_data;
61 return (vp);
66 objfs_odir_getattr(vnode_t *vp, vattr_t *vap, int flags, cred_t *cr,
74 vap->va_nodeid = gfs_file_inode(vp);
78 return (objfs_common_getattr(vp, vap));
objfs_root.c 49 vnode_t *vp = gfs_root_create(sizeof (objfs_rootnode_t), vfsp, local
53 return (vp);
58 objfs_root_getattr(vnode_t *vp, vattr_t *vap, int flags, cred_t *cr,
63 vap->va_nodeid = gfs_file_inode(vp);
66 vap->va_atime.tv_sec = vp->v_vfsp->vfs_mtime;
69 return (objfs_common_getattr(vp, vap));
74 objfs_root_do_lookup(vnode_t *vp, const char *nm, vnode_t **vpp, ino64_t *inop,
94 *vpp = objfs_create_odirnode(vp, mp);
108 objfs_root_do_readdir(vnode_t *vp, void *dp, int *eofp,
158 objfs_root_readdir(vnode_t *vp, uio_t *uiop, cred_t *cr, int *eofp
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/rpc/
svc_gen.c 115 void **vp; local
220 vp = (void **)wq->q_ptr;
221 vp[0] = xprt;
  /onnv/onnv-gate/usr/src/cmd/lp/lib/msgs/
mgetputm.c 70 va_list vp; local
75 va_start(vp, type);
77 va_start(vp);
99 ret = _getmessage(MBG, type, vp);
101 va_end(vp);
115 va_list vp; local
119 va_start(vp, type);
121 va_start(vp);
123 needsize = _putmessage(NULL, type, vp);
124 va_end(vp);
    [all...]
  /onnv/onnv-gate/usr/src/lib/libxcurses/src/libc/xcurses/
trace.c 57 va_list vp; local
73 va_start(vp, fmt);
74 (void) vfprintf(fp, fmt, vp);
75 va_end(vp);
  /onnv/onnv-gate/usr/src/uts/common/fs/specfs/
specvfsops.c 117 register struct vnode *vp; local
133 vp = STOV(sp);
135 * Don't bother sync'ing a vp if it's
138 if (IS_SWAPVP(vp))
141 if (vp->v_type == VBLK && vn_has_cached_data(vp)) {
143 * Prevent vp from going away before we
147 VN_HOLD(vp);
159 vp = STOV(sp);
160 (void) VOP_PUTPAGE(vp, (offset_t)0, (uint_t)0, B_ASYNC, cr
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/fs/tmpfs/
tmp_tnode.c 162 struct vnode *vp; local
196 vp = TNTOV(t);
197 vn_setops(vp, tmp_vnodeops);
198 vp->v_vfsp = tm->tm_vfsp;
199 vp->v_type = vap->va_type;
200 vp->v_rdev = vap->va_rdev;
201 vp->v_data = (caddr_t)t;
221 vn_exists(vp);
235 struct vnode *vp = TNTOV(tp); local
319 ASSERT(!vn_has_cached_data(vp));
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/inet/kifconf/
kifconf.c 167 vnode_t *vp = NULL; local
204 vp = tiptr->fp->f_vnode;
205 rc = kstr_ioctl(vp, I_STR, (intptr_t)&iocb);

Completed in 1510 milliseconds

1 2 3 4 5 6 7 8 91011>>