Searched defs:available (Results 1 - 25 of 137) sorted by relevance

123456

/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
H A DConnector.java60 * Returns true if there is currently data available for
65 public boolean available(); method in interface:Connector
69 * there is no data available. The buffer may only be valid
/external/skia/bench/
H A DBenchGpuTimer_gl.cpp52 GrGLint available = 0; local
53 while (!available) {
56 &available));
/external/apache-http/src/org/apache/http/impl/io/
H A DIdentityInputStream.java62 public int available() throws IOException { method in class:IdentityInputStream
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
H A DChannelInputStream.java31 public int available() throws IOException method in class:ChannelInputStream
/external/jsilver/src/com/google/clearsilver/jsilver/output/
H A DThreadLocalOutputBufferProvider.java25 private final ThreadLocal<Boolean> available; field in class:ThreadLocalOutputBufferProvider
33 available = new ThreadLocal<Boolean>() {
42 if (!available.get()) {
46 available.set(false);
57 available.set(true);
/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DUnknownLengthHttpInputStream.java49 @Override public int available() throws IOException { method in class:UnknownLengthHttpInputStream
51 return in == null ? 0 : in.available();
/external/emma/core/java12/com/vladium/util/
H A DByteArrayIStream.java3 * This program and the accompanying materials are made available under
5 * and is available at http://www.eclipse.org/legal/cpl-v10.html
79 public final int available () method in class:ByteArrayIStream
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DStreamGobbler.java169 public int available() throws IOException method in class:StreamGobbler
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/
H A DSimpleDERReader.java68 public int available() method in class:SimpleDERReader
103 if ((len < 0) || len > available())
120 if ((len < 0) || len > available())
137 if ((len < 0) || len > available())
152 if ((len < 0) || len > available())
/external/guava/guava/src/com/google/common/io/
H A DLimitInputStream.java51 @Override public int available() throws IOException { method in class:LimitInputStream
52 return (int) Math.min(in.available(), left);
H A DMultiInputStream.java67 @Override public int available() throws IOException { method in class:MultiInputStream
71 return in.available();
/external/icu4c/common/
H A Dbytestream.cpp47 int32_t available = capacity_ - size_; local
48 if (n > available) {
49 n = available;
67 int32_t available = capacity_ - size_; local
68 if (available >= min_capacity) {
69 *result_capacity = available;
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/tcp/
H A DSocketConnector.java105 public boolean available() method in class:SocketConnector
109 return in.available() > 0;
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/udp/
H A DUdpConnector.java58 * In order to provide proper available() checking, we
105 public boolean available() method in class:UdpConnector
/external/speex/libspeex/
H A Dbuffer.c48 int available; member in struct:SpeexBuffer_
58 st->available = 0;
88 st->available += len;
89 if (st->available > st->size)
91 st->available = st->size;
120 st->available += len;
121 if (st->available > st->size)
123 st->available = st->size;
136 if (len > st->available)
138 SPEEX_MEMSET(data+st->available,
[all...]
/external/srec/shared/src/
H A DCircularBuffer.c113 size_t available = buffer->capacity - buffer->size; local
118 if (available < bufSize) /* We need to force an error to be logged here */
120 /* bufSize = available; Throwing data on the floor with no notice is asking for trouble */
151 size_t available = buffer->capacity - buffer->size; local
153 if (available < amount)
154 amount = available;
/external/apache-http/src/org/apache/http/conn/
H A DEofSensorInputStream.java191 public int available() throws IOException { method in class:EofSensorInputStream
196 a = wrappedStream.available();
197 // no checkEOF() here, available() can't trigger EOF
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/
H A DCipherInputStream.java70 int available = super.available();
74 if (available <= 0)
76 available = 1;
79 if (available > inBuf.length)
81 available = super.read(inBuf, 0, inBuf.length);
85 available = super.read(inBuf, 0, available);
88 if (available < 0)
128 maxBuf = bufferedBlockCipher.processBytes(inBuf, 0, available, bu
228 public int available() method in class:CipherInputStream
[all...]
/external/chromium/base/
H A Dsync_socket_win.cc144 DWORD available = 0; local
145 PeekNamedPipe(handle_, NULL, 0, NULL, &available, NULL);
146 return available;
H A Dsys_info_win.cc39 ULARGE_INTEGER available, total, free; local
40 if (!GetDiskFreeSpaceExW(path.value().c_str(), &available, &total, &free)) {
43 int64 rv = static_cast<int64>(available.QuadPart);
/external/chromium/chrome/browser/diagnostics/
H A Ddiagnostics_model_unittest.cc90 int available = model_->GetTestAvailableCount(); local
91 EXPECT_EQ(kDiagnosticsTestCount, available);
/external/icu4c/io/
H A Duprintf.h72 int32_t available;/* Number of codeunits available to write to */ member in struct:u_localized_print_string
86 * to the buffer when space is available. It's done this way because
/external/javasqlite/src/main/java/SQLite/
H A DBlob.java34 * Return number of available bytes for reading.
35 * @return available input bytes
38 public int available() throws IOException { method in class:BlobR
/external/objenesis/main/src/org/objenesis/instantiator/basic/
H A DObjectInputStreamInstantiator.java128 public int available() throws IOException { method in class:ObjectInputStreamInstantiator.MockStream
/external/qemu/distrib/sdl-1.2.15/src/audio/bsd/
H A DSDL_bsdaudio.c86 int available; local
88 available = 0;
91 available = 1;
94 return(available);

Completed in 597 milliseconds

123456