Home
last modified time | relevance | path

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

/trueos/sys/fs/msdosfs/
HDdenode.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; \
HDmsdosfs_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 …]
HDmsdosfs_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)
HDmsdosfs_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) {
HDmsdosfs_fat.c157 if (dep->de_Attributes & ATTR_DIRECTORY) {
996 && (dep->de_Attributes & ATTR_DIRECTORY)) {
1073 if (dep->de_Attributes & ATTR_DIRECTORY)
/trueos/lib/libprocstat/
HDmsdosfs.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()