Searched refs:symlink (Results 1 - 10 of 10) sorted by relevance

/u-boot/fs/squashfs/
H A Dsqfs_inode.c81 struct squashfs_symlink_inode *symlink = local
84 return sizeof(*symlink) +
85 get_unaligned_le32(&symlink->symlink_size);
H A Dsqfs_filesystem.h152 char symlink[0]; member in struct:squashfs_symlink_inode
221 struct squashfs_symlink_inode *symlink; member in union:squashfs_inode
H A Dsqfs.c431 * There is no trailling null byte in the symlink's target path, so a
436 strncpy(target, sym->symlink, sz);
554 /* Concatenate remaining tokens and symlink's target */
1330 struct squashfs_symlink_inode *symlink; local
1412 symlink = (struct squashfs_symlink_inode *)ipos;
1413 resolved = sqfs_resolve_symlink(symlink, filename);
1588 struct squashfs_symlink_inode *symlink; local
1645 symlink = (struct squashfs_symlink_inode *)ipos;
1646 resolved = sqfs_resolve_symlink(symlink, filename);
/u-boot/test/py/tests/test_fs/
H A Dtest_erofs.py49 # symlink
50 os.symlink('subdir', os.path.join(root, 'symdir'))
51 os.symlink('f7812', os.path.join(root, 'symfile'))
157 Test load file from the symlink.
/u-boot/test/py/tests/
H A Dtest_ut.py202 symlink = os.path.join(bootdir, 'Image') variable
203 if os.path.exists(symlink):
204 os.remove(symlink)
206 cons, f'echo here {kernel} {symlink}')
207 os.symlink(kernel, symlink)
/u-boot/test/py/tests/test_fs/test_squashfs/
H A Dsqfs_common.py125 # symlink (target: sub-directory)
126 os.symlink('subdir', os.path.join(root, 'sym'))
/u-boot/fs/ext4/
H A Dext4_common.c2182 char *symlink; local
2192 symlink = zalloc(le32_to_cpu(diro->inode.size) + 1);
2193 if (!symlink)
2196 if (le32_to_cpu(diro->inode.size) < sizeof(diro->inode.b.symlink)) {
2197 strncpy(symlink, diro->inode.b.symlink,
2202 symlink, &actread);
2204 free(symlink);
2208 symlink[le32_to_cpu(diro->inode.size)] = '\0';
2209 return symlink;
2262 char *symlink; local
[all...]
H A Dext4_write.c474 *it fits in struct ext2_inode.b.symlink: no block had been allocated
477 le32_to_cpu(inode.size) <= sizeof(inode.b.symlink)) {
925 sizebytes <= sizeof(file_inode->b.symlink)) {
957 strncpy(file_inode->b.symlink, buffer, sizebytes);
/u-boot/include/
H A Dext_common.h197 char symlink[60]; member in union:ext2_inode::__anon14
/u-boot/tools/binman/
H A Dimage.py41 symlink: Name of symlink to image
98 self._symlink = fdt_util.GetString(self._node, 'symlink')
182 # Create symlink to file if symlink given
187 os.symlink(fname, sname)

Completed in 182 milliseconds