Home
last modified time | relevance | path

Searched refs:bz2 (Results 1 – 11 of 11) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/encodings/
Dbz2_codec.py11 import bz2 # this codec needs the optional bz2 module !
26 output = bz2.compress(input)
44 output = bz2.decompress(input)
58 self.compressobj = bz2.BZ2Compressor()
68 self.compressobj = bz2.BZ2Compressor()
74 self.decompressobj = bz2.BZ2Decompressor()
83 self.decompressobj = bz2.BZ2Decompressor()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/encodings/
Dbz2_codec.py11 import bz2 # this codec needs the optional bz2 module !
26 output = bz2.compress(input)
44 output = bz2.decompress(input)
58 self.compressobj = bz2.BZ2Compressor()
68 self.compressobj = bz2.BZ2Compressor()
74 self.decompressobj = bz2.BZ2Decompressor()
83 self.decompressobj = bz2.BZ2Decompressor()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_bz2.py16 bz2 = import_module('bz2') variable
17 from bz2 import BZ2File, BZ2Compressor, BZ2Decompressor
38 ret = bz2.decompress(data)
44 return bz2.decompress(data)
303 with bz2.BZ2File(self.filename, 'wb') as f:
315 with bz2.BZ2File(self.filename, 'wb') as f:
320 with bz2.BZ2File(self.filename, 'rb') as f:
393 data = bz2.compress(self.TEXT)
398 text = bz2.decompress(self.DATA)
403 text = bz2.decompress("")
[all …]
Dtest_tarfile.py22 import bz2
24 bz2 = None variable
186 _open = bz2.BZ2File
240 _open = bz2.BZ2File
425 if bz2:
949 dec = bz2.BZ2Decompressor()
1340 if bz2 is None:
1555 data = bz2.compress(tarfile.TarInfo("foo").tobuf())
1615 if bz2:
1617 tar = bz2.BZ2File(bz2name, "wb")
Dtest_codecs.py1330 import bz2
/device/google/contexthub/firmware/
Dtoolchain-setup.sh8 …-arm-embedded/5.0/5-2016-q1-update/+download/gcc-arm-none-eabi-5_3-2016q1-20160330-linux.tar.bz2 &&
9 tar xjf gcc-arm-none-eabi-5_3-2016q1-20160330-linux.tar.bz2 &&
/device/linaro/bootloader/OpenPlatformPkg/Platforms/TexasInstruments/BeagleBoard/
Dreadme.txt10 …/arm/portal/package7813/public/arm-none-eabi/arm-2010.09-51-arm-none-eabi-i686-pc-linux-gnu.tar.bz2
11 tar xjf arm-2010.09-51-arm-none-eabi-i686-pc-linux-gnu.tar.bz2
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dfileinput.py387 import bz2
388 return bz2.BZ2File(filename, mode)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dfileinput.py384 import bz2
385 return bz2.BZ2File(filename, mode)
Dtarfile.py435 import bz2
440 self.cmp = bz2.BZ2Decompressor()
442 self.cmp = bz2.BZ2Compressor()
655 import bz2
658 self.bz2obj = bz2.BZ2Decompressor()
662 self.bz2obj = bz2.BZ2Compressor()
1740 import bz2
1747 fileobj = bz2.BZ2File(name, mode, compresslevel=compresslevel)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/ccbench/
Dccbench.py118 import bz2
123 bz2.compress(s)
147 if bz2 is not None: