Home
last modified time | relevance | path

Searched refs:getsize (Results 1 – 25 of 39) sorted by relevance

12

/openbmc/openbmc-tools/rootfs_size/
H A Drootfs_size.py10 from os.path import getsize
52 original_size = getsize(SQUASHFS)
86 original_size - getsize(newsquashfsroot + "/test"),
103 if getsize(filepath) > FILE_SIZE_LIMIT:
/openbmc/qemu/tests/functional/qemu_test/
H A Dutils.py27 if size != os.path.getsize(path):
35 size = os.path.getsize(path)
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dsdk.py34 self.assertNotEqual(os.path.getsize(path), 0, msg="Host manifest is empty")
38 self.assertNotEqual(os.path.getsize(path), 0, msg="Target manifest is empty")
/openbmc/qemu/tests/qemu-iotests/
H A D29848 self.assertTrue(os.path.getsize(disk) > 100 * MiB)
51 self.assertTrue(os.path.getsize(disk) < 10 * MiB)
116 self.assertTrue(os.path.getsize(disk) == 25 * MiB)
/openbmc/u-boot/board/synopsys/hsdk/
H A Dheaderize-hsdk.py80 uboot_img_size = os.path.getsize(uboot_bin_filename)
114 load_size = os.path.getsize(headerised_filename)
/openbmc/u-boot/board/synopsys/axs10x/
H A Dheaderize-axs.py89 uboot_img_size = os.path.getsize(uboot_bin_filename)
132 load_size = os.path.getsize(headerised_filename)
/openbmc/u-boot/fs/fat/
H A Dfat_write.c107 int getsize = FATBUFBLOCKS; in flush_dirty_fat_buffer() local
119 if (startblock + getsize > fatlength) in flush_dirty_fat_buffer()
120 getsize = fatlength - startblock; in flush_dirty_fat_buffer()
125 if (disk_write(startblock, getsize, bufptr) < 0) { in flush_dirty_fat_buffer()
133 if (disk_write(startblock, getsize, bufptr) < 0) { in flush_dirty_fat_buffer()
289 int getsize = FATBUFBLOCKS; in set_fatent_value() local
295 if (startblock + getsize > fatlength) in set_fatent_value()
296 getsize = fatlength - startblock; in set_fatent_value()
303 if (disk_read(startblock, getsize, bufptr) < 0) { in set_fatent_value()
H A Dfat.c197 __u32 getsize = FATBUFBLOCKS; in get_fatent() local
203 if (startblock + getsize > fatlength) in get_fatent()
204 getsize = fatlength - startblock; in get_fatent()
212 if (disk_read(startblock, getsize, bufptr) < 0) { in get_fatent()
/openbmc/qemu/tests/functional/
H A Dreplay_kernel.py58 % os.path.getsize(replay_path))
H A Dtest_aarch64_ast2700fc.py
H A Dtest_aarch64_aspeed_ast2700.py75 uboot_size = os.path.getsize(self.scratch_file(name,
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/
H A Dgcp.py81 if os.path.getsize(ud.localpath) == 0:
H A Daz.py90 if os.path.getsize(ud.localpath) == 0:
H A Ds3.py103 if os.path.getsize(ud.localpath) == 0:
/openbmc/openbmc/poky/scripts/
H A Drelocate_sdk.py277 old_size = os.path.getsize(e)
292 if old_size != os.path.getsize(e):
H A Dpatchtest204 if os.path.getsize(patch) == 0:
/openbmc/openbmc/poky/meta/lib/oe/
H A Dutils.py503 def getsize(filename): function
518 total += sum(roundup(getsize(os.path.join(root, name))) for name in files)
519 total += roundup(getsize(root))
H A Dsdk.py153 fsize = int(math.ceil(float(os.path.getsize(os.path.join(root, fn))) / 1024))
/openbmc/openbmc/poky/scripts/lib/checklayer/cases/
H A Dcommon.py72 size = os.path.getsize(filename)
/openbmc/openbmc/poky/meta/recipes-graphics/mesa/files/
H A D0001-freedreno-don-t-encode-build-path-into-binaries.patch100 filesize = str(os.path.getsize(filepath))
/openbmc/openbmc/meta-openembedded/meta-oe/classes/
H A Dgitpkgv.bbclass92 if not os.path.exists(rev_file) or os.path.getsize(rev_file)==0:
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/builds/
H A Dtest_core_image_min.py234 if (os.path.getsize(target_file_name) !=
/openbmc/qemu/scripts/
H A Dqcow2-to-stdout.py165 disk_size = align_up(os.path.getsize(input_file), 512)
H A Dreplay-dump.py409 dumpsize = path.getsize(filename)
/openbmc/openbmc/poky/scripts/lib/wic/
H A Dfilemap.py542 dst_size = os.path.getsize(src_fname) + seek - skip

12