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()
366 self.handle_close()
377 self.handle_close()
384 self.handle_close()
454 self.handle_close()
476 self.handle_close()
499 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.py178 return self.handle_close()
182 return self.handle_close()
186 return self.handle_close()
198 self.handle_close()
Dtest_ftplib.py58 def handle_close(self): member in DummyDTPHandler
333 return self.handle_close()
336 return self.handle_close()
340 return self.handle_close()
398 self.handle_close()
Dtest_ssl.py2483 return self.handle_close()
2488 return self.handle_close()
2504 def handle_close(self): member in AsyncoreEchoServer.EchoServer.ConnectionHandler
Dtest_os.py2664 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.c2812 PyObject *handle_close; member
3294 self->handle_comment = self->handle_pi = self->handle_close = NULL; in xmlparser_new()
3389 self->handle_close = PyObject_GetAttrString(target, "close"); in _elementtree_XMLParser___init___impl()
3390 if (ignore_attribute_error(self->handle_close)) { in _elementtree_XMLParser___init___impl()
3438 Py_VISIT(self->handle_close); in xmlparser_gc_traverse()
3461 Py_CLEAR(self->handle_close); in xmlparser_gc_clear()
3528 else if (self->handle_close) { in _elementtree_XMLParser_close_impl()
3530 return _PyObject_CallNoArg(self->handle_close); in _elementtree_XMLParser_close_impl()
/external/openssh/
Dsftp-server.c420 handle_close(int handle) in handle_close() function
727 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,