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

1 2 3 4 5 6 7 8 91011>>

  /external/skia/tools/
retrieve_from_googlesource.py 11 from contextlib import closing
29 with closing(urllib2.urlopen(base64_url)) as f:
  /libcore/ojluni/src/main/java/java/net/
SocketOutputStream.java 159 private boolean closing = false; field in class:SocketOutputStream
162 if (closing)
164 closing = true;
170 closing = false;
SocketInputStream.java 270 private boolean closing = false; field in class:SocketInputStream
273 if (closing)
275 closing = true;
281 closing = false;
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
InputViewManager.java 65 public void closing(); method in interface:InputViewManager
  /external/webrtc/webrtc/modules/audio_coding/neteq/test/
RTPjitter.cc 115 goto closing;
126 goto closing;
135 goto closing;
158 goto closing;
169 goto closing;
206 closing:
  /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/autotest/client/site_tests/power_LoadTest/extension/
prevent_unload_popup.js 2 // popup that prevents closing the tab.
  /prebuilts/go/darwin-x86/src/net/
fd_poll_nacl.go 15 closing bool
23 pd.closing = true
31 if pd.closing {
42 if pd.closing {
file.go 20 // Closing c does not affect f, and closing f does not affect c.
32 // Closing ln does not affect f, and closing f does not affect ln.
44 // Closing c does not affect f, and closing f does not affect c.
  /prebuilts/go/linux-x86/src/net/
fd_poll_nacl.go 15 closing bool
23 pd.closing = true
31 if pd.closing {
42 if pd.closing {
file.go 20 // Closing c does not affect f, and closing f does not affect c.
32 // Closing ln does not affect f, and closing f does not affect ln.
44 // Closing c does not affect f, and closing f does not affect c.
  /external/nist-sip/java/gov/nist/core/
LexerCore.java 521 /** Parse a comment string cursor is at a ". Leave cursor at closing "
523 * closing quote.
548 * closing brace.
  /system/core/adb/
socket.h 47 int closing; member in struct:asocket
  /prebuilts/go/darwin-x86/src/runtime/
netpoll.go 52 // proceed w/o taking the lock. So closing, rg, rd, wg and wd are manipulated
58 closing bool
105 pd.closing = false
120 if !pd.closing {
124 throw("netpollClose: blocked write on closing descriptor")
127 throw("netpollClose: blocked read on closing descriptor")
179 // a pending async IO operation. Wait for ioready, ignore closing or timeouts.
187 if pd.closing {
257 if pd.closing {
258 throw("netpollUnblock: already closing")
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
netpoll.go 52 // proceed w/o taking the lock. So closing, rg, rd, wg and wd are manipulated
58 closing bool
105 pd.closing = false
120 if !pd.closing {
124 throw("netpollClose: blocked write on closing descriptor")
127 throw("netpollClose: blocked read on closing descriptor")
179 // a pending async IO operation. Wait for ioready, ignore closing or timeouts.
187 if pd.closing {
257 if pd.closing {
258 throw("netpollUnblock: already closing")
    [all...]
  /packages/apps/Camera2/src/com/android/camera/async/
ConcurrentBufferQueue.java 34 * closing the queue from either the producer or consumer side and enables
62 private Entry(T value, boolean closing) {
64 mClosing = closing;
  /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:
  /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:
  /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:
  /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:
  /prebuilts/go/darwin-x86/src/net/rpc/
client.go 50 closing bool // user has called Close
77 if client.shutdown || client.closing {
152 closing := client.closing
154 if closing {
166 if debugLog && err != io.EOF && !closing {
281 if client.closing {
285 client.closing = true
  /prebuilts/go/linux-x86/src/net/rpc/
client.go 50 closing bool // user has called Close
77 if client.shutdown || client.closing {
152 closing := client.closing
154 if closing {
166 if debugLog && err != io.EOF && !closing {
281 if client.closing {
285 client.closing = true
  /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:
  /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:
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/imap/
ImapResponseParser.java 396 private ImapList parseList(char opening, char closing) throws IOException, MessagingException {
399 parseElements(list, closing);
400 expect(closing);

Completed in 626 milliseconds

1 2 3 4 5 6 7 8 91011>>