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

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/uts/common/sys/
vfstab.h 42 #define vfsnull(vp) ((vp)->vfs_special = (vp)->vfs_fsckdev = \
43 (vp)->vfs_mountp = (vp)->vfs_fstype = \
44 (vp)->vfs_fsckpass = (vp)->vfs_automnt = \
45 (vp)->vfs_mntopts = NULL)
47 #define putvfsent(fd, vp)\
49 (vp)->vfs_special ? (vp)->vfs_special : "-",
    [all...]
  /onnv/onnv-gate/usr/src/lib/libresolv2/common/bsd/
readv.c 19 __readv(fd, vp, vpcount)
21 const struct iovec *vp;
27 int bytes = read(fd, vp->iov_base, vp->iov_len);
32 if (bytes != vp->iov_len)
34 vp++;
  /onnv/onnv-gate/usr/src/lib/libdhcpsvc/modules/templates/
general.c 52 version(int *vp)
54 *vp = DSVC_PUBLIC_VERSION;
  /onnv/onnv-gate/usr/src/uts/common/fs/
nbmlock.c 46 nbl_start_crit(vnode_t *vp, krw_t mode)
48 rw_enter(&vp->v_nbllock, mode);
56 nbl_end_crit(vnode_t *vp)
58 rw_exit(&vp->v_nbllock);
67 nbl_in_crit(vnode_t *vp)
69 return (RW_LOCK_HELD(&vp->v_nbllock));
77 nbl_need_check(vnode_t *vp)
84 return ((vp->v_vfsp) && (vp->v_vfsp->vfs_flag & VFS_NBMAND));
102 nbl_conflict(vnode_t *vp,
    [all...]
vnode.c 70 #define ISROFILE(vp) \
71 ((vp)->v_type != VCHR && (vp)->v_type != VBLK && \
72 (vp)->v_type != VFIFO && vn_is_readonly(vp))
150 * vp - Pointer to the vnode
158 #define VOPSTATS_UPDATE(vp, counter) { \
159 vfs_t *vfsp = (vp)->v_vfsp; \
161 (vfsp->vfs_flag & VFS_STATS) && (vp)->v_type != VBAD) { \
166 __dtrace_probe___fsinfo_##counter(vp, 0, stataddr);
940 struct vnode *vp; local
1281 struct vnode *vp = NULL; local
1748 struct vnode *vp; \/* entry vnode *\/ local
2241 struct vnode *vp; local
2262 struct vnode *vp; local
2364 vnode_t *vp; local
3082 vnode_t *vp = *vpp; local
    [all...]
lookup.c 86 vnode_t *startvp, /* start path search from vp */
135 * Lookup the user file name from a given vp, using a specific credential.
144 vnode_t *startvp, /* start search from this vp */
147 vnode_t *vp; /* current directory vp */ local
161 vp = rootvp;
163 vp = (startvp == NULL) ? PTOU(p)->u_cdir : startvp;
165 VN_HOLD(vp);
179 compvpp, rootvp, vp, cr));
205 * vp is the vnode where the directory search should start
955 vnode_t *vp; local
1505 vnode_t *vp; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/oawk/
tran.c 193 setfval(CELL *vp, awkfloat f)
195 dprintf("setfval: %o %g\n", vp, f, NULL);
197 if (vp->tval & ARR)
198 error(FATAL, "illegal reference to array %s", vp->nval);
199 if ((vp->tval & (NUM | STR)) == 0)
200 error(FATAL, "funny variable %o: %ws %ws %g %o", vp, vp->nval,
201 vp->sval, vp->fval, vp->tval)
    [all...]
  /onnv/onnv-gate/usr/src/lib/libshell/common/sh/
