Searched refs:write_file (Results 1 – 1 of 1) sorted by relevance
/bootable/libbootloader/gbl/libgbl/testdata/ |
D | gen_test_data.py | 41 def write_file(file, offset, data): function 52 write_file(f, 0, b"\x12\x34\x56\x78" * 1024) 55 write_file(f, 12 * SZ_KB, random.randbytes(12 * SZ_KB)) 57 write_file(f, 24 * SZ_KB, b"\x12\x34\x56\x78" * 1024 * 2) 59 write_file(f, 32 * SZ_KB, random.randbytes(12 * SZ_KB)) 61 write_file(f, 44 * SZ_KB, b"\x12\x34\x56\x78" * 1024) 63 write_file(f, 48 * SZ_KB, b"\x90\xab\xcd\xef" * 1024 * 2)
|