Searched refs:O_EXCL (Results 1 - 2 of 2) sorted by relevance

/u-boot/fs/yaffs2/
H A Dyportenv.h114 #ifndef O_EXCL
115 #define O_EXCL 0200 macro
H A Dyaffsfs.c806 /* O_EXCL only has meaning if O_CREAT is specified */
808 oflag &= ~(O_EXCL);
810 /* O_TRUNC has no meaning if (O_CREAT | O_EXCL) is specified */
811 if ((oflag & O_CREAT) & (oflag & O_EXCL))
853 /* Open should fail if O_CREAT and O_EXCL are specified
857 (oflag & O_EXCL) && (oflag & O_CREAT)) {

Completed in 78 milliseconds