Lines Matching refs:fout
527 def extract_dt_file(self, idx, fout, decompress): argument
547 fout.seek(0)
552 fout.write(zlib.decompress(self.__file.read(size), self._ZLIB_DECOMPRESSION_WBITS))
556 fout.write(self.__file.read(size))
840 def create_dtbo_image(fout, argv): argument
852 dtbo = Dtbo(fout, global_args.dt_type, global_args.page_size, global_args.version)
855 fout.close()
873 with open(args.dtfilename + '.{:d}'.format(idx), 'wb') as fout:
874 dtbo.extract_dt_file(idx, fout, args.decompress)
878 def create_dtbo_image_from_config(fout, argv): argument
916 dtbo = Dtbo(fout, global_args['dt_type'], global_args['page_size'], version)
919 fout.close()