Home
last modified time | relevance | path

Searched refs:actread (Results 1 – 17 of 17) sorted by relevance

/external/u-boot/fs/sandbox/
Dsandboxfs.c20 loff_t maxsize, loff_t *actread) in sandbox_fs_read_at() argument
50 *actread = size; in sandbox_fs_read_at()
121 loff_t *actread) in fs_read_sandbox() argument
125 ret = sandbox_fs_read_at(filename, offset, buf, len, actread); in fs_read_sandbox()
/external/u-boot/fs/ext4/
Dext4fs.c49 loff_t len, char *buf, loff_t *actread) in ext4fs_read_file() argument
161 *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()
Dext4_common.h53 char *buf, loff_t *actread);
Dext4_common.c2012 loff_t actread; in ext4fs_iterate_dir() local
2030 (char *)&dirent, &actread); in ext4fs_iterate_dir()
2048 &actread); in ext4fs_iterate_dir()
2147 loff_t actread; in ext4fs_read_symlink() local
2164 symlink, &actread); in ext4fs_read_symlink()
2165 if ((status < 0) || (actread == 0)) { in ext4fs_read_symlink()
/external/u-boot/common/spl/
Dspl_fat.c44 loff_t actread; in spl_fit_read() local
48 ret = fat_read_file(filename, buf, file_offset, size, &actread); in spl_fit_read()
52 return actread; in spl_fit_read()
/external/u-boot/include/
Dsandboxfs.h24 loff_t maxsize, loff_t *actread);
33 loff_t *actread);
Dext4fs.h138 int ext4fs_read(char *buf, loff_t offset, loff_t len, loff_t *actread);
152 loff_t *actread);
Dfat.h192 loff_t maxsize, loff_t *actread);
200 loff_t *actread);
Dubifs_uboot.h28 loff_t size, loff_t *actread);
Dfs.h86 loff_t *actread);
/external/u-boot/fs/ubifs/
Dubifs.c842 loff_t size, loff_t *actread) in ubifs_read() argument
853 *actread = 0; in ubifs_read()
916 *actread = i * PAGE_SIZE; in ubifs_read()
918 *actread = size; in ubifs_read()
936 loff_t actread; in ubifs_load() local
941 err = ubifs_read(filename, (void *)(uintptr_t)addr, 0, size, &actread); in ubifs_load()
943 env_set_hex("filesize", actread); in ubifs_load()
/external/u-boot/fs/
Dfs.c81 loff_t *actread) in fs_read_unsupported() argument
126 loff_t len, loff_t *actread);
406 loff_t *actread) in fs_read() argument
417 ret = info->read(filename, buf, offset, len, actread); in fs_read()
421 if (ret == 0 && len && *actread != len) in fs_read()
/external/u-boot/drivers/fpga/
Dzynqpl.c420 loff_t blocksize, actread; in zynq_loadfs() local
434 if (fs_read(filename, (u32) buf, pos, blocksize, &actread) < 0) in zynq_loadfs()
457 if (fs_read(filename, (u32) buf, pos, blocksize, &actread) < 0) in zynq_loadfs()
460 if (fs_read(filename, (u32) buf, pos, bsize, &actread) < 0) in zynq_loadfs()
/external/u-boot/fs/fat/
Dfat.c1081 loff_t maxsize, loff_t *actread) in file_fat_read_at() argument
1099 ret = get_contents(&fsdata, itr->dent, pos, buffer, maxsize, actread); in file_fat_read_at()
1110 loff_t actread; in file_fat_read() local
1113 ret = file_fat_read_at(filename, 0, buffer, maxsize, &actread); in file_fat_read()
1117 return actread; in file_fat_read()
1121 loff_t *actread) in fat_read_file() argument
1125 ret = file_fat_read_at(filename, offset, buf, len, actread); in fat_read_file()
/external/u-boot/fs/btrfs/
Dbtrfs.c174 loff_t *actread) in btrfs_read() argument
206 *actread = rd; in btrfs_read()
/external/u-boot/lib/efi_loader/
Defi_file.c234 loff_t actread; in file_read() local
237 *buffer_size, &actread)) in file_read()
240 *buffer_size = actread; in file_read()
241 fh->offset += actread; in file_read()
/external/u-boot/common/
Dsplash_source.c219 loff_t actread; in splash_load_fs() local
255 res = fs_read(splash_file, bmp_load_addr, 0, 0, &actread); in splash_load_fs()