Home
last modified time | relevance | path

Searched refs:de_Attributes (Results 1 – 6 of 6) sorted by relevance

/freebsd-9-stable/sys/fs/msdosfs/
Ddenode.h149 u_char de_Attributes; /* attributes, from directory entry */ member
183 (dep)->de_Attributes = (dp)->deAttributes, \
197 (dp)->deAttributes = (dep)->de_Attributes, \
207 ((dep)->de_Attributes & ATTR_DIRECTORY) ? 0 : (dep)->de_FileSize), \
220 (dep)->de_Attributes |= ATTR_ARCHIVE; \
Dmsdosfs_denode.c206 ldep->de_Attributes = ATTR_DIRECTORY;
251 if (ldep->de_Attributes & ATTR_DIRECTORY) {
313 if (dep->de_Attributes & ATTR_DIRECTORY)
356 int isadir = dep->de_Attributes & ATTR_DIRECTORY;
505 if (dep->de_Attributes & ATTR_DIRECTORY)
549 if (dep->de_Attributes & ATTR_DIRECTORY)
Dmsdosfs_vnops.c175 ndirent.de_Attributes = (ap->a_vap->va_mode & VWRITE) ?
260 ((dep->de_Attributes & ATTR_READONLY) ? 0 : (S_IWUSR|S_IWGRP|S_IWOTH));
307 if (dep->de_Attributes & ATTR_DIRECTORY) {
325 if ((dep->de_Attributes & ATTR_READONLY) == 0)
348 if ((dep->de_Attributes & ATTR_ARCHIVE) == 0)
426 dep->de_Attributes &= ~ATTR_ARCHIVE;
427 else if (!(dep->de_Attributes & ATTR_DIRECTORY))
428 dep->de_Attributes |= ATTR_ARCHIVE;
504 dep->de_Attributes |= ATTR_ARCHIVE;
524 dep->de_Attributes &= ~ATTR_READONLY;
[all …]
Dmsdosfs_lookup.c130 vdp, dp, dp->de_Attributes); in msdosfs_lookup_()
732 if (dep->de_Attributes & ATTR_DIRECTORY) {
841 if ((target->de_Attributes & ATTR_DIRECTORY) == 0 ||
842 (source->de_Attributes & ATTR_DIRECTORY) == 0) {
861 if ((dep->de_Attributes & ATTR_DIRECTORY) == 0) {
Dmsdosfs_fat.c157 if (dep->de_Attributes & ATTR_DIRECTORY) {
990 && (dep->de_Attributes & ATTR_DIRECTORY)) {
1067 if (dep->de_Attributes & ATTR_DIRECTORY)
/freebsd-9-stable/lib/libprocstat/
Dmsdosfs.c120 vn->vn_mode |= denode.de_Attributes & ATTR_READONLY ? 0 : 0222; in msdosfs_filestat()
124 vn->vn_mode |= denode.de_Attributes & ATTR_DIRECTORY ? S_IFDIR : S_IFREG; in msdosfs_filestat()
139 if (denode.de_Attributes & ATTR_DIRECTORY) { in msdosfs_filestat()