env.c 90 register Evar_t *vp; local
103 for(vp=(Evar_t*)dtfirst(ep->dt);vp; vp=(Evar_t*)dtnext(ep->dt,vp))
105 vp->index = (n<<ENV_BITS) | (vp->index&((1<<ENV_BITS)-1));
106 ep->env[n++] = vp->un.ptr;
122 Evar_t *vp = (Evar_t*)dtmatch(ep->dt,(void*)str); local
123 if(vp && strcmp(str,vp->un.ptr)==0
168 Evar_t *vp = (Evar_t*)dtmatch(ep->dt,(void*)str); local
193 Evar_t *vp; local
232 Evar_t *vp, *vpnext,*top; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libshell/common/edit/
vi.c 48 # define echoctl (vp->ed->e_echoctl)
140 #define editb (*vp->ed)
143 #define putchar(c) ed_putchar(vp->ed,c)
222 register Vi_t *vp = ed->e_vi; local
240 if(!vp)
242 ed->e_vi = vp = newof(0,Vi_t,1,0);
243 vp->lastline = (genchar*)malloc(MAXLINE*CHARSIZE);
244 vp->direction = -1;
245 vp->ed = ed;
251 ed_setup(vp->ed,fd, reedit)
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/fs/lofs/
lofs_vnops.c 53 vnode_t *vp = *vpp; local
59 lo_dprint(4, "lo_open vp %p cnt=%d realvp %p cnt=%d\n",
60 vp, vp->v_count, realvp(vp), realvp(vp)->v_count);
63 oldvp = vp;
64 vp = rvp = realvp(vp);
66 * Need to hold new reference to vp since VOP_OPEN() ma
304 vnode_t *vp = NULL, *tvp = NULL, *nonlovp; local
677 vnode_t *vp = NULL; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/filebench/common/
vars.h 76 #define AVD_IS_RANDOM(vp) ((vp) && ((vp)->avd_type == AVD_IND_RANDVAR))
77 #define AVD_IS_STRING(vp) ((vp) && (((vp)->avd_type == AVD_VAL_STR) || \
78 ((vp)->avd_type == AVD_VARVAL_STR)))
79 #define AVD_IS_VAR(vp) ((vp) && (((vp)->avd_type == AVD_IND_VAR) ||
    [all...]
  /onnv/onnv-gate/usr/src/cmd/csh/
