Searched defs:close (Results 151 - 175 of 1738) sorted by relevance

1234567891011>>

/prebuilts/gdb/darwin-x86/lib/python2.7/test/
H A Dtest_contextlib.py229 def close(self): member in class:ClosingTestCase.test_closing.C
240 def close(self): member in class:ClosingTestCase.test_closing_error.C
H A Dtest_cpickle.py14 def close(self, f): member in class:cStringIOMixin
20 def close(self, f): member in class:BytesIOMixin
35 f.close()
38 def close(self, f): member in class:FileIOMixin
39 f.close()
62 self.close(f)
70 self.close(f)
97 self.close(f)
122 self.close(f)
130 self.close(
[all...]
H A Dtest_httplib.py41 def close(self): member in class:EPipeSocket
169 # if we have a length, the system knows when to close itself
296 resp.close()
311 resp.close()
429 self.conn.close()
431 self.serv.close()
459 self.serv.close()
475 httpConn.close()
487 httpConn.close()
493 httpConn.close()
[all...]
/prebuilts/gdb/darwin-x86/lib/python2.7/
H A Dwave.py8 The open file pointer must have methods read(), seek(), and close().
31 close() -- close the instance (make it unusable)
35 The close() method is called automatically when the class instance
42 close().
60 close() -- patch up the file header and close the
69 close() to patch up the sizes in the header.
70 The close() method is called automatically when the class instance
99 _file -- the open file with methods read(), close(), an
181 def close(self): member in class:Wave_read
437 def close(self): member in class:Wave_write
[all...]
/prebuilts/gdb/darwin-x86/lib/python2.7/wsgiref/
H A Dhandlers.py78 # Note to self: don't move the close()! Asynchronous servers shouldn't
79 # call close() from finish_response(), so if you close() anywhere but
92 self.close()
118 """Send any iterable data, then close self and the iterable
123 'self.close()' once the response is finished.
131 self.close()
252 def close(self): member in class:BaseHandler
258 if hasattr(self.result,'close'):
259 self.result.close()
[all...]
/prebuilts/gdb/darwin-x86/lib/python2.7/xml/sax/
H A Dexpatreader.py209 # except when invoked from close.
216 def close(self): member in class:ExpatParser
H A Dxmlreader.py99 finished with a call to close the reset method must be called to
107 interface using the feed, close and reset methods of the
125 self.close()
141 def close(self): member in class:IncrementalParser
151 close may raise SAXException."""
155 """This method is called after close has been called to reset
157 results of calling parse or feed after close without calling
/prebuilts/gdb/linux-x86/lib/python2.7/
H A DHTMLParser.py79 p.close()
116 def close(self): member in class:HTMLParser
H A Dgzip.py364 def close(self): member in class:GzipFile
376 self.myfileobj.close()
513 g.close()
515 f.close()
H A Dsgmllib.py50 # Usage: p = SGMLParser(); p.feed(data); ...; p.close().
106 def close(self): member in class:SGMLParser
511 def close(self): member in class:TestSGMLParser
512 SGMLParser.close(self)
544 f.close()
549 x.close()
H A Dsocket.py178 # to close the underlying socket object.
192 def close(self, _closedsocket=_closedsocket, member in class:_socketobject
199 close.__doc__ = _realsocket.close.__doc__
246 def __init__(self, sock, mode='rb', bufsize=-1, close=False):
270 self._close = close
276 def close(self): member in class:_fileobject
282 self._sock.close()
287 self.close()
289 # close() ma
[all...]
H A Dsunau.py41 The open file pointer must have methods read(), seek(), and close().
64 close() -- close the instance (make it unusable)
68 The close() method is called automatically when the class instance
75 close().
92 close() -- patch up the file header and close the
101 close() to patch up the sizes in the header.
102 The close() method is called automatically when the class instance
162 self.close()
278 def close(self): member in class:Au_read
399 def close(self): member in class:Au_write
[all...]
H A Dtempfile.py98 f.close()
203 _os.close(fd)
398 # NT provides delete-on-close as a primitive, so we don't need
409 def close(self): function in function:_TemporaryFileWrapper.__enter__
412 self.file.close()
417 self.close()
423 self.close()
437 'delete' -- whether the file is deleted on close (default True).
494 _os.close(fd)
540 self._file.close()
546 def close(self): member in class:SpooledTemporaryFile
[all...]
/prebuilts/gdb/linux-x86/lib/python2.7/bsddb/
H A D__init__.py222 self.close()
244 _DeadlockWrap(c.close)
249 _DeadlockWrap(c.close)
290 def close(self): member in class:_DBWithCursor
293 _DeadlockWrap(self.dbc.close)
296 v = _DeadlockWrap(self.db.close)
H A Ddbshelve.py93 db.close()
133 self.close()
187 def close(self, *args, **kwargs): member in class:DBShelf
188 self.db.close(*args, **kwargs)
280 # close, delete, fd, get_byteswapped, get_type, has_key,
294 self.close()
379 # close, count, delete, get_recno, join_item
H A Ddbtables.py199 def close(self) : member in class:bsdTableDB.__init__.cursor_py3k
200 return self._dbcursor.close()
252 def close (self) : member in class:bsdTableDB.__init__.db_py3k
253 return self._db.close()
275 self.close()
277 def close(self): member in class:bsdTableDB
279 self.db.close()
282 self.env.close()
303 cur.close()
306 cur.close()
[all...]
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
H A DDebugger.py71 def close(self, event=None): member in class:Debugger
76 self.stackviewer.close(); self.stackviewer = None
77 # Clean up pyshell if user clicked debugger control close widget.
81 # Now close the debugger control window....
91 top.wm_protocol("WM_DELETE_WINDOW", self.close)
92 self.top.bind("<Escape>", self.close)
249 sv.close()
271 lv.close()
283 gv.close()
480 def close(sel member in class:NamespaceViewer
[all...]
H A DIOBinding.py159 def close(self): member in class:IOBinding
253 f.close()
389 f.close()
492 os.close(tfd)
511 status = pipe.close()
/prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
H A Dconnection.py48 from multiprocessing.forking import duplicate, close namespace
151 def close(self): member in class:Listener
155 return self._listener.close()
193 s1.close()
194 s2.close()
260 self._socket.close()
277 s.close()
280 def close(self): member in class:SocketListener
281 self._socket.close()
310 s.close()
[all...]
H A Dforking.py42 __all__ = ['Popen', 'assert_spawning', 'exit', 'duplicate', 'close', 'ForkingPickler']
107 close = os.close variable
210 close = win32.CloseHandle variable
255 os.close(rfd)
264 close(rhandle)
280 to_child.close()
384 from_parent.close()
499 file.close()
H A Dpool.py93 inqueue._writer.close()
94 outqueue._reader.close()
442 def close(self): member in class:Pool
H A Dqueues.py157 def close(self): member in class:Queue
159 self._reader.close()
185 self._wlock, self._writer.close),
230 def _feed(buffer, notempty, send, writelock, close):
258 close()
/prebuilts/gdb/linux-x86/lib/python2.7/test/
H A Dtest_contextlib.py229 def close(self): member in class:ClosingTestCase.test_closing.C
240 def close(self): member in class:ClosingTestCase.test_closing_error.C
H A Dtest_cpickle.py14 def close(self, f): member in class:cStringIOMixin
20 def close(self, f): member in class:BytesIOMixin
35 f.close()
38 def close(self, f): member in class:FileIOMixin
39 f.close()
62 self.close(f)
70 self.close(f)
97 self.close(f)
122 self.close(f)
130 self.close(
[all...]
H A Dtest_httplib.py41 def close(self): member in class:EPipeSocket
169 # if we have a length, the system knows when to close itself
296 resp.close()
311 resp.close()
429 self.conn.close()
431 self.serv.close()
459 self.serv.close()
475 httpConn.close()
487 httpConn.close()
493 httpConn.close()
[all...]

Completed in 269 milliseconds

1234567891011>>