Home
last modified time | relevance | path

Searched refs:LFS_O_APPEND (Results 1 – 7 of 7) sorted by relevance

/littlefs-3.7.0-3.6.0/tests/
Dtest_powerloss.toml15 LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
64 LFS_O_WRONLY | LFS_O_APPEND) => 0;
108 LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
160 LFS_O_WRONLY | LFS_O_APPEND) => 0;
Dtest_seek.toml18 LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
91 LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
149 LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
213 LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
Dtest_alloc.toml25 LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
78 LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
131 LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
193 LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
Dtest_files.toml194 lfs_file_open(&lfs, &file, "avacado", LFS_O_WRONLY | LFS_O_APPEND) => 0;
357 {MODE='LFS_O_APPEND', SIZE=[32, 0, 7, 2049], CHUNKSIZE=[31, 16, 65]},
397 lfs_size_t skip = (MODE == LFS_O_APPEND) ? size : 0;
Dtest_interspersed.toml213 LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
/littlefs-3.7.0-3.6.0/
Dlfs.h134 LFS_O_APPEND = 0x0800, // Move to end of file on every write enumerator
Dlfs.c3604 if ((file->flags & LFS_O_APPEND) && file->pos < file->ctz.size) {