Searched defs:closed (Results 26 - 50 of 86) sorted by relevance

1234

/external/chromium_org/content/browser/shared_worker/
H A Dshared_worker_host.h89 bool closed() const { return closed_; } function in class:content::SharedWorkerHost
/external/chromium_org/third_party/WebKit/Source/core/streams/
H A DReadableStream.cpp43 return "closed";
93 exceptionState.throwTypeError("read is called while state is closed");
151 ScriptPromise ReadableStream::closed(ScriptState* scriptState) function in class:blink::ReadableStream
/external/clang/lib/Parse/
H A DParseInit.cpp457 bool closed = !T.consumeClose(); local
459 if (InitExprsOk && closed)
/external/guava/guava/src/com/google/common/collect/
H A DRanges.java36 * <dd>{@link #closed}
97 public static <C extends Comparable<?>> Range<C> closed(C lower, C upper) { method in class:Ranges
127 * upper}, where each endpoint may be either inclusive (closed) or exclusive
165 * either inclusive (closed) or exclusive (open).
197 * (closed) or exclusive (open), with no upper bound.
218 * the given value. The returned range is {@linkplain BoundType#CLOSED closed}
222 return closed(value, value);
228 * The returned range is {@linkplain BoundType#CLOSED closed} on both ends.
249 return closed(min, max);
/external/jmdns/src/javax/jmdns/impl/constants/
H A DDNSState.java61 CLOSED("closed", StateClass.closed);
64 probing, announcing, announced, canceling, canceled, closing, closed enum constant in enum:DNSState.StateClass
209 * @return <code>true</code> if closed state, <code>false</code> otherwise
212 return _state == StateClass.closed;
/external/okhttp/okio/src/main/java/okio/
H A DRealBufferedSink.java24 private boolean closed; field in class:RealBufferedSink
42 if (closed) throw new IllegalStateException("closed");
48 if (closed) throw new IllegalStateException("closed");
54 if (closed) throw new IllegalStateException("closed");
60 if (closed) throw new IllegalStateException("closed");
66 if (closed) thro
[all...]
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DSSLSocketImplTest.java621 private boolean closed; field in class:SSLSocketImplTest.Server
637 while (!closed) {
665 closed = true;
/external/chromium_org/net/http/
H A Dhttp_response_body_drainer_unittest.cc144 bool closed() const { return closed_; } function in class:net::__anon9306::MockHttpStream
/external/chromium_org/third_party/boringssl/src/crypto/bio/
H A Dpair.c69 int closed; /* valid iff peer != NULL */ member in struct:bio_bio_st
177 if (peer_b->closed) {
178 return 0; /* writer has closed, and no data is left */
252 if (b->closed) {
253 /* we already closed */
342 b1->closed = 0;
345 b2->closed = 0;
391 if (b->peer == NULL || b->closed) {
416 b->closed = 1;
465 ret = other_b->len == 0 && other_b->closed;
[all...]
/external/chromium_org/third_party/leveldatabase/src/table/
H A Dtable_builder.cc30 bool closed; // Either Finish() or Abandon() has been called. member in struct:leveldb::TableBuilder::Rep
55 closed(false),
71 assert(rep_->closed); // Catch errors where caller forgot to call Finish()
94 assert(!r->closed);
125 assert(!r->closed);
202 assert(!r->closed);
203 r->closed = true;
258 assert(!r->closed);
259 r->closed = true;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dvgu.c83 VGboolean closed)
115 if (closed) {
80 vguPolygon(VGPath path, const VGfloat * points, VGint count, VGboolean closed) argument
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dvgu.c83 VGboolean closed)
115 if (closed) {
80 vguPolygon(VGPath path, const VGfloat * points, VGint count, VGboolean closed) argument
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DSpdyTransport.java249 private boolean closed; field in class:SpdyTransport.SpdySource
268 if (closed) throw new IllegalStateException("closed");
293 if (closed) return;
299 closed = true;
H A DHttpConnection.java120 /** Returns true if this connection is closed. */
145 return false; // Stream is exhausted; socket is closed.
154 return false; // Couldn't read; socket is closed.
273 private boolean closed; field in class:HttpConnection.FixedLengthSink
285 if (closed) throw new IllegalStateException("closed");
296 if (closed) return; // Don't throw; this stream might have been closed on the caller's behalf.
301 if (closed) return;
302 closed
323 private boolean closed; field in class:HttpConnection.ChunkedSink
366 protected boolean closed; field in class:HttpConnection.AbstractSource
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DSpdyStream.java69 * The reason why this stream was abnormally closed. If there are multiple
110 if ((source.finished || source.closed)
111 && (sink.finished || sink.closed)
167 * Returns the reason why this stream was closed, or null if it closed
168 * normally or has not yet been closed.
241 return; // Already closed.
252 return; // Already closed.
257 /** Returns true if this stream was closed. */
349 /** True if the caller has closed thi
350 private boolean closed; field in class:SpdyStream.SpdyDataSource
513 private boolean closed; field in class:SpdyStream.SpdyDataSink
[all...]
H A DSpdy3.java298 private boolean closed; field in class:Spdy3.Writer
325 if (closed) throw new IOException("closed");
332 if (closed) throw new IOException("closed");
350 if (closed) throw new IOException("closed");
365 if (closed) throw new IOException("closed");
379 if (closed) thro
[all...]
H A DHttp20Draft09.java189 // TODO: checkState open or half-closed (local) or raise STREAM_CLOSED
296 private boolean closed; field in class:Http20Draft09.Writer
306 if (closed) throw new IOException("closed");
311 if (closed) throw new IOException("closed");
321 if (closed) throw new IOException("closed");
331 if (closed) throw new IOException("closed");
[all...]
/external/openssl/crypto/bio/
H A Dbss_bio.c133 int closed; /* valid iff peer != NULL */ member in struct:bio_bio_st
212 if (peer_b->closed)
213 return 0; /* writer has closed, and no data is left */
369 if (b->closed)
371 /* we already closed */
448 if (b->closed)
567 if (b->peer == NULL || b->closed)
591 b->closed = 1;
685 ret = other_b->len == 0 && other_b->closed;
745 b1->closed
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
H A DMediaKeySession.cpp243 // 2.3 Let the closed attribute be a new promise.
244 ASSERT(!closed(scriptState).isUndefinedOrNull());
278 ScriptPromise MediaKeySession::closed(ScriptState* scriptState) function in class:blink::MediaKeySession
415 // request has been processed, and the closed attribute promise is resolved
416 // when the session is closed. It must run the following steps:
488 // 3.2.2 If the previous step caused the session to be closed, run the
552 // Once closed, the session can no longer be the target of events from
556 // Resolve the closed promise.
621 // and we're not closed.
/external/libnfc-nci/src/nfa/include/
H A Dnfa_hci_api.h49 #define NFA_HCI_CLOSE_PIPE_EVT 0x07 /* Pipe is closed / could not close */
75 #define NFA_HCI_PIPE_CLOSED 0x00 /* Pipe is closed */
256 tNFA_HCI_CLOSE_PIPE closed; /* NFA_HCI_CLOSE_PIPE_EVT */ member in union:__anon24049
553 ** When the dynamic pipe is closed (or
/external/qemu/telephony/
H A Dsysdeps_posix.c90 char closed; member in struct:SysChannelRec_
113 channel->closed = 0;
238 assert( !channel->closed );
263 assert( !channel->closed );
292 channel->closed = 1;
296 if (!channel->closed) {
297 channel->closed = 1;
528 if (channel->closed) {
529 /* the channel was closed by a previous callback */
/external/qemu/hw/android/goldfish/
H A Dpipe.c140 char closed; member in struct:Pipe
237 qemu_put_byte(file, (int)pipe->closed);
281 pipe->closed = qemu_get_byte(file);
299 pipe->closed = 1;
984 /* If the pipe is closed by the host, return an error */
985 if (pipe != NULL && pipe->closed && command != PIPE_CMD_CLOSE) {
1308 if (pipe->closed != 0)
1376 D("%s: channel=0x%llx (closed=%d)", __FUNCTION__, (unsigned long long)pipe->channel, pipe->closed);
1378 if (!pipe->closed) {
[all...]
/external/chromium_org/net/socket/
H A Dclient_socket_pool_base.cc26 // disabled, sockets are closed next time a socket request is made.
383 bool closed = CloseOneIdleSocketExceptInGroup(group); local
384 if (preconnecting && !closed)
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DLocalDOMWindow.cpp1190 bool LocalDOMWindow::closed() const function in class:blink::LocalDOMWindow
/external/chromium_org/third_party/icu/source/i18n/
H A Ducol_elm.cpp1618 UnicodeSet *closed; member in struct:enumStruct
1674 if(((enumStruct *)context)->closed != NULL) {
1675 ((enumStruct *)context)->closed->add(u32);
1965 UnicodeSet *closed,
1969 context.closed = closed;
1963 uprv_uca_canonicalClosure(tempUCATable *t, UColTokenParser *src, UnicodeSet *closed, UErrorCode *status) argument

Completed in 4339 milliseconds

1234