Home
last modified time | relevance | path

Searched refs:file_length (Results 1 – 5 of 5) sorted by relevance

/openbmc/qemu/tests/qemu-iotests/
H A D125190 file_length=$(stat -c '%s' "$TEST_IMG_FILE")
191 if [ "$file_length" != "$expected_file_length" ]; then
192 echo "ERROR: file length $file_length (expected $expected_file_length)"
/openbmc/qemu/block/
H A Dvhdx-log.c498 int64_t file_length; in vhdx_log_flush() local
518 file_length = bdrv_getlength(bs->file->bs); in vhdx_log_flush()
519 if (file_length < 0) { in vhdx_log_flush()
520 ret = file_length; in vhdx_log_flush()
526 if (hdr_tmp.flushed_file_offset > file_length) { in vhdx_log_flush()
556 if (file_length < desc_entries->hdr.last_file_offset) { in vhdx_log_flush()
878 int64_t file_length; in vhdx_log_write() local
932 file_length = bdrv_co_getlength(bs->file->bs); in vhdx_log_write()
933 if (file_length < 0) { in vhdx_log_write()
934 ret = file_length; in vhdx_log_write()
[all …]
/openbmc/u-boot/common/
H A DxyzModem.c52 unsigned long file_length, read_length; member
439 xyz.file_length = 0; in xyzModem_stream_open()
461 parse_num ((char *) xyz.bufp, &xyz.file_length, NULL, " "); in xyzModem_stream_open()
514 if (xyz.mode == xyzModem_xmodem || xyz.file_length == 0) in xyzModem_stream_read()
536 if (xyz.mode != xyzModem_xmodem && 0 != xyz.file_length) in xyzModem_stream_read()
539 if (xyz.read_length > xyz.file_length) in xyzModem_stream_read()
541 xyz.len -= (xyz.read_length - xyz.file_length); in xyzModem_stream_read()
/openbmc/openbmc/poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/
H A D32and64bit.patch20 size_t file_length)
221 + size_t file_length)
306 + size_t file_length)
324 + return process_elf_file32(file_name, lib,flag, osversion, soname, file_contents, file_length);
326 + return process_elf_file64(file_name, lib,flag, osversion, soname, file_contents, file_length);
/openbmc/u-boot/drivers/usb/gadget/
H A Dstorage_common.c276 loff_t file_length; member
575 curlun->file_length = num_sectors << 9; in fsg_lun_open()