Home
last modified time | relevance | path

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

/OK3568_Linux_fs/u-boot/fs/sandbox/
H A Dsandboxfs.c21 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 Dext4fs.c50 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 Dext4_common.h54 char *buf, loff_t *actread);
H A Dext4_common.c2013 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 Dspl_fat.c45 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 Dsandboxfs.h24 loff_t maxsize, loff_t *actread);
33 loff_t *actread);
H A Dext4fs.h140 int ext4fs_read(char *buf, loff_t offset, loff_t len, loff_t *actread);
154 loff_t *actread);
H A Dfat.h194 loff_t maxsize, loff_t *actread);
202 loff_t *actread);
H A Dubifs_uboot.h29 loff_t size, loff_t *actread);
H A Dfs.h85 loff_t *actread);
/OK3568_Linux_fs/u-boot/fs/ubifs/
H A Dubifs.c847 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 Dfs.c81 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 Dzynqpl.c405 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 Dfat.c1091 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 Dsplash_source.c220 loff_t actread; in splash_load_fs() local
256 res = fs_read(splash_file, bmp_load_addr, 0, 0, &actread); in splash_load_fs()