Searched refs:file_len (Results 1 - 6 of 6) sorted by path

/u-boot/common/
H A Dlog.c133 int file_len = strlen(file); local
140 if (file_len >= substr_len &&
141 !strncmp(file + file_len - substr_len, s, substr_len))
/u-boot/drivers/dfu/
H A Ddfu_mmc.c280 u64 file_len = CONFIG_SYS_DFU_MAX_FILE_SIZE; local
283 &file_len);
286 dfu_file_buf_len = file_len;
/u-boot/fs/ext4/
H A Dext4fs.c249 loff_t file_len; local
252 ret = ext4fs_open(filename, &file_len);
259 len = file_len;
/u-boot/tools/
H A Ddefault_image.c172 ulong file_len; local
182 image_multi_getimg(hdr, idx, &file_data, &file_len);
184 if ((file_len == 0) || (idx >= count)) {
191 file_len = image_get_size(hdr);
195 return imagetool_save_subimage(params->outfile, file_data, file_len);
H A Dimagetool.c129 ulong file_len)
141 if (write(dfd, (void *)file_data, file_len) != (ssize_t)file_len) {
126 imagetool_save_subimage( const char *file_name, ulong file_data, ulong file_len) argument
H A Dimagetool.h213 * @file_len: the amount of data to store
215 * imagetool_save_subimage() store file_len bytes of data pointed by file_data
224 ulong file_len);

Completed in 90 milliseconds