Home
last modified time | relevance | path

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

/freebsd-10-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_vnops.c175 ndirent.de_Attributes = ATTR_ARCHIVE;
307 if (dep->de_Attributes & ATTR_DIRECTORY) {
345 if (dep->de_Attributes & ATTR_ARCHIVE)
347 if (dep->de_Attributes & ATTR_HIDDEN)
349 if (dep->de_Attributes & ATTR_READONLY)
351 if (dep->de_Attributes & ATTR_SYSTEM)
431 dep->de_Attributes |= ATTR_ARCHIVE;
433 dep->de_Attributes &= ~ATTR_ARCHIVE;
435 dep->de_Attributes |= ATTR_HIDDEN;
437 dep->de_Attributes &= ~ATTR_HIDDEN;
[all …]
Dmsdosfs_denode.c200 ldep->de_Attributes = ATTR_DIRECTORY;
245 if (ldep->de_Attributes & ATTR_DIRECTORY) {
349 int isadir = dep->de_Attributes & ATTR_DIRECTORY;
498 if (dep->de_Attributes & ATTR_DIRECTORY)
542 if (dep->de_Attributes & ATTR_DIRECTORY)
Dmsdosfs_lookup.c151 vdp, dp, dp->de_Attributes); in msdosfs_lookup_()
708 if (dep->de_Attributes & ATTR_DIRECTORY) {
817 if ((target->de_Attributes & ATTR_DIRECTORY) == 0 ||
818 (source->de_Attributes & ATTR_DIRECTORY) == 0) {
837 if ((dep->de_Attributes & ATTR_DIRECTORY) == 0) {
Dmsdosfs_fat.c159 if (dep->de_Attributes & ATTR_DIRECTORY) {
1023 && (dep->de_Attributes & ATTR_DIRECTORY)) {
1102 if (dep->de_Attributes & ATTR_DIRECTORY)
/freebsd-10-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()