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

1 2 3 4 5 6 7 8 91011>>

  /loficc/crypto/usr/src/uts/common/syscall/
mkdir.c 54 vnode_t *vp; local
61 error = vn_create(dname, UIO_USERSPACE, &vattr, EXCL, 0, &vp, CRMKDIR,
65 VN_RELE(vp);
mknod.c 61 vnode_t *vp; local
92 if (error = vn_create(fname, UIO_USERSPACE, &vattr, EXCL, 0, &vp,
95 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 66 vnode_t *vp; local
73 vp = fp->f_vnode;
75 if (vp->v_type == VREG || vp->v_type == VDIR) {
93 error = VOP_GETATTR(vp, &vattr, 0, fp->f_cred);
pathconf.c 55 cpathconf(register vnode_t *vp, int cmd, struct cred *cr)
62 if (error = VOP_PATHCONF(vp, _PC_SYMLINK_MAX, &val, cr))
80 if (!(error = VOP_FSYNC(vp, FSYNC, cr)))
85 return ((vp->v_vfsp->vfs_flag & VFS_XATTR) ? 1 : 0);
88 if (error = VOP_PATHCONF(vp, cmd, &val, cr))
113 vnode_t *vp; local
119 if (error = lookupname(fname, UIO_USERSPACE, FOLLOW, NULLVPP, &vp)) {
125 retval = cpathconf(vp, name, CRED());
126 VN_RELE(vp);
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());
82 VN_RELE(vp);
97 error = VOP_READLINK(vp, &auio, CRED());
98 VN_RELE(vp);
  /loficc/crypto/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(),
  /loficc/crypto/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;
  /loficc/crypto/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);
84 ctfs_sym_getattr(vnode_t *vp, vattr_t *vap, int flags, cred_t *cr)
86 ctfs_symnode_t *symnode = vp->v_data;
94 ctfs_common_getattr(vp, vap);
107 ctfs_sym_readlink(vnode_t *vp, uio_t *uiop, cred_t *cr)
109 ctfs_symnode_t *symnode = vp->v_data
    [all...]
ctfs_tmpl.c 58 vnode_t *vp; local
63 vp = gfs_file_create(sizeof (ctfs_tmplnode_t), pvp, ctfs_ops_tmpl);
64 tmplnode = vp->v_data;
68 return (vp);
91 ctfs_tmpl_getattr(vnode_t *vp, vattr_t *vap, int flags, cred_t *cr)
97 vap->va_ctime.tv_sec = vp->v_vfsp->vfs_mtime;
100 ctfs_common_getattr(vp, vap);
112 ctfs_tmpl_ioctl(vnode_t *vp, int cmd, intptr_t arg, int flag, cred_t *cr,
115 ctfs_tmplnode_t *tmplnode = vp->v_data;
156 ctfs_tmpl_inactive(vnode_t *vp, cred_t *cr
    [all...]
ctfs_all.c 62 vnode_t *vp = gfs_dir_create(sizeof (ctfs_adirnode_t), pvp, local
66 return (vp);
74 ctfs_adir_getattr(vnode_t *vp, vattr_t *vap, int flags, cred_t *cr)
84 vap->va_ctime.tv_sec = vp->v_vfsp->vfs_mtime;
87 ctfs_common_getattr(vp, vap);
93 ctfs_adir_do_lookup(vnode_t *vp, const char *nm, vnode_t **vpp, ino64_t *inop)
102 ct = contract_ptr(i, VTOZONE(vp)->zone_uniqid);
106 *vpp = ctfs_create_symnode(vp, ct);
115 ctfs_adir_do_readdir(vnode_t *vp, struct dirent64 *dp, int *eofp,
121 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);
98 ctfs_cdir_getattr(vnode_t *vp, vattr_t *vap, int flags, cred_t *cr)
100 ctfs_cdirnode_t *cdirnode = vp->v_data
    [all...]
  /loficc/crypto/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)
73 vap->va_nodeid = gfs_file_inode(vp);
77 return (objfs_common_getattr(vp, vap));
objfs_root.c 48 vnode_t *vp = gfs_root_create(sizeof (objfs_rootnode_t), vfsp, local
52 return (vp);
57 objfs_root_getattr(vnode_t *vp, vattr_t *vap, int flags, cred_t *cr)
61 vap->va_nodeid = gfs_file_inode(vp);
64 vap->va_atime.tv_sec = vp->v_vfsp->vfs_mtime;
67 return (objfs_common_getattr(vp, vap));
71 objfs_root_do_lookup(vnode_t *vp, const char *nm, vnode_t **vpp, ino64_t *inop)
90 *vpp = objfs_create_odirnode(vp, mp);
104 objfs_root_do_readdir(vnode_t *vp, struct dirent64 *dp, int *eofp,
151 objfs_root_readdir(vnode_t *vp, uio_t *uiop, cred_t *cr, int *eofp
    [all...]
  /loficc/crypto/usr/src/uts/common/rpc/
svc_gen.c 115 void **vp; local
220 vp = (void **)wq->q_ptr;
221 vp[0] = xprt;
  /loficc/crypto/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...]
  /loficc/crypto/usr/src/cmd/rpcgen/
rpc_clntout.c 81 version_list *vp; local
84 for (vp = def->def.pr.versions; vp != NULL; vp = vp->next) {
85 for (proc = vp->procs; proc != NULL; proc = proc->next) {
90 pvname(proc->proc_name, vp->vers_num);
94 pvname(proc->proc_name, vp->vers_num);
rpc_sample.c 71 version_list *vp; local
77 for (vp = def->def.pr.versions; vp != NULL; vp = vp->next) {
78 write_sample_client(def->def_name, vp);
85 write_sample_client(char *program_name, version_list *vp)
92 pvname(program_name, vp->vers_num);
100 for (proc = vp->procs; proc != NULL; proc = proc->next) {
127 pvname(proc->proc_name, vp->vers_num)
216 version_list *vp; local
305 version_list *vp; local
    [all...]
  /loficc/crypto/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);
  /loficc/crypto/usr/src/uts/common/fs/specfs/
specvfsops.c 118 register struct vnode *vp; local
134 vp = STOV(sp);
136 * Don't bother sync'ing a vp if it's
139 if (IS_SWAPVP(vp))
142 if (vp->v_type == VBLK && vn_has_cached_data(vp)) {
144 * Prevent vp from going away before we
148 VN_HOLD(vp);
160 vp = STOV(sp);
161 (void) VOP_PUTPAGE(vp, (offset_t)0, (uint_t)0, B_ASYNC, cr)
    [all...]
  /loficc/crypto/usr/src/uts/common/fs/tmpfs/
tmp_tnode.c 163 struct vnode *vp; local
197 vp = TNTOV(t);
198 vn_setops(vp, tmp_vnodeops);
199 vp->v_vfsp = tm->tm_vfsp;
200 vp->v_type = vap->va_type;
201 vp->v_rdev = vap->va_rdev;
202 vp->v_data = (caddr_t)t;
222 vn_exists(vp);
236 struct vnode *vp = TNTOV(tp); local
320 ASSERT(!vn_has_cached_data(vp));
    [all...]

Completed in 660 milliseconds

1 2 3 4 5 6 7 8 91011>>