HomeSort by relevance Sort by last modified time
    Searched defs:ready (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /bionic/libstdc++/src/
one_time_construction.cpp 49 const static int ready = 0x1; variable
65 const static int ready = letoh32(0x1); variable
75 // ready: untouched, return 0
85 if (gv->state != ready) // __cxa_guard_abort was called, let every thread try since there is no return code for this condition
94 // pending -> ready
95 // waiting -> ready, and wake
98 if (__bionic_cmpxchg(pending, ready, &gv->state) == 0) {
102 gv->state = ready;
  /external/guava/guava/src/com/google/common/io/
MultiReader.java 77 @Override public boolean ready() throws IOException { method in class:MultiReader
78 return (current != null) && current.ready();
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
GaneshRenderer.cpp 65 bool ready = tileQueue->readyForUpdate(); local
66 if (!ready) {
67 ALOGV("!ready");
  /libcore/luni/src/main/java/java/io/
FilterReader.java 144 * Indicates whether this reader is ready to be read without blocking. If
155 public boolean ready() throws IOException { method in class:FilterReader
157 return in.ready();
Reader.java 169 * Indicates whether this reader is ready to be read without blocking.
181 public boolean ready() throws IOException { method in class:Reader
PushbackReader.java 217 * Indicates whether this reader is ready to be read without blocking.
230 public boolean ready() throws IOException { method in class:PushbackReader
235 return (buf.length - pos > 0 || in.ready());
StringReader.java 174 * Indicates whether this reader is ready to be read without blocking. This
184 public boolean ready() throws IOException { method in class:StringReader
BufferedReader.java 297 if (outstanding == 0 || (outstanding < length && !in.ready())) {
427 * Indicates whether this reader is ready to be read without blocking.
438 public boolean ready() throws IOException { method in class:BufferedReader
441 return ((end - pos) > 0) || in.ready();
  /libcore/support/src/test/java/tests/support/
Support_ASimpleReader.java 48 public boolean ready() throws IOException { method in class:Support_ASimpleReader
Support_StringReader.java 172 * StringReader is ready to be read without blocking. If the result is
186 public boolean ready() throws IOException { method in class:Support_StringReader
  /packages/apps/LegacyCamera/src/com/android/camera/panorama/
MosaicRenderer.java 78 public static native void ready(); method in class:MosaicRenderer
  /packages/apps/Email/src/org/apache/commons/io/input/
ProxyReader.java 89 * Invokes the delegate's <code>ready()</code> method.
90 * @return true if the stream is ready to be read
93 public boolean ready() throws IOException { method in class:ProxyReader
94 return in.ready();
  /external/apache-harmony/support/src/test/java/tests/support/
Support_StringReader.java 172 * StringReader is ready to be read without blocking. If the result is
186 public boolean ready() throws IOException { method in class:Support_StringReader
  /external/bluetooth/glib/glib/
gpoll.c 101 * directly if you need to block until a file descriptor is ready, but
142 DWORD ready; local
154 ready = MsgWaitForMultipleObjectsEx (nhandles, handles, timeout,
157 if (ready == WAIT_FAILED)
168 ready = WAIT_FAILED;
172 ready = WAIT_TIMEOUT;
183 ready = WaitForMultipleObjectsEx (nhandles, handles, FALSE, timeout, TRUE);
184 if (ready == WAIT_FAILED)
194 ready,
195 (ready == WAIT_FAILED ? " (WAIT_FAILED)"
382 int ready; local
    [all...]
  /external/guava/guava-tests/test/com/google/common/eventbus/
ReentrantEventsTest.java 47 boolean ready = true; field in class:ReentrantEventsTest.ReentrantEventsHater
53 ready = false;
57 ready = true;
63 assertTrue("I received an event when I wasn't ready!", ready);
  /external/guava/guava-tests/test/com/google/common/io/
MultiReaderTest.java 62 assertTrue(joinedReader.ready());
66 assertFalse(joinedReader.ready());
  /frameworks/av/libvideoeditor/lvpp/
VideoEditorPlayer.h 40 virtual bool ready() const { return mTrack != NULL; } function in class:android::VideoEditorPlayer::VeAudioOutput
  /libcore/luni/src/test/java/libcore/java/io/
OldReaderTest.java 90 simple.ready();
OldFilterReaderTest.java 63 public boolean ready() throws IOException { method in class:OldFilterReaderTest.MockReader
148 fr.ready();
149 assertTrue("ready() has not been called.", called);
  /dalvik/vm/
Debugger.h 82 bool ready; member in struct:DebugInvokeReq
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
StringReaderTest.java 105 * @tests java.io.StringReader#ready()
108 // Test for method boolean java.io.StringReader.ready()
110 assertTrue("Steam not ready", sr.ready());
114 sr.ready();
  /external/chromium/chrome/browser/instant/
instant_loader.h 82 // Returns true if the preview TabContents is ready to be shown.
83 bool ready() const { return ready_; } function in class:InstantLoader
126 // delegate the preview is ready to be shown.
172 // Is the preview_contents ready to be shown?
  /external/chromium/third_party/libjingle/source/talk/base/
thread.h 98 bool *ready; member in struct:talk_base::_SendMessage
  /external/qemu/hw/
goldfish_tty.c 39 uint32_t ready; member in struct:tty_state
52 qemu_put_byte( f, s->ready );
66 s->ready = qemu_get_byte(f);
104 if(s->ready) {
107 s->ready = 0;
112 if(!s->ready) {
115 s->ready = 1;
158 if(s->data_count == 0 && s->ready)
193 if(s->data_count > 0 && s->ready)
  /external/valgrind/main/gdbserver_tests/
sleepers.c 43 static pthread_cond_t ready = PTHREAD_COND_INITIALIZER; variable
52 rc = pthread_cond_signal(&ready);
75 fprintf(stderr, "%s ready to sleep and/or burn\n", s->name);
96 // wait till a thread signals it is ready
104 rc = pthread_cond_wait(&ready, &ready_mutex);

Completed in 1251 milliseconds

1 2 3 4