Searched refs:isClosed (Results 1 - 25 of 92) sorted by relevance

1234

/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DSFTPv3FileHandle.java18 protected boolean isClosed; field in class:SFTPv3FileHandle
42 public boolean isClosed() method in class:SFTPv3FileHandle
44 return isClosed;
H A DStreamGobbler.java114 private boolean isClosed = false; field in class:StreamGobbler
138 if (isClosed)
173 if (isClosed)
191 if (isClosed)
193 isClosed = true;
218 if (isClosed)
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
H A DChannelOutputStream.java20 boolean isClosed = false; field in class:ChannelOutputStream
40 if (isClosed == false)
42 isClosed = true;
50 if (isClosed)
59 if (isClosed)
H A DChannelInputStream.java20 boolean isClosed = false; field in class:ChannelInputStream
46 isClosed = true;
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DBackgroundHTMLInputStream.cpp81 bool isClosed = m_current.isClosed();
93 if (isClosed && !m_current.isClosed())
96 ASSERT(m_current.isClosed() == isClosed);
H A DHTMLInputStream.h87 return m_last->isClosed();
114 if (next.isClosed()) {
H A DInputStreamPreprocessor.h125 return source.isClosed() && source.length() == 1;
H A DBackgroundHTMLParser.cpp89 ASSERT(!m_input.current().isClosed());
134 ASSERT(!m_input.current().isClosed());
/external/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DAbstractOutputStream.java42 public boolean isClosed() { method in class:AbstractOutputStream
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DPipeline.java48 private boolean isClosed; field in class:Pipeline
132 if (this.isClosed)
143 if (this.isClosed)
153 this.isClosed = true;
163 // if (this.isClosed) return -1;
173 if (this.isClosed && this.buffList.isEmpty())
179 if (this.isClosed)
/external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/
H A DInBandBytestreamSession.java81 private boolean isClosed = false; field in class:InBandBytestreamSession
185 if (this.isClosed) {
203 if (this.inputStream.isClosed && this.outputStream.isClosed) {
204 this.isClosed = true;
247 private boolean isClosed = false; field in class:InBandBytestreamSession.IBBInputStream
344 if (isClosed && this.dataQueue.isEmpty()) {
392 if ((isClosed && this.dataQueue.isEmpty()) || closeInvoked) {
404 if (isClosed) {
417 if (isClosed) {
591 protected boolean isClosed = false; field in class:InBandBytestreamSession.IBBOutputStream
[all...]
/external/chromium_org/third_party/skia/src/pathops/
H A DSkPathWriter.h22 bool isClosed() const;
H A DSkPathOpsSimplify.cpp52 && !simple->isClosed()) {
54 SkASSERT(simple->isClosed());
67 } while (!simple->isClosed() && (!unsortable
69 if (current->activeWinding(index, endIndex) && !simple->isClosed()) {
116 && !simple->isClosed()) {
118 SkASSERT(simple->isClosed());
131 } while (!simple->isClosed() && (!unsortable || !current->done(SkMin32(start, end))));
132 if (!simple->isClosed()) {
/external/skia/src/pathops/
H A DSkPathWriter.h22 bool isClosed() const;
H A DSkPathOpsSimplify.cpp52 && !simple->isClosed()) {
54 SkASSERT(simple->isClosed());
67 } while (!simple->isClosed() && (!unsortable
69 if (current->activeWinding(index, endIndex) && !simple->isClosed()) {
116 && !simple->isClosed()) {
118 SkASSERT(simple->isClosed());
131 } while (!simple->isClosed() && (!unsortable || !current->done(SkMin32(start, end))));
132 if (!simple->isClosed()) {
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLMediaSource.h61 virtual bool isClosed() const = 0;
/external/chromium_org/third_party/skia/src/effects/
H A DSkDiscretePathEffect.cpp49 if (meas.isClosed()) {
65 if (meas.isClosed()) {
/external/jmdns/src/javax/jmdns/impl/
H A DSocketListener.java42 if (this._jmDNSImpl.isCanceling() || this._jmDNSImpl.isCanceled() || this._jmDNSImpl.isClosing() || this._jmDNSImpl.isClosed()) {
67 if (!this._jmDNSImpl.isCanceling() && !this._jmDNSImpl.isCanceled() && !this._jmDNSImpl.isClosing() && !this._jmDNSImpl.isClosed()) {
H A DDNSStatefulObject.java363 public boolean isClosed() { method in class:DNSStatefulObject.DefaultImplementation
364 return this._state.isClosed();
372 return this._state.isClosed() || this._state.isClosing();
539 public boolean isClosed(); method in interface:DNSStatefulObject
/external/skia/src/effects/
H A DSkDiscretePathEffect.cpp49 if (meas.isClosed()) {
65 if (meas.isClosed()) {
/external/chromium_org/third_party/WebKit/Source/modules/mediasource/
H A DWebKitMediaSource.cpp123 if (isClosed() || !m_sourceBuffers->length()) {
151 if (isClosed()) {
H A DMediaSourceBase.cpp97 return isClosed() ? std::numeric_limits<float>::quiet_NaN() : m_private->duration();
218 bool MediaSourceBase::isClosed() const function in class:WebCore::MediaSourceBase
233 ASSERT(isClosed());
257 if (!isClosed())
/external/chromium_org/third_party/skia/include/core/
H A DSkPathMeasure.h69 bool isClosed();
/external/skia/include/core/
H A DSkPathMeasure.h69 bool isClosed();
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DServerSocketTest.java639 * @tests java.net.ServerSocket#isClosed()
645 // validate isClosed returns expected values
647 .isClosed());
650 .isClosed());
655 .isClosed());
658 .isClosed());
662 .isClosed());
665 .isClosed());
669 .isClosed());
672 .isClosed());
[all...]

Completed in 3773 milliseconds

1234