HomeSort by relevance Sort by last modified time
    Searched refs:available (Results 151 - 175 of 715) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/qemu/distrib/sdl-1.2.15/src/audio/bsd/
SDL_bsdaudio.c 86 int available; local
88 available = 0;
91 available = 1;
94 return(available);
  /external/qemu/distrib/sdl-1.2.15/src/audio/dma/
SDL_dmaaudio.c 73 int available; local
76 available = 0;
86 available = 1;
90 return(available);
  /external/qemu/distrib/sdl-1.2.15/src/audio/dsp/
SDL_dspaudio.c 72 int available; local
74 available = 0;
77 available = 1;
80 return(available);
  /external/qemu/distrib/sdl-1.2.15/src/audio/paudio/
SDL_paudio.c 69 int available; local
71 available = 0;
74 available = 1;
77 return(available);
  /external/qemu/distrib/sdl-1.2.15/src/audio/sun/
SDL_sunaudio.c 64 int available; local
66 available = 0;
69 available = 1;
72 return(available);
  /external/webkit/Source/WebCore/storage/
AbstractDatabase.h 52 static void setIsAvailable(bool available);
  /frameworks/base/core/java/com/android/internal/util/
BitwiseInputStream.java 59 * Return the number of bit still available for reading.
61 public int available() { method in class:BitwiseInputStream
  /frameworks/ex/variablespeed/jni/
sola_time_scaler.h 121 // Returns the number of available output frames.
123 int available();
  /libcore/luni/src/main/java/java/io/
BufferedInputStream.java 101 * input. This method returns the number of bytes available in the buffer
102 * plus those available in the source stream, but see {@link InputStream#available} for
105 * @return the estimated number of bytes available
109 public synchronized int available() throws IOException { method in class:BufferedInputStream
114 return count - pos + localIn.available();
208 * reached. If the internal buffer does not contain any available bytes then
226 /* Are there buffered bytes available? */
284 /* There are bytes available in the buffer. */
288 if (copylength == byteCount || localIn.available() == 0)
    [all...]
BufferedReader.java 224 * character from the buffer. If there are no characters available in the
237 /* Are there buffered characters available? */
282 int available = end - pos; local
283 if (available > 0) {
284 int count = available >= outstanding ? outstanding : available;
340 * Returns the next line of text available from this reader. A line is
385 /* Are there buffered characters available? */
ByteArrayInputStream.java 45 * The total number of bytes initially available in the byte array
66 * number of bytes available set to {@code offset} + {@code length}.
73 * the number of bytes available for streaming.
88 public synchronized int available() { method in class:ByteArrayInputStream
169 // Are there any bytes available?
StringBufferInputStream.java 64 public synchronized int available() { method in class:StringBufferInputStream
  /libcore/luni/src/main/java/java/net/
SocketImpl.java 68 * Returns the available number of bytes which are readable from this socket
75 protected abstract int available() throws IOException; method in class:SocketImpl
  /external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/
InBandBytestreamSession.java 283 // if no data available and stream was closed return -1
309 // if no data available and stream was closed return -1
315 // if more bytes wanted than available return all available
339 // wait until data is available or stream is closed
391 /* throw no exception if there is data available, but not if close method was invoked */
671 int available = 0;
676 available = buffer.length - bufferPointer;
677 System.arraycopy(b, off, buffer, bufferPointer, available);
678 bufferPointer += available;
    [all...]
  /frameworks/base/core/java/android/os/storage/
StorageManager.java 86 * Next available nonce
91 public void onUsbMassStorageConnectionChanged(boolean available) {
94 mListeners.get(i).sendShareAvailabilityChanged(available);
231 public boolean available; field in class:StorageManager.UmsConnectionChangedStorageEvent
235 available = a;
271 mStorageEventListener.onUsbMassStorageConnectionChanged(ev.available);
286 void sendShareAvailabilityChanged(boolean available) {
287 UmsConnectionChangedStorageEvent e = new UmsConnectionChangedStorageEvent(available);
622 * Return the number of available bytes at which the given path is
639 * Return the number of available bytes at which the given path i
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ScheduledThreadPoolExecutor.java 793 * we are not guaranteed to have such indices available, in
834 private final Condition available = lock.newCondition(); field in class:ScheduledThreadPoolExecutor.DelayedWorkQueue
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/macrom/
SDL_romaudio.c 366 int available; local
370 available = 0;
375 available = 1;
381 available = 1;
385 return(available);
413 /* Check to make sure double-buffered audio is available */
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_inter_prediction.c 58 u32 available; member in struct:__anon19512
516 (!a[0].available || !a[1].available ||
526 if (!a[2].available)
601 if (!a[2].available)
639 a[1].available = HANTRO_TRUE;
643 /* c is not available */
708 if (!a[2].available)
742 if (!a[2].available)
750 a[0].available = HANTRO_TRUE
    [all...]
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
PduParser.java 239 while (keepParsing && (pduDataStream.available() > 0)) {
    [all...]
  /build/target/board/generic_x86/
BoardConfig.mk 34 # the GLES renderer disables itself if host GL acceleration isn't available.
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarEntryTest.java 136 while (in.available() > 0) {
159 while (in.available() > 0) {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
DataOutputStreamTest.java 157 int i, a = dis.available() / 2;
232 dis.available() == unihw.length() + 2);
  /external/apache-http/src/org/apache/http/util/
CharArrayBuffer.java 185 int available = this.buffer.length - this.len; local
186 if (required > available) {
  /external/chromium/third_party/libjingle/source/talk/examples/call/
status.h 73 bool available() const { return available_ ; } function in class:buzz::Status
153 if (!available()) {
169 result = "Available";
  /external/llvm/lib/CodeGen/
ExecutionDepsFix.cpp 12 // Some X86 SSE instructions like mov, and, or, xor are available in different
48 /// keep track of the fact that the register is now available in multiple
55 // Bitmask of available domains. For an open DomainValue, it is the still
57 // domains where the register is available for free.
69 // track of the domains where the registers are already available.
72 // Is domain available?
77 // Mark domain as available.
82 // Restrict to a single domain available.
87 // Return bitmask of domains that are available and in mask.
92 // First domain available
535 unsigned available = mask; local
    [all...]

Completed in 2370 milliseconds

1 2 3 4 5 67 8 91011>>