Searched refs:read (Results 1 – 19 of 19) sorted by relevance
/littlefs-3.5.0-3.4.0/tests/ |
D | test_entries.toml | 49 // 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 …]
|
D | test_files.toml | 43 // read 82 // read 112 // read 164 // read 194 // read 241 // read 271 // read 320 // read 390 // read
|
D | test_move.toml | 101 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;
|
D | test_orphans.toml | 22 cfg.read(&cfg, block, 0, bbuffer, LFS_BLOCK_SIZE) => 0;
|
D | test_truncate.toml | 45 [[case]] # truncate and read 96 [[case]] # write, truncate, and read
|
D | test_evil.toml | 157 cfg.read(&cfg, ctz.head, 0, bbuffer, LFS_BLOCK_SIZE) => 0;
|
/littlefs-3.5.0-3.4.0/bd/ |
D | lfs_filebd.c | 27 (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()
|
D | lfs_rambd.c | 18 (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()
|
D | lfs_testbd.c | 25 (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/ |
D | README.md | 44 .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
|
D | lfs.h | 165 int (*read)(const struct lfs_config *c, lfs_block_t block, member
|
D | SPEC.md | 27 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.
|
D | DESIGN.md | 114 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.
|
D | lfs.c | 99 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/ |
D | readblock.py | 8 block = (f.read(args.block_size)
|
D | readtree.py | 33 data.append(f.read(args.block_size)
|
D | explode_asserts.py | 208 data = inf.read()
|
D | readmdir.py | 316 blocks.append(f.read(args.block_size)
|
D | stack.py | 54 vcg = parse_vcg(f.read())
|