Home
last modified time | relevance | path

Searched refs:LFS_ERR_INVAL (Results 1 – 4 of 4) sorted by relevance

/littlefs-2.7.6/
Dlfs.c2151 LFS_TRACE("lfs_dir_seek -> %d", LFS_ERR_INVAL); in lfs_dir_seek()
2152 return LFS_ERR_INVAL; in lfs_dir_seek()
3027 LFS_TRACE("lfs_file_seek -> %d", LFS_ERR_INVAL); in lfs_file_seek()
3028 return LFS_ERR_INVAL; in lfs_file_seek()
3044 LFS_TRACE("lfs_file_truncate -> %d", LFS_ERR_INVAL); in lfs_file_truncate()
3045 return LFS_ERR_INVAL; in lfs_file_truncate()
3163 LFS_TRACE("lfs_remove -> %"PRId32, (tag < 0) ? tag : LFS_ERR_INVAL); in lfs_remove()
3164 return (tag < 0) ? (int)tag : LFS_ERR_INVAL; in lfs_remove()
3247 (oldtag < 0) ? oldtag : LFS_ERR_INVAL); in lfs_rename()
3248 return (oldtag < 0) ? (int)oldtag : LFS_ERR_INVAL; in lfs_rename()
[all …]
Dlfs.h82 LFS_ERR_INVAL = -22, // Invalid parameter enumerator
/littlefs-2.7.6/tests/
Dtest_seek.toml230 LFS_SEEK_CUR) => LFS_ERR_INVAL;
234 LFS_SEEK_END) => LFS_ERR_INVAL;
Dtest_paths.toml195 lfs_remove(&lfs, "/") => LFS_ERR_INVAL;