Home
last modified time | relevance | path

Searched refs:ateof (Results 1 – 7 of 7) sorted by relevance

/external/curl/lib/
Dmime.c57 static size_t encoder_nop_read(char *buffer, size_t size, bool ateof,
60 static size_t encoder_7bit_read(char *buffer, size_t size, bool ateof,
62 static size_t encoder_base64_read(char *buffer, size_t size, bool ateof,
65 static size_t encoder_qp_read(char *buffer, size_t size, bool ateof,
349 static size_t encoder_nop_read(char *buffer, size_t size, bool ateof, in encoder_nop_read() argument
355 (void) ateof; in encoder_nop_read()
372 static size_t encoder_7bit_read(char *buffer, size_t size, bool ateof, in encoder_7bit_read() argument
378 (void) ateof; in encoder_7bit_read()
395 static size_t encoder_base64_read(char *buffer, size_t size, bool ateof, in encoder_base64_read() argument
434 if(ateof && size >= 4) { in encoder_base64_read()
[all …]
Dmime.h71 size_t (*encodefunc)(char *buffer, size_t size, bool ateof,
/external/python/cpython2/Tools/scripts/
Dcleanfuture.py139 self.ateof = 0
147 if self.ateof:
151 self.ateof = 1
252 if self.ateof:
/external/python/cpython3/Tools/scripts/
Dcleanfuture.py139 self.ateof = 0
147 if self.ateof:
151 self.ateof = 1
252 if self.ateof:
/external/python/cpython2/Lib/email/
Dfeedparser.py84 for ateof in self._eofstack[::-1]:
85 if ateof(line):
/external/python/cpython3/Lib/email/
Dfeedparser.py89 for ateof in reversed(self._eofstack):
90 if ateof(line):
/external/python/cpython2/Lib/test/
Dtest_descr.py2937 ateof = 0 variable in ClassPropertiesAndMethods.test_basic_inheritance.CountedInput
2939 if self.ateof:
2946 self.ateof = 1
2959 self.assertEqual(f.ateof, (i > len(lines)))