Home
last modified time | relevance | path

Searched refs:bits (Results 1 – 9 of 9) sorted by relevance

/coreutils/doc/
Dperm.texi1 @c File mode bits
12 Each file has a set of @dfn{file mode bits} that control the kinds of
17 * Mode Structure:: Structure of file mode bits.
18 * Symbolic Modes:: Mnemonic representation of file mode bits.
19 * Numeric Modes:: File mode bits as octal numbers.
27 The file mode bits have two parts: the @dfn{file permission bits},
29 bits}, which affect only some files.
70 file mode bits have three special components, which affect only
104 In addition to the file mode bits listed above, there may be file attributes
121 Even if a file's mode bits allow an operation on that file,
[all …]
Dcoreutils.texi481 * Mode Structure:: Structure of file mode bits
482 * Symbolic Modes:: Mnemonic representation of file mode bits
483 * Numeric Modes:: File mode bits as octal numbers
1224 uses the pool to generate random bits. If the pool is short of data,
1225 the device reuses the internal pool to produce more bits, using a
2103 seven bits of each byte is used; the high-order bit is ignored.
4129 This is specified in bits and thus must be a multiple of 8.
4404 various lengths (respectively 224, 256, 384 and 512 bits),
7173 For portability, @var{ooo} should represent a value that fits in eight bits.
7949 In addition to the name of each file, print the file type, file mode bits,
[all …]
/coreutils/man/
Dchmod.x32 given, but bits that are set in the umask are not affected.
34 The operator \fB+\fP causes the selected file mode bits to be added to
35 the existing file mode bits of each file; \fB-\fP causes them to be
37 bits to be removed except that a directory's unmentioned set user and
53 adding up the bits with values 4, 2, and 1. Omitted digits are
/coreutils/src/
Dshred.c230 unsigned int bits = type & 0xfff; in periodic_pattern() local
232 bits |= bits << 12; in periodic_pattern()
233 r[0] = (bits >> 4) & 255; in periodic_pattern()
234 r[1] = (bits >> 8) & 255; in periodic_pattern()
235 r[2] = bits & 255; in periodic_pattern()
250 unsigned int bits = type & 0xfff; in fillpattern() local
252 bits |= bits << 12; in fillpattern()
253 r[0] = (bits >> 4) & 255; in fillpattern()
254 r[1] = (bits >> 8) & 255; in fillpattern()
255 r[2] = bits & 255; in fillpattern()
Dstty.c201 unsigned long bits; /* Bits to set for this mode. */ member
1686 *bitsp = *bitsp & ~info->mask & ~info->bits; in set_mode()
1688 *bitsp = (*bitsp & ~info->mask) | info->bits; in set_mode()
1981 mask = mode_info[i].mask ? mode_info[i].mask : mode_info[i].bits; in display_changed()
1982 if ((*bitsp & mask) == mode_info[i].bits) in display_changed()
2063 mask = mode_info[i].mask ? mode_info[i].mask : mode_info[i].bits; in display_all()
2064 if ((*bitsp & mask) == mode_info[i].bits) in display_all()
2296 *bitsp = (*bitsp & ~mode_info[i].mask) | mode_info[i].bits; in sane_mode()
2302 *bitsp = *bitsp & ~mode_info[i].mask & ~mode_info[i].bits; in sane_mode()
/coreutils/
DREADME-install57 Although 32-bit builds fail if that forces time_t to be 32 bits, this
59 defaults to 32 bits, one can use "./configure CC='gcc -maix64' AR='ar
DNEWS46 fail on files with inode numbers that do not fit into 32 bits.
85 platforms like x86 and ARM where time_t was historically 32 bits.
92 shred again operates on Solaris when built for 64 bits.
255 like x86_64 where 'long double' has padding bits in memory.
890 and leaves mode bits of existing files unchanged.
891 Previously it would have set executable bits on created special files,
892 and set mode bits for existing files as if they had been created.
1591 chmod -Rc no longer issues erroneous warnings for files with special bits set.
2261 modes do not preserve directory setuid and setgid bits; for example,
2265 setuid and setgid bits, so that 'chmod 00755 FOO' now clears FOO's setuid
[all …]
Dinit.cfg265 # 1) setfacl maps ACLs into file permission bits if on "noacl" file systems.
268 # setfacl operates on the regular file permission bits, and only fails if the
/coreutils/tests/
Dlocal.mk113 tests/cp/special-bits.sh \