Lines Matching +full:fine +full:- +full:granular
35 other sub-directories) as well as files and references to other
36 objects such as devices and inter-process communications sockets.
41 Files may be read and written in a random-access fashion.
81 Only the super-user can change the root directory context of a process.
117 #define O_RDONLY 000 /* open for reading */
118 #define O_WRONLY 001 /* open for writing */
119 #define O_RDWR 002 /* open for read & write */
120 #define O_NDELAY 004 /* non-blocking open */
121 #define O_APPEND 010 /* append on each write */
122 #define O_CREAT 01000 /* open with file create */
123 #define O_TRUNC 02000 /* open with truncation */
124 #define O_EXCL 04000 /* error on create if file exists */
155 devices according by their ability to support block-oriented
314 This call returns, in \fIbuf\fP, the null-terminated string
344 #define L_SET 0 /* set absolute file offset */
345 #define L_INCR 1 /* set file offset relative to current position */
346 #define L_XTND 2 /* set offset relative to end-of-file */
354 a location in a file past the current end-of-file and writing.
382 #define F_OK 0 /* file exists */
383 #define X_OK 1 /* file is executable */
384 #define W_OK 2 /* file is writable */
385 #define R_OK 4 /* file is readable */
397 provides locking with file granularity. More granular
412 #define LOCK_SH 1 /* shared lock */
413 #define LOCK_EX 2 /* exclusive lock */
414 #define LOCK_NB 4 /* don't block when locking */
415 #define LOCK_UN 8 /* unlock */