Home
last modified time | relevance | path

Searched refs:read (Results 1 – 19 of 19) sorted by relevance

/littlefs-3.5.0-3.4.0/tests/
Dtest_entries.toml49 // read hi1 20
65 // read hi0 20
72 // read hi1 200
79 // read hi2 20
86 // read hi3 20
138 // read hi1 200
154 // read hi0 20
161 // read hi1 20
168 // read hi2 20
175 // read hi3 20
[all …]
Dtest_files.toml43 // read
82 // read
112 // read
164 // read
194 // read
241 // read
271 // read
320 // read
390 // read
Dtest_move.toml101 cfg.read(&cfg, block, 0, bbuffer, LFS_BLOCK_SIZE) => 0;
177 cfg.read(&cfg, block, 0, bbuffer, LFS_BLOCK_SIZE) => 0;
193 cfg.read(&cfg, block, 0, bbuffer, LFS_BLOCK_SIZE) => 0;
269 cfg.read(&cfg, block, 0, bbuffer, LFS_BLOCK_SIZE) => 0;
285 cfg.read(&cfg, block, 0, bbuffer, LFS_BLOCK_SIZE) => 0;
539 cfg.read(&cfg, block, 0, bbuffer, LFS_BLOCK_SIZE) => 0;
623 cfg.read(&cfg, block, 0, bbuffer, LFS_BLOCK_SIZE) => 0;
639 cfg.read(&cfg, block, 0, bbuffer, LFS_BLOCK_SIZE) => 0;
723 cfg.read(&cfg, block, 0, bbuffer, LFS_BLOCK_SIZE) => 0;
739 cfg.read(&cfg, block, 0, bbuffer, LFS_BLOCK_SIZE) => 0;
Dtest_orphans.toml22 cfg.read(&cfg, block, 0, bbuffer, LFS_BLOCK_SIZE) => 0;
Dtest_truncate.toml45 [[case]] # truncate and read
96 [[case]] # write, truncate, and read
Dtest_evil.toml157 cfg.read(&cfg, ctz.head, 0, bbuffer, LFS_BLOCK_SIZE) => 0;
/littlefs-3.5.0-3.4.0/bd/
Dlfs_filebd.c27 (void*)(uintptr_t)cfg->read, (void*)(uintptr_t)cfg->prog, in lfs_filebd_createcfg()
58 (void*)(uintptr_t)cfg->read, (void*)(uintptr_t)cfg->prog, in lfs_filebd_create()
107 ssize_t res2 = read(bd->fd, buffer, size); in lfs_filebd_read()
141 ssize_t res2 = read(bd->fd, &c, 1); in lfs_filebd_prog()
Dlfs_rambd.c18 (void*)(uintptr_t)cfg->read, (void*)(uintptr_t)cfg->prog, in lfs_rambd_createcfg()
54 (void*)(uintptr_t)cfg->read, (void*)(uintptr_t)cfg->prog, in lfs_rambd_create()
Dlfs_testbd.c25 (void*)(uintptr_t)cfg->read, (void*)(uintptr_t)cfg->prog, in lfs_testbd_createcfg()
78 (void*)(uintptr_t)cfg->read, (void*)(uintptr_t)cfg->prog, in lfs_testbd_create()
/littlefs-3.5.0-3.4.0/
DREADME.md44 .read = user_provided_block_device_read,
71 // read current count
128 code of these functions, instead all data is read back and checked for
132 flushes all the data to memory and ensures that the next read fetches the data
134 function does not perform caching, and therefore each `read` or `write` call
Dlfs.h165 int (*read)(const struct lfs_config *c, lfs_block_t block, member
DSPEC.md27 block size), littlefs also uses a program block size and read block size.
405 entry can be read from a device using offsets alone.
492 information to read the file.
618 be ignored if littlefs is mounted read-only.
DDESIGN.md114 Some logging filesystems cache files to avoid the read cost, but this comes
573 efficient to read and write, but most frustrating, they need to be traversable
614 just to read a file! That's awful.
672 of _O(1)_, and can be read with a worst case runtime of _O(n log n)_. Given
775 _O(n)_, can be appended in _O(1)_, and can be read in _O(n log n)_. All of
979 write to a block, we can read the data back and verify that it was written
1210 To avoid read errors, we need to be proactive, as opposed to reactive as we
1216 read errors have a chance to develop.
1811 boot, and a read-only littlefs can ignore the threaded linked-list entirely.
Dlfs.c99 int err = lfs->cfg->read(lfs->cfg, block, off, data, diff); in lfs_bd_read()
120 int err = lfs->cfg->read(lfs->cfg, rcache->block, in lfs_bd_read()
5324 (void*)(uintptr_t)cfg->read, (void*)(uintptr_t)cfg->prog,
5354 (void*)(uintptr_t)cfg->read, (void*)(uintptr_t)cfg->prog,
5811 (void*)(uintptr_t)cfg->read, (void*)(uintptr_t)cfg->prog,
/littlefs-3.5.0-3.4.0/scripts/
Dreadblock.py8 block = (f.read(args.block_size)
Dreadtree.py33 data.append(f.read(args.block_size)
Dexplode_asserts.py208 data = inf.read()
Dreadmdir.py316 blocks.append(f.read(args.block_size)
Dstack.py54 vcg = parse_vcg(f.read())