Home
last modified time | relevance | path

Searched refs:O_CREAT (Results 1 – 13 of 13) sorted by relevance

/Zephyr-Core-3.5.0/include/zephyr/posix/
Dfcntl.h11 #define O_CREAT 0x0040 macro
13 #define O_CREAT 0x0200 macro
/Zephyr-Core-3.5.0/lib/libc/armstdc/include/
Dfcntl.h10 #define O_CREAT 0x0200 macro
/Zephyr-Core-3.5.0/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-Core-3.5.0/lib/posix/
Dmqueue.c71 if ((oflags & O_CREAT) != 0) { in mq_open()
82 if ((name == NULL) || ((oflags & O_CREAT) != 0 && (msg_size <= 0 || in mq_open()
98 if ((msg_queue != NULL) && (oflags & O_CREAT) != 0 && in mq_open()
105 if ((msg_queue == NULL) && (oflags & O_CREAT) == 0) { in mq_open()
Dfs.c62 int mode = (mf & O_CREAT) ? FS_O_CREATE : 0; in posix_mode_to_zephyr()
/Zephyr-Core-3.5.0/drivers/flash/
Dflash_simulator_native.c47 *flash_fd = open(flash_file_path, O_RDWR | O_CREAT, (mode_t)0600); in flash_mock_init_native()
/Zephyr-Core-3.5.0/tests/posix/fs/src/
Dtest_fs_dir.c30 res = open(TEST_DIR_FILE, O_CREAT | O_RDWR); in test_mkdir()
Dtest_fs_stat.c24 fh = open(filename, O_CREAT | O_WRONLY); in create_file()
Dtest_fs_open_flags.c55 fd = open(THE_FILE, O_CREAT | O_WRONLY); in test_file_open_flags()
231 fd = open(THE_FILE, O_CREAT | O_WRONLY); in test_file_open_flags()
Dtest_fs_file.c19 res = open(TEST_FILE, O_CREAT | O_RDWR); in test_file_open()
/Zephyr-Core-3.5.0/tests/posix/common/src/
Dmqueue.c75 int32_t mode = 0777, flags = O_RDWR | O_CREAT, ret, i; in ZTEST()
/Zephyr-Core-3.5.0/drivers/eeprom/
Deeprom_simulator.c220 eeprom_fd = open(eeprom_file_path, O_RDWR | O_CREAT, (mode_t)0600); in eeprom_mock_init()
/Zephyr-Core-3.5.0/scripts/kconfig/
Dkconfiglib.py6388 sym_path, os.O_WRONLY | os.O_CREAT | os.O_TRUNC, 0o644))