Searched refs:pathbuf (Results 1 - 4 of 4) sorted by relevance

/darwin-on-arm/xnu/tools/tests/kqueue_tests/
H A Dkqueue_file_tests.c667 char pathbuf[50]; local
679 makepath(pathbuf, DIR1, FILE1);
682 init_action(&test.t_helpthreadact, SLEEP, CREAT, 2, (void*)pathbuf, NULL);
683 init_action(&test.t_cleanup_actions[0], NOSLEEP, UNLINK, 2, (void*)pathbuf, (void*)NULL);
687 makepath(pathbuf, DIR1, FILE1);
690 init_action(&test.t_helpthreadact, SLEEP, OPEN, 2, (void*)pathbuf, NULL);
691 init_action(&test.t_cleanup_actions[0], NOSLEEP, UNLINK, 2, (void*)pathbuf, (void*)NULL);
695 makepath(pathbuf, DIR1, FILE1);
698 init_action(&(test.t_prep_actions[1]), NOSLEEP, CREAT, 2, (void*)pathbuf, (void*)NULL);
699 init_action(&test.t_helpthreadact, SLEEP, UNLINK, 2, (void*)pathbuf, NUL
874 char pathbuf[50]; local
984 char pathbuf[50]; local
1140 char pathbuf[50]; local
[all...]
/darwin-on-arm/xnu/bsd/sys/
H A Dvnode.h1486 @param pathbuf Buffer in which to store path.
1488 will be strlen(pathbuf) + 1.
1491 int vn_getpath_fsenter(struct vnode *vp, char *pathbuf, int *len);
1584 @param pathbuf Destination for pathname; should be of size MAXPATHLEN
1586 will be strlen(pathbuf) + 1.
1589 int vn_getpath(struct vnode *vp, char *pathbuf, int *len);
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_fsevents.c2356 char pathbuf[MAXPATHLEN]; local
2396 len = sizeof(pathbuf);
2397 if (vn_getpath(vp, pathbuf, &len) == 0) {
2398 add_fsevent(fsevent_type, vfs_context_current(), FSE_ARG_STRING, len, pathbuf, FSE_ARG_FINFO, &fse, FSE_ARG_DONE);
H A Dvfs_subr.c2521 vn_getpath(struct vnode *vp, char *pathbuf, int *len) argument
2523 return build_path(vp, pathbuf, *len, len, BUILDPATH_NO_FS_ENTER, vfs_context_current());
2527 vn_getpath_fsenter(struct vnode *vp, char *pathbuf, int *len) argument
2529 return build_path(vp, pathbuf, *len, len, 0, vfs_context_current());

Completed in 44 milliseconds