Searched refs:collect_incoming_data (Results 1 – 12 of 12) sorted by relevance
/external/python/cpython3/Lib/ |
D | asynchat.py | 81 def collect_incoming_data(self, data): member in async_chat 138 self.collect_incoming_data(self.ac_in_buffer) 144 self.collect_incoming_data(self.ac_in_buffer) 148 self.collect_incoming_data(self.ac_in_buffer[:n]) 167 self.collect_incoming_data(self.ac_in_buffer[:index]) 178 self.collect_incoming_data(self.ac_in_buffer[:-index]) 183 self.collect_incoming_data(self.ac_in_buffer)
|
D | smtpd.py | 316 def collect_incoming_data(self, data): member in SMTPChannel
|
/external/python/cpython2/Lib/ |
D | asynchat.py | 86 def collect_incoming_data(self, data): member in async_chat 134 self.collect_incoming_data (self.ac_in_buffer) 140 self.collect_incoming_data (self.ac_in_buffer) 144 self.collect_incoming_data (self.ac_in_buffer[:n]) 162 self.collect_incoming_data (self.ac_in_buffer[:index]) 172 self.collect_incoming_data (self.ac_in_buffer[:-index]) 177 self.collect_incoming_data (self.ac_in_buffer)
|
D | smtpd.py | 139 def collect_incoming_data(self, data): member in SMTPChannel
|
/external/python/cpython3/Doc/library/ |
D | asynchat.rst | 26 subclass, providing implementations of the :meth:`collect_incoming_data` and 39 meaningful :meth:`collect_incoming_data` and :meth:`found_terminator` 77 :meth:`collect_incoming_data` and :meth:`found_terminator` must handle the 88 .. method:: async_chat.collect_incoming_data(data) 192 def collect_incoming_data(self, data):
|
/external/python/cpython2/Doc/library/ |
D | asynchat.rst | 17 subclass, providing implementations of the :meth:`collect_incoming_data` and 30 meaningful :meth:`collect_incoming_data` and :meth:`found_terminator` 68 :meth:`collect_incoming_data` and :meth:`found_terminator` must handle the 79 .. method:: async_chat.collect_incoming_data(data) 214 def collect_incoming_data(self, data):
|
/external/python/cpython2/Lib/test/ |
D | test_asynchat.py | 85 def collect_incoming_data(self, data): member in echo_client
|
D | test_poplib.py | 41 def collect_incoming_data(self, data): member in DummyPOP3Handler
|
D | test_ftplib.py | 71 def collect_incoming_data(self, data): member in DummyFTPHandler
|
/external/python/cpython3/Lib/test/ |
D | test_asynchat.py | 86 def collect_incoming_data(self, data): member in echo_client
|
D | test_poplib.py | 56 def collect_incoming_data(self, data): member in DummyPOP3Handler
|
D | test_ftplib.py | 98 def collect_incoming_data(self, data): member in DummyFTPHandler
|