| /OK3568_Linux_fs/u-boot/fs/sandbox/ |
| H A D | sandboxfs.c | 21 loff_t maxsize, loff_t *actread) in sandbox_fs_read_at() argument 51 *actread = size; in sandbox_fs_read_at() 122 loff_t *actread) in fs_read_sandbox() argument 126 ret = sandbox_fs_read_at(filename, offset, buf, len, actread); in fs_read_sandbox()
|
| /OK3568_Linux_fs/u-boot/fs/ext4/ |
| H A D | ext4fs.c | 50 loff_t len, char *buf, loff_t *actread) in ext4fs_read_file() argument 162 *actread = len; in ext4fs_read_file() 202 int ext4fs_read(char *buf, loff_t offset, loff_t len, loff_t *actread) in ext4fs_read() argument 207 return ext4fs_read_file(ext4fs_file, offset, len, buf, actread); in ext4fs_read()
|
| H A D | ext4_common.h | 54 char *buf, loff_t *actread);
|
| H A D | ext4_common.c | 2013 loff_t actread; in ext4fs_iterate_dir() local 2031 (char *)&dirent, &actread); in ext4fs_iterate_dir() 2049 &actread); in ext4fs_iterate_dir() 2148 loff_t actread; in ext4fs_read_symlink() local 2165 symlink, &actread); in ext4fs_read_symlink() 2166 if ((status < 0) || (actread == 0)) { in ext4fs_read_symlink()
|
| /OK3568_Linux_fs/u-boot/common/spl/ |
| H A D | spl_fat.c | 45 loff_t actread; in spl_fit_read() local 49 ret = fat_read_file(filename, buf, file_offset, size, &actread); in spl_fit_read() 53 return actread; in spl_fit_read()
|
| /OK3568_Linux_fs/u-boot/include/ |
| H A D | sandboxfs.h | 24 loff_t maxsize, loff_t *actread); 33 loff_t *actread);
|
| H A D | ext4fs.h | 140 int ext4fs_read(char *buf, loff_t offset, loff_t len, loff_t *actread); 154 loff_t *actread);
|
| H A D | fat.h | 194 loff_t maxsize, loff_t *actread); 202 loff_t *actread);
|
| H A D | ubifs_uboot.h | 29 loff_t size, loff_t *actread);
|
| H A D | fs.h | 85 loff_t *actread);
|
| /OK3568_Linux_fs/u-boot/fs/ubifs/ |
| H A D | ubifs.c | 847 loff_t size, loff_t *actread) in ubifs_read() argument 858 *actread = 0; in ubifs_read() 921 *actread = i * PAGE_SIZE; in ubifs_read() 923 *actread = size; in ubifs_read() 941 loff_t actread; in ubifs_load() local 946 err = ubifs_read(filename, (void *)(uintptr_t)addr, 0, size, &actread); in ubifs_load() 948 env_set_hex("filesize", actread); in ubifs_load()
|
| /OK3568_Linux_fs/u-boot/fs/ |
| H A D | fs.c | 81 loff_t *actread) in fs_read_unsupported() argument 126 loff_t len, loff_t *actread); 396 loff_t *actread) in fs_read() argument 407 ret = info->read(filename, buf, offset, len, actread); in fs_read() 411 if (ret == 0 && len && *actread != len) in fs_read()
|
| /OK3568_Linux_fs/u-boot/drivers/fpga/ |
| H A D | zynqpl.c | 405 loff_t blocksize, actread; in zynq_loadfs() local 419 if (fs_read(filename, (u32) buf, pos, blocksize, &actread) < 0) in zynq_loadfs() 442 if (fs_read(filename, (u32) buf, pos, blocksize, &actread) < 0) in zynq_loadfs() 445 if (fs_read(filename, (u32) buf, pos, bsize, &actread) < 0) in zynq_loadfs()
|
| /OK3568_Linux_fs/u-boot/fs/fat/ |
| H A D | fat.c | 1091 loff_t maxsize, loff_t *actread) in file_fat_read_at() argument 1109 ret = get_contents(&fsdata, itr->dent, pos, buffer, maxsize, actread); in file_fat_read_at() 1120 loff_t actread; in file_fat_read() local 1123 ret = file_fat_read_at(filename, 0, buffer, maxsize, &actread); in file_fat_read() 1127 return actread; in file_fat_read() 1131 loff_t *actread) in fat_read_file() argument 1135 ret = file_fat_read_at(filename, offset, buf, len, actread); in fat_read_file()
|
| /OK3568_Linux_fs/u-boot/common/ |
| H A D | splash_source.c | 220 loff_t actread; in splash_load_fs() local 256 res = fs_read(splash_file, bmp_load_addr, 0, 0, &actread); in splash_load_fs()
|