Home
last modified time | relevance | path

Searched refs:handle_close (Results 1 – 20 of 20) sorted by relevance

/external/python/cpython3/Lib/
Dasyncore.py114 obj.handle_close()
119 obj.handle_close()
364 self.handle_close()
375 self.handle_close()
382 self.handle_close()
452 self.handle_close()
474 self.handle_close()
497 def handle_close(self): member in dispatcher
Dasynchat.py189 def handle_close(self): member in async_chat
231 self.handle_close()
/external/python/cpython2/Lib/
Dasyncore.py114 obj.handle_close()
119 obj.handle_close()
380 self.handle_close()
391 self.handle_close()
398 self.handle_close()
481 self.handle_close()
503 self.handle_close()
520 def handle_close(self): member in dispatcher
Dasynchat.py183 def handle_close (self): member in async_chat
222 self.handle_close()
/external/python/cpython3/Lib/test/
Dtest_asyncore.py47 handle_close = handle_read_event variable in exitingdummy
58 handle_close = handle_read_event variable in crashingdummy
159 def handle_close(self): member in HelperFunctionTests.test_readwrite.testobj
457 def handle_close(self): member in BaseTestHandler
607 def handle_close(self): member in BaseTestAPI.test_handle_close.TestClient
631 def handle_close(self): member in BaseTestAPI.test_handle_close_after_conn_broken.TestClient
Dtest_poplib.py180 return self.handle_close()
184 return self.handle_close()
188 return self.handle_close()
200 self.handle_close()
Dtest_ftplib.py64 def handle_close(self): member in DummyDTPHandler
338 return self.handle_close()
341 return self.handle_close()
345 return self.handle_close()
403 self.handle_close()
Dtest_ssl.py2596 return self.handle_close()
2601 return self.handle_close()
2617 def handle_close(self): member in AsyncoreEchoServer.EchoServer.ConnectionHandler
Dtest_os.py3085 def handle_close(self): member in SendfileTestServer.Handler
/external/python/cpython2/Lib/test/
Dtest_asyncore.py47 handle_close = handle_read_event variable in exitingdummy
58 handle_close = handle_read_event variable in crashingdummy
149 def handle_close(self): member in HelperFunctionTests.test_readwrite.testobj
474 def handle_close(self): member in BaseTestHandler
602 def handle_close(self): member in BaseTestAPI.test_handle_close.TestClient
Dtest_poplib.py266 return self.handle_close()
270 return self.handle_close()
Dtest_ftplib.py42 def handle_close(self): member in DummyDTPHandler
297 return self.handle_close()
301 return self.handle_close()
359 self.handle_close()
Dtest_ssl.py1878 return self.handle_close()
1883 return self.handle_close()
1899 def handle_close(self): member in AsyncoreEchoServer.EchoServer.ConnectionHandler
/external/python/cpython2/Modules/
D_elementtree.c2077 PyObject* handle_close; member
2588 self->handle_close =
2632 self->handle_close = PyObject_GetAttrString(target, "close");
2633 if (ignore_attribute_error(self->handle_close)) {
2678 Py_XDECREF(self->handle_close);
2736 } if (self->handle_close) {
2738 return PyObject_CallFunction(self->handle_close, "");
/external/python/cpython3/Doc/library/
Dasyncore.rst98 | ``handle_close()`` | Implied by a read event with no data |
144 .. method:: handle_close()
312 def handle_close(self):
/external/python/cpython2/Doc/library/
Dasyncore.rst89 | ``handle_close()`` | Implied by a read event with no data |
135 .. method:: handle_close()
280 def handle_close(self):
/external/python/cpython3/Modules/
D_elementtree.c3080 PyObject *handle_close; member
3620 self->handle_comment = self->handle_pi = self->handle_close = NULL; in xmlparser_new()
3715 self->handle_close = PyObject_GetAttrString(target, "close"); in _elementtree_XMLParser___init___impl()
3716 if (ignore_attribute_error(self->handle_close)) { in _elementtree_XMLParser___init___impl()
3770 Py_VISIT(self->handle_close); in xmlparser_gc_traverse()
3796 Py_CLEAR(self->handle_close); in xmlparser_gc_clear()
3880 else if (self->handle_close) { in _elementtree_XMLParser_close_impl()
3882 return PyObject_CallNoArgs(self->handle_close); in _elementtree_XMLParser_close_impl()
/external/openssh/
Dsftp-server.c424 handle_close(int handle) in handle_close() function
733 ret = handle_close(handle); in process_close()
/external/python/cpython2/Misc/NEWS.d/
D2.7a1.rst3085 call handle_close, not handle_expt_event. Also, dispatcher now has an
/external/python/cpython3/Misc/
DHISTORY15030 and POLLNVAL now call handle_close, not handle_expt_event. Also,