/u-boot/fs/sandbox/ |
A D | sandboxfs.c | 22 loff_t maxsize, loff_t *actread) in sandbox_fs_read_at() argument 52 *actread = size; in sandbox_fs_read_at() 123 loff_t *actread) in fs_read_sandbox() argument 127 ret = sandbox_fs_read_at(filename, offset, buf, len, actread); in fs_read_sandbox()
|
/u-boot/include/ |
A D | sandboxfs.h | 27 loff_t maxsize, loff_t *actread); 36 loff_t *actread);
|
A D | squashfs.h | 20 loff_t len, loff_t *actread);
|
A D | ubifs_uboot.h | 31 loff_t size, loff_t *actread);
|
A D | ext4fs.h | 148 int ext4fs_read(char *buf, loff_t offset, loff_t len, loff_t *actread); 163 loff_t *actread);
|
A D | fat.h | 204 loff_t maxsize, loff_t *actread); 212 loff_t *actread);
|
A D | fs.h | 138 loff_t *actread);
|
/u-boot/common/spl/ |
A D | spl_fat.c | 46 loff_t actread; in spl_fit_read() local 50 ret = fat_read_file(filename, buf, file_offset, size, &actread); in spl_fit_read() 54 return actread; in spl_fit_read()
|
/u-boot/drivers/misc/ |
A D | fs_loader.c | 143 loff_t actread; in fw_get_filesystem_firmware() local 177 firmwarep->offset, firmwarep->size, &actread); in fw_get_filesystem_firmware() 181 ret, firmwarep->name, actread, firmwarep->size); in fw_get_filesystem_firmware() 183 ret = actread; in fw_get_filesystem_firmware()
|
/u-boot/fs/ext4/ |
A D | ext4fs.c | 53 loff_t len, char *buf, loff_t *actread) in ext4fs_read_file() argument 181 *actread = len; in ext4fs_read_file() 223 int ext4fs_read(char *buf, loff_t offset, loff_t len, loff_t *actread) in ext4fs_read() argument 228 return ext4fs_read_file(ext4fs_file, offset, len, buf, actread); in ext4fs_read()
|
A D | ext4_common.h | 54 char *buf, loff_t *actread);
|
A D | ext4_common.c | 2050 loff_t actread; in ext4fs_iterate_dir() local 2068 (char *)&dirent, &actread); in ext4fs_iterate_dir() 2086 &actread); in ext4fs_iterate_dir() 2185 loff_t actread; in ext4fs_read_symlink() local 2202 symlink, &actread); in ext4fs_read_symlink() 2203 if ((status < 0) || (actread == 0)) { in ext4fs_read_symlink()
|
/u-boot/fs/squashfs/ |
A D | sqfs.c | 1309 loff_t *actread) in sqfs_read() argument 1328 *actread = 0; in sqfs_read() 1362 *actread = 0; in sqfs_read() 1482 *actread += sparse_size; in sqfs_read() 1491 dest_len = len - *actread; in sqfs_read() 1493 *actread += dest_len; in sqfs_read() 1496 table_size = len - *actread; in sqfs_read() 1498 *actread += table_size; in sqfs_read() 1505 if (*actread >= len) in sqfs_read() 1552 (*actread)++; in sqfs_read() [all …]
|
/u-boot/fs/ |
A D | fs.c | 93 loff_t *actread) in fs_read_unsupported() argument 153 loff_t len, loff_t *actread); 527 int do_lmb_check, loff_t *actread) in _fs_read() argument 546 ret = info->read(filename, buf, offset, len, actread); in _fs_read() 550 if (ret == 0 && len && *actread != len) in _fs_read() 558 loff_t *actread) in fs_read() argument 560 return _fs_read(filename, addr, offset, len, 0, actread); in fs_read()
|
/u-boot/fs/ubifs/ |
A D | ubifs.c | 834 loff_t size, loff_t *actread) in ubifs_read() argument 845 *actread = 0; in ubifs_read() 908 *actread = i * PAGE_SIZE; in ubifs_read() 910 *actread = size; in ubifs_read() 928 loff_t actread; in ubifs_load() local 933 err = ubifs_read(filename, (void *)(uintptr_t)addr, 0, size, &actread); in ubifs_load() 935 env_set_hex("filesize", actread); in ubifs_load()
|
/u-boot/drivers/fpga/ |
A D | zynqpl.c | 428 loff_t blocksize, actread; in zynq_loadfs() local 443 if (fs_read(filename, (u32) buf, pos, blocksize, &actread) < 0) in zynq_loadfs() 466 if (fs_read(filename, (u32) buf, pos, blocksize, &actread) < 0) in zynq_loadfs() 469 if (fs_read(filename, (u32) buf, pos, bsize, &actread) < 0) in zynq_loadfs()
|
/u-boot/fs/fat/ |
A D | fat.c | 1258 loff_t maxsize, loff_t *actread) in file_fat_read_at() argument 1280 ret = get_contents(&fsdata, dentptr, pos, buffer, maxsize, actread); in file_fat_read_at() 1291 loff_t actread; in file_fat_read() local 1294 ret = file_fat_read_at(filename, 0, buffer, maxsize, &actread); in file_fat_read() 1298 return actread; in file_fat_read() 1302 loff_t *actread) in fat_read_file() argument 1306 ret = file_fat_read_at(filename, offset, buf, len, actread); in fat_read_file()
|
/u-boot/fs/btrfs/ |
A D | btrfs.c | 227 loff_t *actread) in btrfs_read() argument 267 *actread = len; in btrfs_read()
|
/u-boot/common/ |
A D | splash_source.c | 223 loff_t actread; in splash_load_fs() local 259 res = fs_read(splash_file, bmp_load_addr, 0, 0, &actread); in splash_load_fs()
|
/u-boot/lib/efi_loader/ |
A D | efi_file.c | 415 loff_t actread; in file_read() local 435 *buffer_size, &actread)) in file_read() 438 *buffer_size = actread; in file_read() 439 fh->offset += actread; in file_read()
|