Home | History | Annotate | Download | only in sys

Lines Matching refs:Mode

34       int       open      (const char *name, int oflags, int mode);

229 @param[in] mode Access mode to use if creating the file.
233 int open (const char *name, int oflags, int mode);
239 int creat(const char *path, mode_t mode)
241 return open(path, O_WRONLY|O_CREAT|O_TRUNC, mode);
245 @param[in] Mode Access mode (permissions) for the new file.
249 int creat (const char *Path, mode_t Mode);
272 - F_SETFL: The old status flags and access mode of the file.
273 - F_GETFL: The status flags and access mode of the file.