sh.exp.c 100 exp(tchar ***vp)
106 return (exp0(vp, 0));
110 exp0(tchar ***vp, bool ignore)
112 int p1 = exp1(vp, ignore);
118 etraci("exp0 p1", p1, vp);
120 if (**vp && eq(**vp, S_BARBAR /* "||" */)) {
123 (*vp)++;
124 p2 = exp0(vp, (ignore&IGNORE) || p1);
126 etraci("exp0 p2", p2, vp);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/mailx/
vars.c 61 register struct var *vp; local
70 vp = lookup(name);
71 if (vp == NOVAR) {
72 if ((vp = (struct var *)
73 calloc(sizeof (*vp), 1)) == NULL)
75 vp->v_name = vcopy(name);
76 vp->v_link = variables[h];
77 variables[h] = vp;
79 vfree(vp->v_value);
80 vp->v_value = vcopy(value)
95 register struct var *vp, *vp2; local
168 register struct var *vp; local
187 register struct var *vp; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fmli/vt/
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;
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...]
  /onnv/onnv-gate/usr/src/lib/libast/common/stdio/
_stdfun.c 52 _stdfun(Sfio_t* f, Funvec_t* vp)
63 if (!vp->vec[1])
70 if (bp && (vp->vec[1] = (Fun_f)dlsym(bp, vp->name)))
74 if (!(vp->vec[1] = (Fun_f)dlsym(np, vp->name)))
  /onnv/onnv-gate/usr/src/uts/common/sys/fs/
lofs_node.h 69 #define vtol(vp) ((struct lnode *)((vp)->v_data))
70 #define realvp(vp) (vtol(vp)->lo_vp)
pxfs_ki.h 48 extern int clpxfs_aio_write(vnode_t *vp, struct aio_req *aio, cred_t *cred_p);
49 extern int clpxfs_aio_read(vnode_t *vp, struct aio_req *aio, cred_t *cred_p);
  /onnv/onnv-gate/usr/src/uts/common/fs/smbclnt/smbfs/
smbfs_subr2.c 183 vnode_t *vp; local
225 vp = make_smbnode(vfsp, rpath, rplen, rhtp, &newnode);
226 np = VTOSMB(vp);
242 PURGE_ATTRCACHE(vp);
246 return (vp);
250 vp->v_type = (fap->fa_attr & SMB_FA_DIR) ? VDIR : VREG;
261 (void) nfs_cache_fattr(vp, attr, &va, t, cr);
264 vp->v_type = VBAD;
266 vp->v_type = n2v_type(attr);
267 vp->v_rdev = makedevice(attr->rdev.specdata1
298 vnode_t *vp; local
462 vnode_t *vp; local
675 vnode_t *vp; local
735 vnode_t *vp; local
796 vnode_t *vp; local
844 vnode_t *vp; local
958 vnode_t *vp; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/fs/doorfs/
door_vnops.c 43 static int door_close(struct vnode *vp, int flag, int count,
45 static int door_getattr(struct vnode *vp, struct vattr *vap,
47 static void door_inactive(struct vnode *vp, struct cred *cr,
49 static int door_access(struct vnode *vp, int mode, int flags,
51 static int door_realvp(vnode_t *vp, vnode_t **vpp, caller_context_t *ct);
104 struct vnode *vp,
112 door_node_t *dp = VTOD(vp);
131 if (count == 2 && vp->v_count == 1 &&
148 door_getattr(struct vnode *vp, struct vattr *vap, int flags, struct cred *cr,
155 vap->va_type = vp->v_type; /* vnode type (for create) *
214 vnode_t *vp = DTOV(dp); local
225 vnode_t *vp = DTOV(dp); local
    [all...]
  /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/cmd/rpcgen/
rpc_sample.c 68 version_list *vp; local
74 for (vp = def->def.pr.versions; vp != NULL; vp = vp->next) {
75 write_sample_client(def->def_name, vp);
82 write_sample_client(char *program_name, version_list *vp)
89 pvname(program_name, vp->vers_num);
97 for (proc = vp->procs; proc != NULL; proc = proc->next) {
124 pvname(proc->proc_name, vp->vers_num)
213 version_list *vp; local
302 version_list *vp; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libc/port/gen/
nftw.c 173 int depth, struct Save *last, struct Var *vp)
192 if ((vp->curflags & FTW_CHDIR) && last)
195 comp = vp->tmppath;
197 if (vp->savedstatf == NULL)
198 vp->savedstatf = vp->statf;
200 if ((vp->walklevel++ == 0) && (vp->curflags & FTW_HOPTION)) {
201 if (((vp->curflags & FTW_CHDIR) == 0) && (depth >= 2)) {
202 vp->statf = nocdstat
    [all...]
  /onnv/onnv-gate/usr/src/cmd/awk/
tran.c 325 setfval(Cell *vp, Awkfloat f)
329 if ((vp->tval & (NUM | STR)) == 0)
330 funnyvar(vp, "assign to");
331 if (vp->tval & FLD) {
333 i = fldidx(vp);
337 } else if (vp->tval & REC) {
341 vp->tval &= ~STR; /* mark string invalid */
342 vp->tval |= NUM; /* mark number ok */
343 dprintf(("setfval %p: %s = %g, t=%p\n", (void *)vp,
344 vp->nval ? vp->nval : (unsigned char *)"NULL"
    [all...]
  /onnv/onnv-gate/usr/src/lib/libdll/common/
dllnext.c 65 register char* vp; local
79 if (getenv("DLL_DEBUG") && (vp = (char*)_rld_new_interface(_RLD_FIRST_PATHNAME)))
83 if (strcmp(vp, "MAIN") && (lp = dllopen(vp, flags)))
88 } while (vp = (char*)_rld_new_interface(_RLD_NEXT_PATHNAME));
91 if (vp = (char*)_rld_new_interface(_RLD_FIRST_PATHNAME))
95 if (lp = dllopen(strcmp(vp, "MAIN") ? vp : (char*)0, flags))
100 s = vp;
139 (*wr)(2, buf, sfsprintf(buf, sizeof(buf), "dll: next %s\n", vp));
    [all...]

Completed in 480 milliseconds

1 2 3 4 5 6 7 8 91011>>