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

<<11121314151617181920>>

  /external/v8/test/cctest/
test-spaces.cc 194 while (new_space.Available() >= Page::kMaxNonCodeHeapObjectSize) {
226 while (s->Available() > 0) {
257 intptr_t available = lo->Available(); local
261 CHECK(lo->Available() < available);
  /external/webkit/Source/WebCore/websockets/
WebSocket.cpp 85 void WebSocket::setIsAvailable(bool available)
87 webSocketsAvailable = available;
  /frameworks/base/core/java/android/hardware/location/
GeofenceHardware.java 64 * available for monitoring geofences.
168 * <p> Some supported hardware monitoring systems might not be available
453 public void onMonitoringSystemChange(int monitoringType, boolean available,
456 if (c != null) c.onMonitoringSystemChange(monitoringType, available, location);
  /frameworks/base/core/java/android/os/
MemoryFile.java 263 public int available() throws IOException { method in class:MemoryFile.MemoryInputStream
304 count = Math.min(count, available());
  /libcore/luni/src/main/java/java/util/jar/
JarFile.java 130 public int available() throws IOException { method in class:JarFile.JarFileInputStream
134 return super.available();
  /libcore/luni/src/test/java/libcore/java/io/
OldFilterInputStreamTest.java 61 assertEquals("Test 1: Returned incorrect number of available bytes;",
62 testLength, is.available());
66 is.available();
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
RecognizerLogger.java 219 public int available() throws IOException {
220 return inputStream.available();
  /external/chromium/net/disk_cache/
backend_impl.cc 308 // number of available bytes.
309 int PreferedCacheSize(int64 available) {
310 // Return 80% of the available space if there is not enough space to use
312 if (available < kDefaultCacheSize * 10 / 8)
313 return static_cast<int32>(available * 8 / 10);
315 // Return kDefaultCacheSize if it uses 80% to 10% of the available space.
316 if (available < kDefaultCacheSize * 10)
319 // Return 10% of the available space if the target size
321 if (available < static_cast<int64>(kDefaultCacheSize) * 25)
322 return static_cast<int32>(available / 10)
1423 int64 available = 10 * 1024 * 1024; \/\/ 10 MB local
1425 int64 available = base::SysInfo::AmountOfFreeDiskSpace(path_); local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/sms/
BearerData.java     [all...]
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarFileTest.java 220 while (is.available() > 0) {
291 assertTrue(is.available() > 0);
365 assertTrue("Returned invalid stream", is.available() > 0);
540 while (in.available() > 0) {
621 assertTrue(is.available() > 0);
  /external/chromium/net/http/
http_stream_parser.cc 247 // request body isn't available yet (can't coalesce).
462 int available = read_buf_->offset() - read_buf_unused_offset_; local
463 if (available) {
464 CHECK_GT(available, 0);
465 int bytes_from_buffer = std::min(available, user_read_buf_len_);
470 if (bytes_from_buffer == available) {
  /external/chromium/third_party/libjingle/source/talk/base/
httpbase.cc 118 size_t available = len - *processed; local
119 if (available <= 0) {
122 if ((data_size_ != SIZE_UNKNOWN) && (available > data_size_)) {
123 available = data_size_;
126 ProcessResult result = ProcessData(buffer + *processed, available, read,
523 // The most frequent use of this function is response to new data available
541 // We're can't make progress until more data is available.
563 // protocol element (such as http header, or chunk size) is available,
687 // No data currently available to send.
  /external/libvpx/libwebm/
mkvparser.cpp 35 // long long total, available;
36 // status = pReader->Length(&total, &available);
38 // assert((total < 0) || (available <= total));
39 // assert(pos < available);
40 // assert((available - pos) >= 1); //assume here max u-int len is 8
67 // assert((available - pos) >= len);
106 long long total, available; local
108 int status = pReader->Length(&total, &available);
110 assert((total < 0) || (available <= total));
114 if (pos >= available)
372 long long total, available; local
418 long long total, available; local
497 long long total, available; local
737 long long total, available; local
862 long long total, available; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldSocketTest.java 611 assertEquals(0, theInput.available());
2196 protected int available() throws IOException { method in class:OldSocketTest.MockSocketImpl
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/
SDL_audio.c 37 /* Available audio drivers */
218 /* Wait for an audio buffer to become available */
330 if ( bootstrap[i]->available() ) {
352 if ( bootstrap[i]->available() ) {
360 if ( bootstrap[i]->available() ) {
369 SDL_SetError("No available audio device");
370 #if 0 /* Don't fail SDL_Init() if audio isn't available.
  /frameworks/base/obex/javax/obex/
ServerOperation.java 213 if (mPrivateInput.available() > 0) {
220 while ((!mGetOperation) && (!finalBitSet) && (mPrivateInput.available() == 0)) {
222 if (mPrivateInput.available() > 0) {
646 throw new IOException("no more input streams available, stream already opened");
650 throw new IOException("no output streams available ,request not finished");
  /frameworks/base/tests/CoreTests/android/core/
TestWebServer.java 230 // Socket timeout functionality is not available yet
441 log("Reading one line: started ="+readStarted+" avail="+is.available());
442 while ((!readStarted) || (is.available() > 0)) {
480 while (is.available() > 0) {
  /libcore/support/src/test/java/tests/support/
Support_TestWebServer.java 371 log("Reading one line: started ="+readStarted+" avail="+is.available());
373 while ((!readStarted) || (is.available() > 0)) {
410 while (is.available() > 0) {
  /dalvik/dexgen/src/com/android/dexgen/util/
ByteArray.java 329 public int available() { method in class:ByteArray.MyInputStream
  /dalvik/dx/src/com/android/dx/util/
ByteArray.java 329 public int available() { method in class:ByteArray.MyInputStream
  /development/apps/Development/src/com/android/development/
LogViewer.java 95 while (in.available() > 0) {
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
CipherInputStreamTest.java 208 * available() method testing. Tests that the method always return 0.
214 assertEquals("The returned by available() method value "
215 + "should be 0.", cis.available(), 0);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
PushbackInputStreamTest.java 107 * @tests java.io.PushbackInputStream#available()
110 // Test for method int java.io.PushbackInputStream.available()
112 assertTrue("Available returned incorrect number of bytes", pis
113 .available() == fileString.getBytes().length);
115 fail("Exception during available test: " + e.toString());
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ProcessBuilderTest.java 168 if (in.available() > 0) {
  /external/bison/djgpp/
djunpack.bat 74 echo FAIL: Sed is not available.
78 echo FAIL: DJTAR is not available or no fnchange.lst file in %1.

Completed in 542 milliseconds

<<11121314151617181920>>