HomeSort by relevance Sort by last modified time
    Searched defs:closing (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
contextlib.py 7 __all__ = ["contextmanager", "nested", "closing"]
132 class closing(object): class in inherits:object
137 with closing(<module>.open(<arguments>)) as f:
asyncore.py 226 closing = False variable in class:dispatcher
288 #self.log_info('closing channel %d:%s' % (fd, self))
491 'uncaptured python exception, closing channel %s (%s:%s %s)' % (
  /external/python/cpython2/Lib/
contextlib.py 7 __all__ = ["contextmanager", "nested", "closing"]
132 class closing(object): class in inherits:object
137 with closing(<module>.open(<arguments>)) as f:
asyncore.py 229 closing = False variable in class:dispatcher
291 #self.log_info('closing channel %d:%s' % (fd, self))
495 'uncaptured python exception, closing channel %s (%s:%s %s)' % (
  /prebuilts/gdb/darwin-x86/lib/python2.7/
contextlib.py 7 __all__ = ["contextmanager", "nested", "closing"]
132 class closing(object): class in inherits:object
137 with closing(<module>.open(<arguments>)) as f:
asyncore.py 229 closing = False variable in class:dispatcher
291 #self.log_info('closing channel %d:%s' % (fd, self))
495 'uncaptured python exception, closing channel %s (%s:%s %s)' % (
  /prebuilts/gdb/linux-x86/lib/python2.7/
contextlib.py 7 __all__ = ["contextmanager", "nested", "closing"]
132 class closing(object): class in inherits:object
137 with closing(<module>.open(<arguments>)) as f:
asyncore.py 229 closing = False variable in class:dispatcher
291 #self.log_info('closing channel %d:%s' % (fd, self))
495 'uncaptured python exception, closing channel %s (%s:%s %s)' % (
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
contextlib.py 7 __all__ = ["contextmanager", "nested", "closing"]
132 class closing(object): class in inherits:object
137 with closing(<module>.open(<arguments>)) as f:
asyncore.py 229 closing = False variable in class:dispatcher
291 #self.log_info('closing channel %d:%s' % (fd, self))
495 'uncaptured python exception, closing channel %s (%s:%s %s)' % (
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
contextlib.py 7 __all__ = ["contextmanager", "nested", "closing"]
132 class closing(object): class in inherits:object
137 with closing(<module>.open(<arguments>)) as f:
asyncore.py 229 closing = False variable in class:dispatcher
291 #self.log_info('closing channel %d:%s' % (fd, self))
495 'uncaptured python exception, closing channel %s (%s:%s %s)' % (
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
InputViewManager.java 65 public void closing(); method in interface:InputViewManager
  /system/core/adb/
socket.h 44 int closing = 0; member in struct:asocket
  /external/python/cpython3/Lib/
contextlib.py 7 __all__ = ["contextmanager", "closing", "AbstractContextManager",
163 class closing(AbstractContextManager): class in inherits:AbstractContextManager
168 with closing(<module>.open(<arguments>)) as f:
asyncore.py 216 closing = False variable in class:dispatcher
278 #self.log_info('closing channel %d:%s' % (fd, self))
469 'uncaptured python exception, closing channel %s (%s:%s %s)' % (
  /libcore/ojluni/src/main/java/java/net/
SocketOutputStream.java 167 private boolean closing = false; field in class:SocketOutputStream
170 if (closing)
172 closing = true;
178 closing = false;
SocketInputStream.java 276 private boolean closing = false; field in class:SocketInputStream
279 if (closing)
281 closing = true;
287 closing = false;
  /external/jmdns/src/javax/jmdns/impl/constants/
DNSState.java 57 CLOSING("closing", StateClass.closing),
64 probing, announcing, announced, canceling, canceled, closing, closed enum constant in enum:DNSState.StateClass
112 case CLOSING:
142 case CLOSING:
143 return CLOSING;
198 * Returns true, if this is a closing state.
200 * @return <code>true</code> if closing state, <code>false</code> otherwise
203 return _state == StateClass.closing;
    [all...]
  /external/webrtc/webrtc/libjingle/xmpp/
xmppengineimpl.cc 413 bool closing = (engine->state_ != state_ && local
415 bool flushing = closing || (engine->engine_entered_ == 0);
423 if (closing) {
  /libcore/ojluni/src/main/java/java/io/
PrintStream.java 353 private boolean closing = false; /* To avoid recursive closing */ field in class:PrintStream
367 * Closes the stream. This is done by flushing the stream and then closing
374 if (! closing) {
375 closing = true;
    [all...]
  /external/fio/
file.h 171 FILE_FLAG_FNS(closing); variable
  /external/pdfium/core/fxge/win32/
cfx_psrenderer.cpp 177 bool closing = pPathData->IsClosingFigure(i); local
189 if (closing)
201 if (closing)
  /system/core/adb/client/
usb_libusb.cpp 97 closing(false),
113 if (closing) {
116 closing = true;
137 std::atomic<bool> closing; member in struct:libusb::usb_handle
  /system/bt/btif/src/
btif_sock_rfc.cc 76 int closing : 1; member in struct:__anon1803
401 if (slot->f.server && !slot->f.closing && slot->rfc_handle) {
427 if (slot->rfc_handle && !slot->f.closing && !slot->f.server) {

Completed in 627 milliseconds

1 2 3 4