/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | telnetlib.py | 203 self.eof = 0 219 self.eof = 0 258 self.eof = 1 304 while not self.eof and select.select(*s_args) == s_reply: 324 while not self.eof: 339 while not self.cookedq and not self.eof: 355 while not self.eof and self.sock_avail(): 369 while not self.cookedq and not self.eof and self.sock_avail(): 394 if not buf and self.eof and not self.rawq: 495 if self.eof: [all …]
|
D | shlex.py | 34 self.eof = None 36 self.eof = '' 106 while raw == self.eof: 108 return self.eof 114 if raw != self.eof: 270 if token == self.eof:
|
D | binhex.py | 277 self.eof = 0 287 if self.eof: return decdata 297 decdatacur, self.eof = \ 309 if not decdata and not self.eof: 323 self.eof = 0 334 if self.ifp.eof:
|
D | site.py | 354 eof = 'Cmd-Q' 356 eof = 'Ctrl-Z plus Return' 358 eof = 'Ctrl-D (i.e. EOF)' 364 return 'Use %s() or %s to exit' % (self.name, eof)
|
D | zipfile.py | 588 def _update_crc(self, newdata, eof): argument 595 if eof and self._running_crc != self._expected_crc: 621 self._update_crc(data, eof=(self._compress_left==0)) 637 eof = len(self._unconsumed) == 0 and self._compress_left == 0 638 if eof: 641 self._update_crc(data, eof=eof)
|
D | _pyio.py | 1663 eof = not input_chunk 1664 self._set_decoded_chars(self._decoder.decode(input_chunk, eof)) 1671 return not eof 1856 eof = False 1858 while len(result) < n and not eof: 1859 eof = not self._read_chunk()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
D | gzread.c | 40 state->eof = 1; 59 if (state->eof == 0) { 148 state->eof = 1; 251 } while (state->x.have == 0 && (!state->eof || strm->avail_in)); 275 else if (state->eof && state->strm.avail_in == 0) 338 else if (state->eof && strm->avail_in == 0) {
|
D | gzguts.h | 179 int eof; /* true if end of input file reached */ member
|
D | gzlib.c | 80 state->eof = 0; /* not at end of file */ 400 state->eof = 0; 563 state->eof = 0;
|
D | ChangeLog | 362 - Avoid use of "eof" parameter in trees.c to not shadow library variable 1093 - do not clear eof flag in gzseek (Mark Diekhans)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | binhex.py | 283 self.eof = 0 293 if self.eof: return decdata 303 decdatacur, self.eof = \ 315 if not decdata and not self.eof: 329 self.eof = 0 340 if self.ifp.eof:
|
D | zipfile.py | 639 def _update_crc(self, newdata, eof): argument 646 if eof and self._running_crc != self._expected_crc: 672 self._update_crc(data, eof=(self._compress_left==0)) 688 eof = len(self._unconsumed) == 0 and self._compress_left == 0 689 if eof: 692 self._update_crc(data, eof=eof)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
D | trees.c | 867 void _tr_stored_block(s, buf, stored_len, eof) in _tr_stored_block() argument 871 int eof; /* true if this is the last block for a file */ 873 send_bits(s, (STORED_BLOCK<<1)+eof, 3); /* send block type */ 921 void _tr_flush_block(s, buf, stored_len, eof) in _tr_flush_block() argument 925 int eof; /* true if this is the last block for a file */ 981 _tr_stored_block(s, buf, stored_len, eof); 988 send_bits(s, (STATIC_TREES<<1)+eof, 3); 994 send_bits(s, (DYN_TREES<<1)+eof, 3); 1008 if (eof) { 1015 s->compressed_len-7*eof));
|
D | deflate.h | 285 int eof)); 288 int eof));
|
D | deflate.c | 1364 #define FLUSH_BLOCK_ONLY(s, eof) { \ argument 1369 (eof)); \ 1376 #define FLUSH_BLOCK(s, eof) { \ argument 1377 FLUSH_BLOCK_ONLY(s, eof); \ 1378 if (s->strm->avail_out == 0) return (eof) ? finish_started : need_more; \
|
D | ChangeLog | 476 - do not clear eof flag in gzseek (Mark Diekhans)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/zlib/ |
D | gzguts.h | 185 int eof; /* true if end of input file reached */ member
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/ |
D | site.py | 327 eof = 'Ctrl-D (i.e. EOF)' 333 return 'Use %s() or %s to exit' % (self.name, eof)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/ |
D | site.py | 335 eof = 'Ctrl-D (i.e. EOF)' 341 return 'Use %s() or %s to exit' % (self.name, eof)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/ |
D | textio.c | 1364 int eof; in textiowrapper_read_chunk() local 1409 eof = (PyBytes_Size(input_chunk) == 0); in textiowrapper_read_chunk() 1413 self->decoder, input_chunk, eof); in textiowrapper_read_chunk() 1417 _PyIO_str_decode, input_chunk, eof ? Py_True : Py_False, NULL); in textiowrapper_read_chunk() 1425 eof = 0; in textiowrapper_read_chunk() 1441 return (eof == 0); in textiowrapper_read_chunk()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/ |
D | textio.c | 1387 int eof; in textiowrapper_read_chunk() local 1437 eof = (PyBytes_Size(input_chunk) == 0); in textiowrapper_read_chunk() 1441 self->decoder, input_chunk, eof); in textiowrapper_read_chunk() 1445 _PyIO_str_decode, input_chunk, eof ? Py_True : Py_False, NULL); in textiowrapper_read_chunk() 1452 eof = 0; in textiowrapper_read_chunk() 1475 return (eof == 0); in textiowrapper_read_chunk()
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/ |
D | CLexer.py | 157 eof = self.DFA25_eof, 167 eof = self.DFA35_eof,
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/ |
D | CLexer.py | 157 eof = self.DFA25_eof, 167 eof = self.DFA35_eof,
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/ |
D | CHANGES_FROM_133.txt | 386 because there is no text matched by the eof token. The token name 387 of the eof token is used unless it is "@" - in which case the string 388 "<eof>" is used. 776 error routine would substitute "<eof>" for the programmer's
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_io.py | 1662 for input, eof, output in self.test_cases: 1664 self.assertEqual(d.decode(input, eof), output)
|