/src/sys/compat/aoutm68k/ |
aoutm68k_stat.h | 56 u_int32_t st_flags; /* user defined flags for file */ member in struct:aoutm68k_stat43 76 u_int32_t st_flags; /* user defined flags for file */ member in struct:aoutm68k_stat12 97 u_int32_t st_flags; /* user defined flags for file */ member in struct:aoutm68k_stat
|
aoutm68k_stat.c | 257 ast->st_flags = st->st_flags; 287 ast->st_flags = st->st_flags; 316 ast->st_flags = st->st_flags;
|
/src/sys/compat/sys/ |
stat.h | 59 uint32_t st_flags; /* user defined flags for file */ member in struct:stat43 78 uint32_t st_flags; /* user defined flags for file */ member in struct:stat12 125 uint32_t st_flags; /* user defined flags for file */ member in struct:stat13 170 uint32_t st_flags; /* user defined flags for file */ member in struct:stat30
|
/src/usr.sbin/mtree/ |
compare.c | 95 if (flags != p->fts_statp->st_flags) { \ 99 sf = flags_to_string(p->fts_statp->st_flags, "none"); \ 115 * given pflags, additionally set those flags specified in s->st_flags and 120 flags = (s->st_flags & (mask)) | (pflags); \ 125 * given pflags, reset the flags specified in s->st_flags and selected by mask 130 flags = (~(s->st_flags & (mask)) & CH_MASK) & (pflags); \ 191 SETFLAGS(p->fts_statp->st_flags, SP_FLGS); 196 CLEARFLAGS(p->fts_statp->st_flags, SP_FLGS); 380 if ((s->flags & F_FLAGS) && ((s->st_flags != p->fts_statp->st_flags) [all...] |
verify.c | 305 if ((p->flags & F_FLAGS) && p->st_flags) { 307 flags = p->st_flags; 309 flags = p->st_flags & ~SP_FLGS;
|
mtree.h | 53 u_long st_flags; /* flags */ member in struct:_node
|
create.c | 305 if (keys & F_FLAGS && p->fts_statp->st_flags != flags) { 306 char *str = flags_to_string(p->fts_statp->st_flags, "none"); 385 sflags = FLAGS2INDEX(p->fts_statp->st_flags); 387 saveflags = p->fts_statp->st_flags;
|
specspec.c | 101 printf(" flags=%s", flags_to_string(n->st_flags, "none")); 184 if (FF(n1, n2, F_FLAGS, st_flags))
|
/src/usr.sbin/makefs/ |
makefs.h | 98 uint32_t st_flags; /* stand-in for st.st_flags */ member in struct:__anonc279ec630108 103 #define FSINODE_ST_FLAGS(inode) (inode).st.st_flags 105 #define FSINODE_ST_FLAGS(inode) (inode).st_flags
|
/src/lib/libc/compat/sys/ |
compat___stat13.c | 94 ost->st_flags = st->st_flags;
|
compat___stat30.c | 91 ost->st_flags = st->st_flags;
|
compat_stat.c | 88 ost->st_flags = st->st_flags;
|
/src/usr.bin/chflags/ |
chflags.c | 183 newflags = p->fts_statp->st_flags; 187 if (dflag && newflags == p->fts_statp->st_flags)
|
/src/tests/fs/vfs/ |
t_unpriv.c | 190 if (rump_sys_chflags(name, st.st_flags) == -1) { 196 fflags = st.st_flags | UF_NODUMP;
|
/src/sys/dev/spi/ |
spi.c | 560 st->st_flags = 0; 649 while (!(st->st_flags & SPI_F_DONE)) { 668 st->st_flags |= SPI_F_ERROR; 670 st->st_flags |= SPI_F_DONE; 708 if (trans.st_flags & SPI_F_ERROR) 728 if (trans.st_flags & SPI_F_ERROR) 751 if (trans.st_flags & SPI_F_ERROR) 786 if (trans.st_flags & SPI_F_ERROR)
|
spivar.h | 128 volatile int st_flags; member in struct:spi_transfer
|
/src/tests/fs/tmpfs/ |
t_create.sh | 68 test ${st_flags} -eq 0 || atf_fail "Incorrect flags"
|
/src/sys/compat/netbsd32/ |
netbsd32_compat_12.c | 85 sp32->st_flags = sp12->st_flags;
|
/src/usr.bin/xinstall/ |
xinstall.c | 430 if (to_sb.st_flags & NOCHANGEBITS) 432 to_sb.st_flags & ~(NOCHANGEBITS)); 709 from_sb.st_flags = 0; /* XXX */ 720 to_sb.st_flags & (NOCHANGEBITS)) 721 (void)chflags(to_name, to_sb.st_flags & ~(NOCHANGEBITS)); 842 flags & SETFLAGS ? fileflags : from_sb.st_flags & ~UF_NODUMP) == -1) 844 if (errno != EOPNOTSUPP || (from_sb.st_flags & ~UF_NODUMP) != 0)
|
/src/sys/compat/linux/common/ |
linux_file64.c | 125 if ((st->st_flags & UF_NODUMP) != 0) 127 if ((st->st_flags & (UF_IMMUTABLE|SF_IMMUTABLE)) != 0) 129 if ((st->st_flags & (UF_APPEND|SF_APPEND)) != 0)
|
/src/bin/mv/ |
mv.c | 358 if (fchflags(to_fd, sbp->st_flags) && (errno != EOPNOTSUPP)) 359 warn("%s: set flags (was: 0%07o)", to, sbp->st_flags);
|
/src/sys/compat/common/ |
vfs_syscalls_12.c | 102 ost->st_flags = st->st_flags;
|
vfs_syscalls_50.c | 109 ost->st_flags = st->st_flags;
|
/src/tests/lib/libc/sys/ |
t_stat.c | 74 if (sa.st_flags == sb.st_flags)
|
/src/usr.bin/compress/ |
compress.c | 417 if (fs->st_flags != 0 && chflags(name, fs->st_flags))
|