Lines Matching defs:bits
69 * bits into human readable symbols (i.e. O_TRUNC). If there
73 * <openflags> bits can be converted to symbols, the "UNKNOWN"
192 int bits = 0;
214 bits |= Open_flags[ind].flag;
235 return bits;
243 int bits = openflags;
252 * bits are not set, assume O_RDONLY.
255 if ((bits & (O_WRONLY | O_RDWR)) == 0) {
265 if ((bits & Open_flags[ind].flag) == Open_flags[ind].flag) {
272 /* remove flag bits from bits */
273 bits = bits & (~Open_flags[ind].flag);
278 * If not all bits were identified and mode was equal to 1,
281 if (bits && mode == 1) { /* not all bits were identified */
302 int bits;
312 if (sscanf(argv[1], "%i", &bits) == 1) {
314 bits, openflags2symbols(bits, ",", 1));