Lines Matching full:is

63 // Maximum size of custom attributes in bytes, may be redefined, but there is
77 LFS_ERR_NOTDIR = -20, // Entry is not a dir
78 LFS_ERR_ISDIR = -21, // Entry is a dir
79 LFS_ERR_NOTEMPTY = -39, // Dir is not empty
168 // The state of an erased block is undefined. Negative error codes
211 // lookahead buffer is stored as a compact bitmap, so each byte of RAM
216 // By default lfs_malloc is used to allocate this buffer.
220 // By default lfs_malloc is used to allocate this buffer.
224 // and aligned to a 32-bit boundary. By default lfs_malloc is used to
229 // larger names except the size of the info struct which is controlled by
255 // reduce RAM. LFS_NAME_MAX is stored in superblock and must be
277 // By default lfs_malloc is used to allocate this buffer.
281 // is opened with read access, these attributes will be read from disk
282 // during the open call. If the file is opened with write access, the
287 // to LFS_ATTR_MAX bytes. When read, if the stored attribute is smaller
289 // is larger, then it will be silently truncated. If the attribute is not
438 // If the destination is a directory, the directory must be empty.
452 // to LFS_ATTR_MAX bytes. When read, if the stored attribute is smaller than
453 // the buffer, it will be padded with zeros. If the stored attribute is larger,
454 // then it will be silently truncated. If no attribute is found, the error
455 // LFS_ERR_NOATTR is returned and the buffer is filled with zeros.
458 // Note, the returned size is the size of the attribute on disk, irrespective
467 // to LFS_ATTR_MAX bytes. If an attribute is not found, it will be
476 // If an attribute is not found, nothing happens.
486 // The mode that the file is opened in is determined by the flags, which
495 // The mode that the file is opened in is determined by the flags, which
499 // above. The config struct must be allocated while the file is open, and the
531 // actually be updated on the storage until either sync or close is called.
539 // The change in position is determined by the offset and whence flag.
604 // The returned offset is only meant to be consumed by seek and may not make
620 // Note: Result is best effort. If files share COW structures, the returned
621 // size may be larger than the filesystem actually is.
628 // The provided callback will be called with each block address that is
630 // blocks are in use or how much of the storage is available.