Searched refs:needs_input (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython3/Modules/ |
D | _bz2module.c | 43 char needs_input; member 515 d->needs_input = 0; in decompress() 525 d->needs_input = 1; in decompress() 528 d->needs_input = 0; in decompress() 628 self->needs_input = 1; in _bz2_BZ2Decompressor___init___impl() 680 {"needs_input", T_BOOL, offsetof(BZ2Decompressor, needs_input), READONLY,
|
D | _lzmamodule.c | 53 char needs_input; member 983 d->needs_input = 0; in decompress() 998 d->needs_input = 0; in decompress() 1004 d->needs_input = 1; in decompress() 1008 d->needs_input = 0; in decompress() 1172 self->needs_input = 1; in _lzma_LZMADecompressor___init___impl() 1253 {"needs_input", T_BOOL, offsetof(Decompressor, needs_input), READONLY,
|
/external/python/cpython3/Lib/ |
D | _compression.py | 96 if self._decompressor.needs_input:
|
/external/python/cpython3/Doc/library/ |
D | bz2.rst | 195 output can be produced, the :attr:`~.needs_input` attribute will 202 *max_length* was negative), the :attr:`~.needs_input` attribute 226 .. attribute:: needs_input
|
D | lzma.rst | 250 output can be produced, the :attr:`~.needs_input` attribute will 257 *max_length* was negative), the :attr:`~.needs_input` attribute 283 .. attribute:: needs_input
|
/external/python/cpython3/Lib/test/ |
D | test_bz2.py | 739 self.assertFalse(bzd.needs_input) 744 self.assertFalse(bzd.needs_input)
|
D | test_lzma.py | 166 self.assertFalse(lzd.needs_input) 171 self.assertFalse(lzd.needs_input) 1220 self.assertFalse(d2.needs_input) # ensure needs_input mechanism works
|