Searched refs:vp (Results 1 - 25 of 332) sorted by relevance

1234567891011>>

/macosx-10.10/postfix-255/postfix/src/util/
H A Dpercentm.c54 static VSTRING *vp; local
57 if (vp == 0)
58 vp = vstring_alloc(100); /* grows on demand */
59 VSTRING_RESET(vp);
64 VSTRING_ADDCH(vp, *ip++);
69 VSTRING_ADDCH(vp, *ip++);
72 VSTRING_ADDCH(vp, *ip++);
75 vstring_strcat(vp, strerror(err));
81 VSTRING_TERMINATE(vp);
82 return (vstring_str(vp));
[all...]
H A Dvstring.c12 /* vstring_ctl(vp, type, value, ..., VSTRING_CTL_END)
13 /* VSTRING *vp;
16 /* VSTRING *vstring_free(vp)
17 /* VSTRING *vp;
19 /* char *vstring_str(vp)
20 /* VSTRING *vp;
22 /* ssize_t VSTRING_LEN(vp)
23 /* VSTRING *vp;
25 /* char *vstring_end(vp)
26 /* VSTRING *vp;
343 VSTRING *vp; local
363 vstring_free(VSTRING *vp) argument
373 vstring_ctl(VSTRING *vp,...) argument
395 vstring_truncate(VSTRING *vp, ssize_t len) argument
411 vstring_strcpy(VSTRING *vp, const char *src) argument
425 vstring_strncpy(VSTRING *vp, const char *src, ssize_t len) argument
439 vstring_strcat(VSTRING *vp, const char *src) argument
451 vstring_strncat(VSTRING *vp, const char *src, ssize_t len) argument
463 vstring_memcpy(VSTRING *vp, const char *src, ssize_t len) argument
475 vstring_memcat(VSTRING *vp, const char *src, ssize_t len) argument
486 vstring_memchr(VSTRING *vp, int ch) argument
498 vstring_insert(VSTRING *vp, ssize_t start, const char *buf, ssize_t len) argument
525 vstring_prepend(VSTRING *vp, const char *buf, ssize_t len) argument
549 vstring_export(VSTRING *vp) argument
563 VSTRING *vp; local
577 vstring_sprintf(VSTRING *vp, const char *format,...) argument
589 vstring_vsprintf(VSTRING *vp, const char *format, va_list ap) argument
599 vstring_sprintf_append(VSTRING *vp, const char *format,...) argument
611 vstring_vsprintf_append(VSTRING *vp, const char *format, va_list ap) argument
620 vstring_sprintf_prepend(VSTRING *vp, const char *format,...) argument
652 VSTRING *vp = vstring_alloc(1); local
[all...]
H A Dvstring_vstream.c9 /* int vstring_get(vp, fp)
10 /* VSTRING *vp;
13 /* int vstring_get_nonl(vp, fp)
14 /* VSTRING *vp;
17 /* int vstring_get_null(vp, fp)
18 /* VSTRING *vp;
21 /* int vstring_get_bound(vp, fp, bound)
22 /* VSTRING *vp;
26 /* int vstring_get_nonl_bound(vp, fp, bound)
27 /* VSTRING *vp;
87 vstring_get(VSTRING *vp, VSTREAM *fp) argument
103 vstring_get_nonl(VSTRING *vp, VSTREAM *fp) argument
116 vstring_get_null(VSTRING *vp, VSTREAM *fp) argument
129 vstring_get_bound(VSTRING *vp, VSTREAM *fp, ssize_t bound) argument
148 vstring_get_nonl_bound(VSTRING *vp, VSTREAM *fp, ssize_t bound) argument
164 vstring_get_null_bound(VSTRING *vp, VSTREAM *fp, ssize_t bound) argument
189 VSTRING *vp = vstring_alloc(1); local
[all...]
H A Dvstring.h58 #define VSTRING_SPACE(vp, len) ((vp)->vbuf.space(&(vp)->vbuf, len))
59 #define vstring_str(vp) ((char *) (vp)->vbuf.data)
60 #define VSTRING_LEN(vp) ((ssize_t) ((vp)->vbuf.ptr - (vp)->vbuf.data))
61 #define vstring_end(vp) ((char *) (vp)
[all...]
H A Dmac_parse.c89 const char *vp; /* value pointer */ local
105 for (vp = value; *vp;) {
106 if (*vp != '$') { /* ordinary character */
107 VSTRING_ADDCH(buf, *vp);
108 vp += 1;
109 } else if (vp[1] == '$') { /* $$ becomes $ */
110 VSTRING_ADDCH(buf, *vp);
111 vp += 2;
115 vp
[all...]
H A Dvstream.h106 #define VSTREAM_PUTC(ch, vp) VBUF_PUT(&(vp)->buf, (ch))
107 #define VSTREAM_GETC(vp) VBUF_GET(&(vp)->buf)
108 #define vstream_ungetc(vp, ch) vbuf_unget(&(vp)->buf, (ch))
114 #define vstream_fileno(vp) ((vp)->fd)
115 #define vstream_req_bufsize(vp) ((const ssize_t) ((vp)
[all...]
H A Dmystrtok.c79 VSTRING *vp = vstring_alloc(100); local
83 while (vstring_fgets(vp, VSTREAM_IN)) {
84 start = vstring_str(vp);
89 vstring_free(vp);
/macosx-10.10/ksh-23/ksh/src/lib/libast/astsa/
H A Dvmalloc.c36 Vmalloc_t* vp; local
38 if (vp = newof(0, Vmalloc_t, 1, 0))
40 vp->current = &vp->base;
41 vp->data = vp->current->data;
42 vp->size = sizeof(vp->current->data);
44 return vp;
48 _vm_close(register Vmalloc_t* vp) argument
66 _vm_resize(register Vmalloc_t* vp, void* o, unsigned long size) argument
[all...]
/macosx-10.10/xnu-2782.1.97/security/
H A Dmac_vfs_subr.c45 vnode_label(struct mount *mp, struct vnode *dvp, struct vnode *vp, argument
57 mp, dvp, vp, cnp);
62 if (vp->v_lflag & VL_LABELED)
65 vnode_lock_spin(vp);
72 if (vp->v_lflag & VL_LABELED) {
73 vnode_unlock(vp);
77 if ((vp->v_lflag & VL_LABEL) == 0) {
78 vp->v_lflag |= VL_LABEL;
81 vnode_unlock(vp);
83 if (vp
137 vnode_relabel(struct vnode *vp) argument
157 mac_vnop_setxattr(struct vnode *vp, const char *name, char *buf, size_t len) argument
186 mac_vnop_getxattr(struct vnode *vp, const char *name, char *buf, size_t len, size_t *attrlen) argument
206 mac_vnop_removexattr(struct vnode *vp, const char *name) argument
[all...]
H A Dmac_vfs.c140 mac_vnode_label_init(vnode_t vp) argument
142 vp->v_label = mac_vnode_label_alloc();
146 mac_vnode_label_init_needed(vnode_t vp) argument
148 return (mac_label_vnodes != 0 && vp->v_label == NULL);
157 mac_vnode_label_recycle(vnode_t vp) argument
160 MAC_PERFORM(vnode_label_recycle, vp->v_label);
205 mac_vnode_label_destroy(struct vnode *vp) argument
207 if (vp->v_label != NULL) {
208 mac_vnode_label_free(vp->v_label);
209 vp
225 mac_vnode_label_externalize_audit(struct vnode *vp, struct mac *mac) argument
288 mac_devfs_label_update(struct mount *mp, struct devnode *de, struct vnode *vp) argument
300 mac_vnode_label_associate(struct mount *mp, struct vnode *vp, vfs_context_t ctx) argument
328 mac_vnode_label_associate_devfs(struct mount *mp, struct devnode *de, struct vnode *vp) argument
341 mac_vnode_label_associate_extattr(struct mount *mp, struct vnode *vp) argument
352 mac_vnode_label_associate_singlelabel(struct mount *mp, struct vnode *vp) argument
363 mac_vnode_notify_create(vfs_context_t ctx, struct mount *mp, struct vnode *dvp, struct vnode *vp, struct componentname *cnp) argument
381 mac_vnode_notify_rename(vfs_context_t ctx, struct vnode *vp, struct vnode *dvp, struct componentname *cnp) argument
396 mac_vnode_notify_open(vfs_context_t ctx, struct vnode *vp, int acc_flags) argument
409 mac_vnode_notify_link(vfs_context_t ctx, struct vnode *vp, struct vnode *dvp, struct componentname *cnp) argument
428 mac_vnode_label_update_extattr(struct mount *mp, struct vnode *vp, const char *name) argument
448 mac_vnode_label_store(vfs_context_t ctx, struct vnode *vp, struct label *intlabel) argument
465 mac_cred_label_update_execve(vfs_context_t ctx, kauth_cred_t new, struct vnode *vp, off_t offset, struct vnode *scriptvp, struct label *scriptvnodelabel, struct label *execl, u_int *csflags, void *macextensions, int *disjoint, int *labelupdateerror) argument
532 mac_cred_check_label_update_execve(vfs_context_t ctx, struct vnode *vp, off_t offset, struct vnode *scriptvp, struct label *scriptvnodelabel, struct label *execlabel, struct proc *p, void *macextensions) argument
590 mac_vnode_check_access(vfs_context_t ctx, struct vnode *vp, int acc_mode) argument
656 mac_vnode_check_unlink(vfs_context_t ctx, struct vnode *dvp, struct vnode *vp, struct componentname *cnp) argument
690 mac_vnode_check_deleteextattr(vfs_context_t ctx, struct vnode *vp, const char *name) argument
740 mac_vnode_check_getattrlist(vfs_context_t ctx, struct vnode *vp, struct attrlist *alist) argument
758 mac_vnode_check_exec(vfs_context_t ctx, struct vnode *vp, struct image_params *imgp) argument
823 mac_vnode_check_fsgetpath(vfs_context_t ctx, struct vnode *vp) argument
838 mac_vnode_check_signature(struct vnode *vp, off_t macho_offset, unsigned char *sha1, const void *signature, size_t size, int *is_platform_binary) argument
871 mac_vnode_check_getextattr(vfs_context_t ctx, struct vnode *vp, const char *name, struct uio *uio) argument
888 mac_vnode_check_ioctl(vfs_context_t ctx, struct vnode *vp, u_int cmd) argument
903 mac_vnode_check_kqfilter(vfs_context_t ctx, kauth_cred_t file_cred, struct knote *kn, struct vnode *vp) argument
921 mac_vnode_check_link(vfs_context_t ctx, struct vnode *dvp, struct vnode *vp, struct componentname *cnp) argument
938 mac_vnode_check_listextattr(vfs_context_t ctx, struct vnode *vp) argument
969 mac_vnode_check_open(vfs_context_t ctx, struct vnode *vp, int acc_mode) argument
984 mac_vnode_check_read(vfs_context_t ctx, struct ucred *file_cred, struct vnode *vp) argument
1017 mac_vnode_check_readlink(vfs_context_t ctx, struct vnode *vp) argument
1032 mac_vnode_check_label_update(vfs_context_t ctx, struct vnode *vp, struct label *newlabel) argument
1049 mac_vnode_check_rename(vfs_context_t ctx, struct vnode *dvp, struct vnode *vp, struct componentname *cnp, struct vnode *tdvp, struct vnode *tvp, struct componentname *tcnp) argument
1079 mac_vnode_check_revoke(vfs_context_t ctx, struct vnode *vp) argument
1094 mac_vnode_check_searchfs(vfs_context_t ctx, struct vnode *vp, struct attrlist *alist) argument
1109 mac_vnode_check_select(vfs_context_t ctx, struct vnode *vp, int which) argument
1142 mac_vnode_check_setattrlist(vfs_context_t ctx, struct vnode *vp, struct attrlist *alist) argument
1158 mac_vnode_check_setextattr(vfs_context_t ctx, struct vnode *vp, const char *name, struct uio *uio) argument
1175 mac_vnode_check_setflags(vfs_context_t ctx, struct vnode *vp, u_long flags) argument
1190 mac_vnode_check_setmode(vfs_context_t ctx, struct vnode *vp, mode_t mode) argument
1205 mac_vnode_check_setowner(vfs_context_t ctx, struct vnode *vp, uid_t uid, gid_t gid) argument
1221 mac_vnode_check_setutimes(vfs_context_t ctx, struct vnode *vp, struct timespec atime, struct timespec mtime) argument
1238 mac_vnode_check_stat(vfs_context_t ctx, struct ucred *file_cred, struct vnode *vp) argument
1255 mac_vnode_check_truncate(vfs_context_t ctx, struct ucred *file_cred, struct vnode *vp) argument
1273 mac_vnode_check_write(vfs_context_t ctx, struct ucred *file_cred, struct vnode *vp) argument
1306 mac_vnode_check_uipc_connect(vfs_context_t ctx, struct vnode *vp) argument
1321 mac_vnode_label_update(vfs_context_t ctx, struct vnode *vp, struct label *newlabel) argument
1345 mac_vnode_find_sigs(struct proc *p, struct vnode *vp, off_t offset) argument
1407 mac_mount_check_mount(vfs_context_t ctx, struct vnode *vp, struct componentname *cnp, const char *vfc_name) argument
1558 vn_setlabel(struct vnode *vp, struct label *intlabel, vfs_context_t context) argument
1605 mac_vnode_label_associate_fdesc(struct mount *mp, struct fdescnode *fnp, struct vnode *vp, vfs_context_t ctx) argument
[all...]
/macosx-10.10/ksh-23/ksh/src/cmd/ksh93/edit/
H A Dvi.c135 #define editb (*vp->ed)
138 #define putchar(c) ed_putchar(vp->ed,c)
217 register Vi_t *vp = ed->e_vi; local
235 if(!vp)
237 ed->e_vi = vp = newof(0,Vi_t,1,0);
238 vp->lastline = (genchar*)malloc(MAXLINE*CHARSIZE);
239 vp->direction = -1;
240 vp->ed = ed;
246 ed_setup(vp->ed,fd, reedit);
258 ioctl(fd,FIORDCHK,&vp
638 append(Vi_t *vp,int c, int mode) argument
663 backword(Vi_t *vp,int nwords, register int cmd) argument
707 cntlmode(Vi_t *vp) argument
1082 cursor(Vi_t *vp,register int x) argument
1102 cdelete(Vi_t *vp,register int nchars, int mode) argument
1149 del_line(register Vi_t *vp, int mode) argument
1189 delmotion(Vi_t *vp,int motion, int mode) argument
1244 endword(Vi_t *vp, int nwords, register int cmd) argument
1281 forward(Vi_t *vp,register int nwords, int cmd) argument
1321 getcount(register Vi_t *vp,register int c) argument
1362 getline(register Vi_t* vp,register int mode) argument
1596 mvcursor(register Vi_t* vp,register int motion) argument
1818 pr_string(register Vi_t *vp, register const char *sp) argument
1835 putstring(register Vi_t *vp,register int col, register int nchars) argument
1871 refresh(register Vi_t* vp, int mode) argument
2069 replace(register Vi_t *vp, register int c, register int increment) argument
2125 restore_v(register Vi_t *vp) argument
2152 save_last(register Vi_t* vp) argument
2173 save_v(register Vi_t *vp) argument
2198 curline_search(Vi_t *vp, const char *string) argument
2216 search(register Vi_t* vp,register int mode) argument
2301 sync_cursor(register Vi_t *vp) argument
2388 textmod(register Vi_t *vp,register int c, int mode) argument
2747 getrchar(register Vi_t *vp) argument
[all...]
/macosx-10.10/ksh-23/ksh/src/cmd/ksh93/sh/
H A Denv.c90 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
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...]
/macosx-10.10/Security-57031.1.35/Security/include/security_utilities/
H A Dvproc++.h40 Transaction(vproc_t vp = 0) : mVP(vp) { mTransaction = ::vproc_transaction_begin(vp); }
41 Transaction(bool activate, vproc_t vp = 0) : mVP(vp)
42 { if (activate) mTransaction = ::vproc_transaction_begin(vp); else mTransaction = 0; }
/macosx-10.10/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dvproc++.h40 Transaction(vproc_t vp = 0) : mVP(vp) { mTransaction = ::vproc_transaction_begin(vp); }
41 Transaction(bool activate, vproc_t vp = 0) : mVP(vp)
42 { if (activate) mTransaction = ::vproc_transaction_begin(vp); else mTransaction = 0; }
/macosx-10.10/mail_cmds-30/mail/
H A Dvars.c61 struct var *vp; local
65 vp = lookup(name);
66 if (vp == NULL) {
67 vp = calloc(sizeof(*vp), 1);
68 vp->v_name = vcopy(name);
69 vp->v_link = variables[h];
70 variables[h] = vp;
73 v_free(vp->v_value);
74 vp
120 struct var *vp; local
136 struct var *vp; local
[all...]
/macosx-10.10/postfix-255/postfix/src/global/
H A Dmail_date.c56 static VSTRING *vp; local
65 if (vp == 0)
66 vp = vstring_alloc(100);
68 VSTRING_RESET(vp);
108 while (strftime(vstring_end(vp), vstring_avail(vp), STRFTIME_FMT, lt) == 0)
109 VSTRING_SPACE(vp, 100);
110 VSTRING_SKIP(vp);
117 vstring_sprintf_append(vp, "%+03d%02d", (int) (gmtoff / HOUR_MIN),
123 while (strftime(vstring_end(vp), vstring_avai
[all...]
/macosx-10.10/screen-22/screen/
H A Dlayer.c91 struct viewport *vp; local
116 for (vp = cv->c_vplist; vp; vp = vp->v_next)
118 if (x2 < vp->v_xs || x2 > vp->v_xe)
120 if (y2 < vp->v_ys || y2 > vp->v_ye)
136 struct viewport *vp; local
188 struct viewport *vp; local
250 struct viewport *vp; local
303 struct viewport *vp; local
340 struct viewport *vp; local
400 struct viewport *vp; local
470 struct viewport *vp; local
507 struct viewport *vp; local
578 struct viewport *vp; local
659 struct viewport *vp, *evp, **vpp; local
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/vm/
H A Dvm_compressor_backing_file.c43 void vm_swapfile_open(const char *path, vnode_t *vp);
44 void vm_swapfile_close(uint64_t path, vnode_t vp);
45 int vm_swapfile_preallocate(vnode_t vp, uint64_t *size);
46 uint64_t vm_swapfile_get_blksize(vnode_t vp);
47 uint64_t vm_swapfile_get_transfer_size(vnode_t vp);
48 int vm_swapfile_io(vnode_t vp, uint64_t offset, uint64_t start, int npages, int flags);
51 vm_swapfile_open(const char *path, vnode_t *vp) argument
56 if ((error = vnode_open(path, (O_CREAT | O_TRUNC | FREAD | FWRITE), S_IRUSR | S_IWUSR, 0, vp, ctx))) {
58 *vp = NULL;
62 vnode_put(*vp);
66 vm_swapfile_get_blksize(vnode_t vp) argument
72 vm_swapfile_get_transfer_size(vnode_t vp) argument
80 vm_swapfile_close(uint64_t path_addr, vnode_t vp) argument
96 vm_swapfile_preallocate(vnode_t vp, uint64_t *size) argument
150 vm_swapfile_io(vnode_t vp, uint64_t offset, uint64_t start, int npages, int flags) argument
241 vnode_trim_list(vnode_t vp, struct trim_list *tl, boolean_t route_only) argument
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/vfs/
H A Dvfs_subr.c202 static void vclean(vnode_t vp, int flag);
207 static vnode_t checkalias(vnode_t vp, dev_t nvp_rdev);
213 static void insmntque(vnode_t vp, mount_t mp);
229 static void record_vp(vnode_t vp, int count);
254 #define VLISTCHECK(fun, vp, list) \
255 if ((vp)->v_freelist.tqe_prev == (struct vnode **)0xdeadb) \
258 #define VLISTCHECK(fun, vp, list)
261 #define VLISTNONE(vp) \
263 (vp)->v_freelist.tqe_next = (struct vnode *)0; \
264 (vp)
393 vnode_waitforwrites(vnode_t vp, int output_target, int slpflag, int slptimeout, const char *msg) argument
426 vnode_startwrite(vnode_t vp) argument
433 vnode_writedone(vnode_t vp) argument
463 vnode_hasdirtyblks(vnode_t vp) argument
489 vnode_hascleanblks(vnode_t vp) argument
518 vnode_t vp; local
555 vnode_t vp; local
633 struct vnode *vp; member in struct:vnode_iterate_panic_hook
665 struct vnode *vp; local
1062 struct vnode *vp; local
1297 insmntque(vnode_t vp, mount_t mp) argument
1434 struct vnode *vp; local
1541 vget_internal(vnode_t vp, int vid, int vflags) argument
1565 vnode_ref(vnode_t vp) argument
1576 vnode_ref_ext(vnode_t vp, int fmode, int flags) argument
1646 vnode_on_reliable_media(vnode_t vp) argument
1654 vnode_async_list_add(vnode_t vp) argument
1678 vnode_list_add(vnode_t vp) argument
1751 vnode_list_remove_locked(vnode_t vp) argument
1775 vnode_list_remove(vnode_t vp) argument
1815 vnode_rele(vnode_t vp) argument
1822 vnode_rele_ext(vnode_t vp, int fmode, int dont_reenter) argument
1829 vnode_rele_internal(vnode_t vp, int fmode, int dont_reenter, int locked) argument
1957 struct vnode *vp; local
2132 vclean(vnode_t vp, int flags) argument
2288 vn_revoke(vnode_t vp, int flags, __unused vfs_context_t a_context) argument
2353 vnode_recycle(struct vnode *vp) argument
2371 vnode_reload(vnode_t vp) argument
2391 vgone(vnode_t vp, int flags) argument
2452 vnode_t vp; local
2483 vcount(vnode_t vp) argument
2554 vprint(const char *label, struct vnode *vp) argument
2581 vn_getpath(struct vnode *vp, char *pathbuf, int *len) argument
2587 vn_getpath_fsenter(struct vnode *vp, char *pathbuf, int *len) argument
2593 vn_getcdhash(struct vnode *vp, off_t offset, unsigned char *cdhash) argument
2713 vn_path_package_check(__unused vnode_t vp, char *path, int pathlen, int *component) argument
2918 vfs_mountedon(struct vnode *vp) argument
3012 vnode_pager_vrele(vnode_t vp) argument
3757 process_vp(vnode_t vp, int want_vp, int *deferred) argument
3855 vnode_t vp; local
3887 vnode_t vp; local
4172 vnode_lock(vnode_t vp) argument
4178 vnode_lock_spin(vnode_t vp) argument
4184 vnode_unlock(vnode_t vp) argument
4192 vnode_get(struct vnode *vp) argument
4204 vnode_get_locked(struct vnode *vp) argument
4226 vnode_getwithvid(vnode_t vp, uint32_t vid) argument
4237 vnode_getwithvid_drainok(vnode_t vp, uint32_t vid) argument
4243 vnode_getwithref(vnode_t vp) argument
4250 vnode_getalways(vnode_t vp) argument
4256 vnode_put(vnode_t vp) argument
4268 vnode_put_locked(vnode_t vp) argument
4316 vnode_isinuse(vnode_t vp, int refcnt) argument
4323 vnode_isinuse_locked(vnode_t vp, int refcnt, int locked) argument
4346 vnode_resume(vnode_t vp) argument
4367 vnode_suspend(vnode_t vp) argument
4396 vnode_abort_advlocks(vnode_t vp) argument
4404 vnode_drain(vnode_t vp) argument
4437 vnode_getiocount(vnode_t vp, unsigned int vid, int vflags) argument
4528 vnode_dropiocount(vnode_t vp) argument
4543 vnode_reclaim(struct vnode * vp) argument
4550 vnode_reclaim_internal(struct vnode * vp, int locked, int reuse, int flags) argument
4649 vnode_t vp; local
4867 vnode_addfsref(vnode_t vp) argument
4880 vnode_removefsref(vnode_t vp) argument
5217 vnode_close(vnode_t vp, int flags, vfs_context_t ctx) argument
5231 vnode_mtime(vnode_t vp, struct timespec *mtime, vfs_context_t ctx) argument
5245 vnode_flags(vnode_t vp, uint32_t *flags, vfs_context_t ctx) argument
5263 vnode_size(vnode_t vp, off_t *sizep, vfs_context_t ctx) argument
5277 vnode_setsize(vnode_t vp, off_t size, int ioflag, vfs_context_t ctx) argument
5288 vnode_setdirty(vnode_t vp) argument
5297 vnode_cleardirty(vnode_t vp) argument
5306 vnode_isdirty(vnode_t vp) argument
5374 vnode_t vp = (vnode_t)0; local
5487 vnode_t vp; member in struct:_vnode_authorize_context
5595 vn_authorize_unlink(vnode_t dvp, vnode_t vp, struct componentname *cnp, vfs_context_t ctx, __unused void *reserved) argument
5623 vn_authorize_open_existing(vnode_t vp, struct componentname *cnp, int fmode, vfs_context_t ctx, void *reserved) argument
5917 vn_authorize_rmdir(vnode_t dvp, vnode_t vp, struct componentname *cnp, vfs_context_t ctx, void *reserved) argument
5971 vnode_authorize(vnode_t vp, vnode_t dvp, kauth_action_t action, vfs_context_t ctx) argument
6743 vnode_authorize_checkimmutable(vnode_t vp, struct vnode_attr *vap, int rights, int ignore) argument
6822 vnode_authorize_opaque(vnode_t vp, int *resultp, kauth_action_t action, vfs_context_t ctx) argument
6906 vnode_t vp, dvp; local
7001 vnode_t vp, dvp; local
7506 vnode_authattr(vnode_t vp, struct vnode_attr *vap, kauth_action_t *actionp, vfs_context_t ctx) argument
8026 setlocklocal_callback(struct vnode *vp, __unused void *cargs) argument
8059 vnode_setswapmount(vnode_t vp) argument
8068 vn_setunionwait(vnode_t vp) argument
8077 vn_checkunionwait(vnode_t vp) argument
8086 vn_clearunionwait(vnode_t vp, int locked) argument
8314 lock_vnode_and_post(vnode_t vp, int kevent_num) argument
8361 __vpath(vnode_t vp, char *str, int len, int depth) argument
8418 vnode_t vp; local
8454 record_vp(vnode_t vp, int count) argument
8531 vnode_trigger_update(vnode_t vp, resolver_result_t result) argument
8566 vnode_resolver_attach(vnode_t vp, vnode_resolve_t rp, boolean_t ref) argument
8596 vnode_resolver_create(mount_t mp, vnode_t vp, struct vnode_trigger_param *tinfo, boolean_t external) argument
8657 vnode_resolver_detach(vnode_t vp) argument
8681 vnode_trigger_rearm(vnode_t vp, vfs_context_t ctx) argument
8728 vnode_trigger_resolve(vnode_t vp, struct nameidata *ndp, vfs_context_t ctx) argument
8784 vnode_trigger_unresolve(vnode_t vp, int flags, vfs_context_t ctx) argument
8845 vnode_t vp; local
8911 vnode_t vp = infop->trigger_vp; local
9004 vnode_t vp = info.trigger_vp; local
9018 vnode_t rvp, vp; local
[all...]
H A Dvfs_cache.c96 * obtained from (vp, name) where vp refers to the directory
165 static void cache_enter_locked(vnode_t dvp, vnode_t vp, struct componentname *cnp, const char *strname);
205 * passed in vp must have a valid io_count reference
210 vnode_t vp, tvp; local
235 vp = first_vp;
242 * sufficient to stabilize both the vp->v_parent chain
243 * and the 'vp->v_mount->mnt_vnodecovered' chain
247 * vnode doesn't already have an io_count reference (the vp
260 while (vp
544 vnode_getparent(vnode_t vp) argument
570 vnode_getname(vnode_t vp) argument
592 vnode_getname_printable(vnode_t vp) argument
649 vnode_update_identity(vnode_t vp, vnode_t dvp, const char *name, int name_len, uint32_t name_hashval, int flags) argument
845 vnode_setmultipath(vnode_t vp) argument
870 vnode_uncache_credentials(vnode_t vp) argument
887 vnode_uncache_authorized_action(vnode_t vp, kauth_action_t action) argument
913 vnode_cache_is_authorized(vnode_t vp, vfs_context_t ctx, kauth_action_t action) argument
958 vnode_cache_authorized_action(vnode_t vp, vfs_context_t ctx, kauth_action_t action) argument
1022 vnode_cache_is_stale(vnode_t vp) argument
1051 vnode_t vp = NULLVP; local
1489 vnode_t vp; local
1574 cache_enter_create(vnode_t dvp, vnode_t vp, struct componentname *cnp) argument
1607 cache_enter_with_gen(struct vnode *dvp, struct vnode *vp, struct componentname *cnp, int gen) argument
1626 cache_enter(struct vnode *dvp, struct vnode *vp, struct componentname *cnp) argument
1648 cache_enter_locked(struct vnode *dvp, struct vnode *vp, struct componentname *cnp, const char *strname) argument
1961 cache_purge(vnode_t vp) argument
2004 cache_purge_negatives(vnode_t vp) argument
[all...]
H A Dvfs_vnops.c133 static int vn_open_auth_finish(vnode_t vp, int fmode, vfs_context_t ctx);
135 static int vn_kqfilt_remove(struct vnode *vp, uintptr_t ident,
181 vn_open_auth_finish(vnode_t vp, int fmode, vfs_context_t ctx) argument
185 if ((error = vnode_ref_ext(vp, fmode, 0)) != 0) {
193 mac_vnode_notify_open(ctx, vp, fmode);
196 (uintptr_t)vp, 0);
198 sigpup_attach_vnode(vp);
218 vnode_t vp; local
277 vp = ndp->ni_vp;
283 if (vp
359 struct vnode *vp; local
671 vn_access(vnode_t vp, int mode, vfs_context_t context) argument
691 vn_close(struct vnode *vp, int flags, vfs_context_t ctx) argument
745 vn_read_swapfile( struct vnode *vp, uio_t uio) argument
806 vn_rdwr( enum uio_rw rw, struct vnode *vp, caddr_t base, int len, off_t offset, enum uio_seg segflg, int ioflg, kauth_cred_t cred, int *aresid, proc_t p) argument
842 vn_rdwr_64( enum uio_rw rw, struct vnode *vp, uint64_t base, int64_t len, off_t offset, enum uio_seg segflg, int ioflg, kauth_cred_t cred, int64_t *aresid, proc_t p) argument
942 struct vnode *vp; local
1008 struct vnode *vp; local
1168 vn_stat_noauth(struct vnode *vp, void *sbptr, kauth_filesec_t *xsec, int isstat64, vfs_context_t ctx) argument
1335 vn_stat(struct vnode *vp, void *sb, kauth_filesec_t *xsec, int isstat64, vfs_context_t ctx) argument
1360 struct vnode *vp = ((struct vnode *)fp->f_fglob->fg_data); local
1449 struct vnode * vp = (struct vnode *)fp->f_fglob->fg_data; local
1479 struct vnode *vp = (struct vnode *)fg->fg_data; local
1506 vn_pathconf(vnode_t vp, int name, int32_t *retval, vfs_context_t ctx) argument
1587 struct vnode *vp; local
1655 struct vnode *vp; local
1682 vnode_readable_data_count(vnode_t vp, off_t current_offset, int ispoll) argument
1722 vnode_writable_space_count(vnode_t vp) argument
1755 vnode_t vp = (struct vnode *)kn->kn_hook; local
[all...]
/macosx-10.10/ksh-23/ksh/src/lib/libast/stdio/
H A D_stdfun.c52 _stdfun(Sfio_t* f, Funvec_t* vp) argument
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)))
/macosx-10.10/xnu-2782.1.97/bsd/hfs/
H A Dhfs_btreeio.h40 extern OSStatus SetBTreeBlockSize(FileReference vp, ByteCount blockSize,
43 extern OSStatus GetBTreeBlock(FileReference vp, u_int32_t blockNum,
46 extern OSStatus ReleaseBTreeBlock(FileReference vp, BlockDescPtr blockPtr,
49 extern OSStatus ExtendBTreeFile(FileReference vp, FSSize minEOF, FSSize maxEOF);
51 extern void ModifyBlockStart(FileReference vp, BlockDescPtr blockPtr);
55 u_int16_t get_btree_nodesize(struct vnode *vp);
/macosx-10.10/tcsh-65/tcsh/
H A Dsh.exp.c187 expr(Char ***vp) argument
189 return (exp0(vp, 0));
193 exp0(Char ***vp, int ignore) argument
195 int p1 = exp1(vp, ignore);
197 etraci("exp0 p1", p1, vp);
198 while (**vp && eq(**vp, STRor2)) {
201 (*vp)++;
204 exp0(vp, (ignore & TEXP_IGNORE) || p1) :
205 exp1(vp, (ignor
216 exp1(Char ***vp, int ignore) argument
240 exp2x(Char ***vp, int ignore) argument
263 exp2a(Char ***vp, int ignore) argument
286 exp2b(Char ***vp, int ignore) argument
309 exp2c(Char ***vp, int ignore) argument
352 exp3(Char ***vp, int ignore) argument
398 exp3a(Char ***vp, int ignore) argument
427 exp4(Char ***vp, int ignore) argument
464 exp5(Char ***vp, int ignore) argument
520 exp6(Char ***vp, int ignore) argument
608 filetest(Char *cp, Char ***vp, int ignore) argument
1039 etraci(const char *str, int i, Char ***vp) argument
1046 etracc(const char *str, const Char *cp, Char ***vp) argument
[all...]
/macosx-10.10/awk-20/src/
H A Dtran.c281 Awkfloat setfval(Cell *vp, Awkfloat f) /* set float val of a Cell */ argument
285 if ((vp->tval & (NUM | STR)) == 0)
286 funnyvar(vp, "assign to");
287 if (isfld(vp)) {
289 fldno = atoi(vp->nval);
293 } else if (isrec(vp)) {
297 if (freeable(vp))
298 xfree(vp->sval); /* free any previous string */
299 vp->tval &= ~STR; /* mark string invalid */
300 vp
305 funnyvar(Cell *vp, const char *rw) argument
315 setsval(Cell *vp, const char *s) argument
345 getfval(Cell *vp) argument
362 get_str_val(Cell *vp, char **fmt) argument
396 getsval(Cell *vp) argument
401 getpssval(Cell *vp) argument
[all...]

Completed in 308 milliseconds

1234567891011>>