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

1 2 3 4 5 6 7 8 91011>>

  /libcore/crypto/src/main/java/org/conscrypt/
SSLEngineDataStream.java 37 private int available; field in class:SSLEngineDataStream
47 this.available = 0;
53 available += srcs[i].remaining();
57 public int available() { method in class:SSLEngineDataStream
58 return available;
62 return available > 0;
69 int len = (length < available) ? length : available;
70 available -= len;
SSLStreamedInput.java 36 public int available() throws IOException { method in class:SSLStreamedInput
37 return in.available();
  /external/arduino/hardware/arduino/cores/arduino/
Stream.h 29 virtual int available() = 0;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
RenderingRequestCaller.java 20 public void available(RenderingRequest request); method in interface:RenderingRequestCaller
  /libcore/luni/src/main/java/java/io/
BufferedWriter.java 195 int available = this.buf.length - pos; local
196 if (count < available) {
197 available = count;
199 if (available > 0) {
200 System.arraycopy(buffer, offset, this.buf, pos, available);
201 pos += available;
206 if (count > available) {
207 offset += available;
208 available = count - available;
279 int available = buf.length - pos; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/
CipherInputStream.java 70 int available = super.available(); local
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, buf, 0)
185 int available = maxBuf - bufOff; local
212 int available = maxBuf - bufOff; local
228 public int available() method in class:CipherInputStream
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/output/
ThreadLocalOutputBufferProvider.java 25 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);
  /frameworks/base/core/java/android/hardware/location/
GeofenceHardwareMonitorCallback.java 32 * @param available Indicates whether the system is currenty available or not.
35 public void onMonitoringSystemChange(int monitoringType, boolean available, Location location) {
IGeofenceHardwareMonitorCallback.aidl 23 void onMonitoringSystemChange(int monitoringType, boolean available, in Location location);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
BitmapCaller.java 22 public void available(Bitmap bmap); method in interface:BitmapCaller
  /external/clang/test/Modules/
submodules-preprocess.cpp 8 # error HAVE_VECTOR macro is not available (but should be)
12 # error HAVE_TYPE_TRAITS_MAP macro is available (but shouldn't be)
16 # error HAVE_HASH_MAP macro is available (but shouldn't be)
22 # error HAVE_VECTOR macro is not available (but should be)
26 # error HAVE_TYPE_TRAITS_MAP macro is not available (but should be)
30 # error HAVE_HASH_MAP macro is available (but shouldn't be)
38 # error HAVE_VECTOR macro is not available (but should be)
42 # error HAVE_TYPE_TRAITS_MAP macro is not available (but should be)
46 # error HAVE_HASH_MAP macro is available (but shouldn't be)
52 # error HAVE_VECTOR macro is not available (but should be
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
CharCache.java 33 int available = cache.length - pos; local
34 int toWrite = chars.length < available ? chars.length : available;
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
Connector.java 60 * 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
  /libcore/support/src/test/java/tests/support/
Support_ASimpleReader.java 60 int available = len - pos; local
61 if (available > 0) {
62 int readable = (available < count ? available : count);
  /external/chromium_org/third_party/icu/source/common/
bytestream.cpp 43 int32_t available = capacity_ - size_; local
44 if (n > available) {
45 n = available;
63 int32_t available = capacity_ - size_; local
64 if (available >= min_capacity) {
65 *result_capacity = available;
  /external/icu4c/common/
bytestream.cpp 47 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;
  /frameworks/av/media/libstagefright/
SkipCutBuffer.cpp 106 size_t available = mCapacity - sizeused - 32; local
107 if (available < num) {
108 int32_t newcapacity = mCapacity + (num - available);
134 int32_t available = (mWriteHead - mReadHead); local
135 if (available < 0) available += mCapacity;
137 available -= mBackPadding;
138 if (available <=0) {
141 if (available < int32_t(num)) {
142 num = available;
163 int32_t available = (mWriteHead - mReadHead); local
    [all...]
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
DeflaterInputStreamTest.java 36 * @tests DeflaterInputStream#available()
41 assertEquals(1, dis.available());
43 assertEquals(1, dis.available());
45 assertEquals(1, dis.available());
47 assertEquals(0, dis.available());
50 dis.available();
63 assertEquals(1, dis.available());
66 dis.available();
109 assertEquals(1, dis.available());
111 assertEquals(1, dis.available());
    [all...]
  /external/speex/libspeex/
buffer.c 48 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, 0, st->size-st->available)
    [all...]
  /external/chromium_org/gpu/command_buffer/tests/
gl_query_unittests.cc 61 GLuint available = 0; local
77 available = 0;
78 glGetQueryObjectuivEXT(query, GL_QUERY_RESULT_AVAILABLE_EXT, &available);
79 EXPECT_TRUE(available);
93 available = 0;
94 glGetQueryObjectuivEXT(query, GL_QUERY_RESULT_AVAILABLE_EXT, &available);
95 EXPECT_TRUE(available);
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLStreamedInputTest.java 38 assertEquals(bis.available(), sslsi.available());
  /external/chromium_org/chrome/browser/extensions/
requirements_checker.h 39 void SetWebGLAvailability(bool available);
40 void SetCSS3DAvailability(bool available);
  /frameworks/base/core/java/android/bluetooth/
BluetoothInputStream.java 37 * Return number of bytes available before this stream will block.
39 public int available() throws IOException { method in class:BluetoothInputStream
40 return mSocket.available();
  /external/ganymed-ssh2/examples/
SingleThreadStdoutStderr.java 63 if ((stdout.available() == 0) && (stderr.available() == 0))
65 /* Even though currently there is no data available, it may be that new data arrives
108 while (stdout.available() > 0)
115 while (stderr.available() > 0)
  /external/valgrind/main/drd/tests/
sem_as_mutex3.stderr.exp 7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)

Completed in 890 milliseconds

1 2 3 4 5 6 7 8 91011>>