Home
last modified time | relevance | path

Searched refs:O_EXCL (Results 1 – 8 of 8) sorted by relevance

/Zephyr-latest/drivers/net/
Dnsos_fcntl.c48 TO_NSOS_MID(O_EXCL); in fl_to_nsos_mid_()
85 FROM_NSOS_MID(O_EXCL); in fl_from_nsos_mid()
/Zephyr-latest/lib/libc/armstdc/include/
Dfcntl.h12 #define O_EXCL 0x0800 macro
/Zephyr-latest/lib/libc/arcmwdt/include/
Dfcntl.h23 #if O_NONBLOCK & (O_RDONLY | O_WRONLY | O_RDWR | O_NDELAY | O_CREAT | O_APPEND | O_TRUNC | O_EXCL)
/Zephyr-latest/include/zephyr/posix/
Dfcntl.h26 #define O_EXCL 0x0800 macro
/Zephyr-latest/lib/posix/options/
Dsemaphore.c258 if (((oflags & O_CREAT) != 0) && ((oflags & O_EXCL) != 0)) { in sem_open()
Dshm.c307 bool excl = (oflag & O_EXCL) != 0; in shm_open()
Dmqueue.c95 (oflags & O_EXCL) != 0) { in mq_open()
/Zephyr-latest/tests/posix/semaphores/src/
Dmain.c211 zassert_equal_ptr((sem_open("sem1", O_CREAT | O_EXCL, 0, 0)), SEM_FAILED); in ZTEST()