Home
last modified time | relevance | path

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

/littlefs-latest/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;
273 LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
360 LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
569 LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
595 LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
627 LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
Dtest_alloc.toml31 LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
90 LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
148 LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
215 LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
Dtest_files.toml198 lfs_file_open(&lfs, &file, "avacado", LFS_O_WRONLY | LFS_O_APPEND) => 0;
367 {MODE='LFS_O_APPEND',
416 lfs_size_t skip = (MODE == LFS_O_APPEND) ? size : 0;
Dtest_interspersed.toml217 LFS_O_WRONLY | LFS_O_CREAT | LFS_O_APPEND) => 0;
/littlefs-latest/
Dlfs.h133 LFS_O_APPEND = 0x0800, // Move to end of file on every write enumerator
Dlfs.c3674 if ((file->flags & LFS_O_APPEND) && file->pos < file->ctz.size) {