Symbol: isdir
bin/ln/ln.c
223
linkit(const char *source, const char *target, bool isdir)
bin/ln/ln.c
261
if (isdir || (lstat(target, &sb) == 0 && S_ISDIR(sb.st_mode)) ||
crypto/krb5/src/util/profile/prof_file.c
302
int isdir = 0;
crypto/krb5/src/util/profile/prof_file.c
355
isdir = S_ISDIR(st.st_mode);
crypto/krb5/src/util/profile/prof_file.c
357
if (!isdir) {
crypto/krb5/src/util/profile/prof_file.c
367
if (isdir) {
sbin/dump/traverse.c
245
int i, isdir, nodump;
sbin/dump/traverse.c
252
isdir = 0; /* XXX just to get gcc to shut up */
sbin/dump/traverse.c
255
isdir = *map++;
sbin/dump/traverse.c
257
isdir >>= 1;
sbin/dump/traverse.c
266
if ((isdir & 1) == 0 || (TSTINO(ino, dumpinomap) && !nodump))
sbin/mksnap_ffs/mksnap_ffs.c
129
switch (isdir(path, &stbuf)) {
sbin/mksnap_ffs/mksnap_ffs.c
82
if (isdir(path, &stbuf) != 1)
stand/libsa/cd9660.c
346
bool isdir = false;
stand/libsa/cd9660.c
439
isdir = true;
stand/libsa/cd9660.c
445
isdir = false;
stand/libsa/cd9660.c
452
if (isdir == true && (isonum_711(rec.flags) & 2) == 0) {
stand/userboot/test/test.c
537
.isdir = test_isdir,
stand/userboot/userboot.h
92
int (*isdir)(void *arg, void *h);
sys/fs/fuse/fuse_vnops.c
2260
bool isdir = fvp->v_type == VDIR;
sys/fs/fuse/fuse_vnops.c
2311
if (data->dataflags & FSESS_DEFAULT_PERMISSIONS && isdir && newparent) {
sys/kern/vfs_cache.c
4086
int isdir;
sys/kern/vfs_cache.c
4089
isdir = vp->v_type == VDIR ? IN_ISDIR : 0;
sys/kern/vfs_cache.c
4100
inotify_log(vp, NULL, 0, selfevent | isdir, cookie);
sys/kern/vfs_cache.c
4117
event | isdir, cookie);
sys/kern/vfs_inotify.c
692
int isdir;
sys/kern/vfs_inotify.c
696
isdir = vp->v_type == VDIR ? IN_ISDIR : 0;
sys/kern/vfs_inotify.c
737
inotify_log(vp, NULL, 0, selfevent | isdir, 0);
sys/kern/vfs_inotify.c
747
cnp->cn_namelen, event | isdir, cookie);
tools/regression/security/open_to_operation/open_to_operation.c
1007
if (isdir)
tools/regression/security/open_to_operation/open_to_operation.c
1020
check_mmap_write_private(const char *testname, const char *path, int isdir,
tools/regression/security/open_to_operation/open_to_operation.c
1040
if (isdir)
tools/regression/security/open_to_operation/open_to_operation.c
1049
if (isdir)
tools/regression/security/open_to_operation/open_to_operation.c
633
check_getdents(const char *testname, const char *path, int isdir,
tools/regression/security/open_to_operation/open_to_operation.c
651
if (isdir && ((mode & O_ACCMODE) == O_RDONLY))
tools/regression/security/open_to_operation/open_to_operation.c
654
else if (isdir)
tools/regression/security/open_to_operation/open_to_operation.c
660
if (isdir && ((mode & O_ACCMODE) == O_RDONLY))
tools/regression/security/open_to_operation/open_to_operation.c
663
else if (isdir)
tools/regression/security/open_to_operation/open_to_operation.c
673
check_sendfile(const char *testname, const char *path, int isdir,
tools/regression/security/open_to_operation/open_to_operation.c
695
if (isdir)
tools/regression/security/open_to_operation/open_to_operation.c
704
if (isdir)
tools/regression/security/open_to_operation/open_to_operation.c
890
check_mmap_read(const char *testname, const char *path, int isdir,
tools/regression/security/open_to_operation/open_to_operation.c
910
if (isdir)
tools/regression/security/open_to_operation/open_to_operation.c
919
if (isdir)
tools/regression/security/open_to_operation/open_to_operation.c
978
check_mmap_exec(const char *testname, const char *path, int isdir,
tools/regression/security/open_to_operation/open_to_operation.c
998
if (isdir)
usr.bin/fortune/fortune/fortune.c
451
bool isdir;
usr.bin/fortune/fortune/fortune.c
464
if ((isdir = is_dir(path)) && parent != NULL) {
usr.bin/fortune/fortune/fortune.c
470
if (!isdir && parent == NULL && (All_forts || Offend) &&
usr.bin/fortune/fortune/fortune.c
537
if ((isdir && !add_dir(fp)) ||
usr.bin/fortune/fortune/fortune.c
538
(!isdir &&
usr.bin/mail/collect.c
376
} else if (isdir(cp)) {
usr.bin/mail/extern.h
148
int isdir(char *);
usr.sbin/bhyveload/bhyveload.c
651
.isdir = cb_isdir,