Lines Matching refs:len
68 uint64_t len;
84 len = (size_t)(end - start);
85 if (len == 0) {
89 if (len > 256) {
94 memcpy(curName, start, len);
95 curName[len] = '\0';
175 * @param [in] len Length to read in bytes.
180 VFS_Read(VNode *fn, void *buf, uint64_t off, uint64_t len)
182 return fn->op->read(fn, buf, off, len);
193 * @param [in] len Length to read in bytes.
198 VFS_Write(VNode *fn, void *buf, uint64_t off, uint64_t len)
200 return fn->op->write(fn, buf, off, len);
211 * @param [in] len Length to read in bytes.
216 VFS_ReadDir(VNode *fn, void *buf, uint64_t len, uint64_t *off)
218 return fn->op->readdir(fn, buf, len, off);