O_CREAT          1311 lib/vfs/direntry.c     if (ino != NULL && (flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
O_CREAT          1326 lib/vfs/direntry.c         if ((flags & O_CREAT) == 0 || path_element->class->write == NULL)
O_CREAT           198 lib/vfs/interface.c     if ((flags & O_CREAT) != 0)
O_CREAT            32 lib/vfs/vfs.h  #define O_ALL (O_CREAT | O_EXCL | O_NOCTTY | O_NDELAY | O_SYNC | O_WRONLY | O_RDWR | O_RDONLY)
O_CREAT           621 lib/widget/dialog.c     i = open (profile, O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
O_CREAT            57 src/clipboard.c static const int clip_open_flags = O_CREAT | O_WRONLY | O_TRUNC | O_BINARY;
O_CREAT           308 src/editor/edit.c         file = mc_open (filename_vpath, O_NONBLOCK | O_RDONLY | O_BINARY | O_CREAT | O_EXCL, 0666);
O_CREAT           249 src/editor/editcmd.c     fd = mc_open (savename_vpath, O_CREAT | O_WRONLY | O_TRUNC | O_BINARY, edit->stat1.st_mode);
O_CREAT          1574 src/editor/editcmd.c     file = mc_open (vpath, O_CREAT | O_WRONLY | O_TRUNC,
O_CREAT          2487 src/filemanager/file.c         open_flags |= O_CREAT | O_EXCL;
O_CREAT          2491 src/filemanager/file.c         open_flags |= O_CREAT | O_TRUNC;
O_CREAT           493 src/main.c             last_wd_fd = open (mc_args__last_wd_file, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL,
O_CREAT          1017 src/vfs/extfs/extfs.c     if ((entry == NULL) && ((flags & O_CREAT) != 0))
O_CREAT          1062 src/vfs/extfs/extfs.c         flags = ~O_CREAT & (NO_LINEAR (flags) | O_TRUNC);
O_CREAT           143 src/vfs/sftpfs/file.c     if ((flags & O_CREAT) != 0 || (flags & O_WRONLY) != 0)
O_CREAT           146 src/vfs/sftpfs/file.c         sftp_open_flags |= (flags & O_CREAT) != 0 ? LIBSSH2_FXF_CREAT : 0;
O_CREAT           122 src/vfs/sftpfs/sftpfs.c     if (path_inode != NULL && ((flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL)))