Home
last modified time | relevance | path

Searched refs:next (Results 1 – 6 of 6) sorted by relevance

/littlefs-3.5.0-3.4.0/
Dlfs.h342 struct lfs_dir *next; member
353 struct lfs_file *next; member
393 struct lfs_mlist *next; member
DSPEC.md440 The pointer to the next metadata-pair in the directory is stored in a tail tag,
637 2. **Metadata pair (8-bytes)** - Pointer to the next metadata-pair.
642 Provides a tail pointer that points to the next metadata pair in the
645 In this case, the next metadata pair is not a part of our current directory
651 Provides a tail pointer that points to the next metadata pair in the
654 In this case, the next metadata pair belongs to the current directory. Note
655 that because directories in littlefs are sorted alphabetically, the next
754 larger to pad the commit to the next program-aligned boundary.
779 any tags in the next commit.
784 3. **Padding** - Padding to the next program-aligned boundary. No guarantees
Dlfs.c457 for (struct lfs_mlist **p = &head; *p; p = &(*p)->next) { in lfs_mlist_isopen()
469 for (struct lfs_mlist **p = &lfs->mlist; *p; p = &(*p)->next) { in lfs_mlist_remove()
471 *p = (*p)->next; in lfs_mlist_remove()
478 mlist->next = lfs->mlist; in lfs_mlist_append()
2143 for (struct lfs_mlist *d = lfs->mlist; d; d = d->next) { in lfs_dir_relocatingcommit()
2188 for (lfs_file_t *f = (lfs_file_t*)lfs->mlist; f; f = f->next) { in lfs_dir_orphaningcommit()
2262 for (struct lfs_mlist *d = lfs->mlist; d; d = d->next) { in lfs_dir_orphaningcommit()
2409 cwd.next = lfs->mlist; in lfs_rawmkdir()
2469 lfs->mlist = cwd.next; in lfs_rawmkdir()
2473 lfs->mlist = cwd.next; in lfs_rawmkdir()
[all …]
DREADME.md132 flushes all the data to memory and ensures that the next read fetches the data
DDESIGN.md309 We could make our logs larger than two blocks, but the next challenge is how
846 Deciding which block to use next is the responsibility of the block allocator.
/littlefs-3.5.0-3.4.0/scripts/
Dtest.py309 line = (next(it.islice(f, lineno-1, None))
706 line = next(it.islice(f, lineno-1, None)).strip('\n')