HomeSort by relevance Sort by last modified time
    Searched full:ready (Results 176 - 200 of 4121) sorted by null

1 2 3 4 5 6 78 91011>>

  /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_org/chrome/browser/extensions/api/declarative/
rules_cache_delegate.cc 85 system.ready().Post(
89 system.ready().Post(FROM_HERE,
131 // extension service should be ready.
159 ExtensionSystem::Get(profile_)->ready().Post(
192 ExtensionSystem::Get(profile_)->ready().Post(
  /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);
  /system/core/adb/
sockets.c 155 D( "LS(%d): not ready, errno=%d: %s\n", s->id, errno, strerror(errno) );
157 return 1; /* not ready (error) */
165 return 0; /* ready for more data */
180 return 1; /* not ready (backlog) */
185 /* far side is ready for data, pay attention to
188 // D("LS(%d): ready()\n", s->id);
316 s->peer->ready(s->peer);
369 ** be enabled again when we get a call to ready()
399 s->ready = local_socket_ready;
530 s->ready = remote_socket_ready
    [all...]
  /external/chromium/chrome/browser/resources/
translate.js 44 * Whether the library is ready.
87 * @return {boolean} False if the translate library was not ready, in which
119 // Flash. Let's wait until it is ready.
  /external/chromium_org/chrome/browser/extensions/
user_script_listener.h 32 // script, and if so, whether that user script is ready; if not, we delay the
81 // True if all user scripts from all profiles are ready.
90 // Per-profile bookkeeping so we know when all user scripts are ready.
  /external/chromium_org/chrome/browser/sync/glue/
frontend_data_type_controller.h 75 // True - if models are ready and association can proceed.
76 // False - if models are not ready. Associate() should be called when the
77 // models are ready. Refer to Start(_) implementation.
ui_data_type_controller.h 68 // True - if models are ready and association can proceed.
69 // False - if models are not ready. Associate() should be called when the
70 // models are ready.
  /external/chromium_org/chrome/browser/ui/app_list/
app_list_syncable_service.h 53 // Create an empty model. Then, if |extension_service| is non-NULL and ready,
54 // populate it. Otherwise populate the model once extensions become ready.
88 // Builds the model once ExtensionService is ready.
  /external/chromium_org/net/test/embedded_test_server/
http_request.h 59 ACCEPTED, // A request has been parsed and it is ready to be processed.
78 // ready to parse another request.
82 // STATE_ACCEPTED state. After calling it, the parser is ready to parse
  /external/chromium_org/net/test/spawned_test_server/
local_test_server.h 40 // Start the test server and block until it's ready. Returns true on success.
51 // // Wait for both servers to be ready.
59 // Block until ths test server is ready. Returns true on success. See
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
fakedatachannelprovider.h 105 void set_ready_to_send(bool ready) {
107 ready_to_send_ = ready;
108 if (ready) {
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
condrender.c 135 if (!q->Ready) {
142 if (!q->Ready)
144 return q->Ready ? (q->Result > 0) : GL_TRUE;
  /external/mesa3d/src/mesa/main/
condrender.c 135 if (!q->Ready) {
142 if (!q->Ready)
144 return q->Ready ? (q->Result > 0) : GL_TRUE;
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/os2/
SDL_syscdrom.c 62 /* Ready for MCI CDAudio Devices */
110 /* Return CDAudio System Dependent Device Name - Ready for MCI*/
116 /* Open CDAudio Device - Ready for MCI */
144 /* Get CD Table Of Contents - Ready for MCI */
209 /* Get CD-ROM status - Ready for MCI */
265 /* Start play - Ready for MCI */
307 /* Pause play - Ready for MCI */
317 /* Resume play - Ready for MCI */
327 /* Stop play - Ready for MCI */
352 /* Eject the CD-ROM - Ready for MCI *
    [all...]
  /frameworks/base/core/java/android/speech/
RecognitionListener.java 28 * Called when the endpointer is ready for the user to start speaking.
69 * Called when recognition results are ready.
81 * results are ready. This method may be called zero, one or multiple times for each call to
  /libcore/luni/src/test/java/libcore/java/io/
OldFilterReaderTest.java 63 public boolean ready() throws IOException { method in class:OldFilterReaderTest.MockReader
148 fr.ready();
149 assertTrue("ready() has not been called.", called);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.shared_future/
wait_for.pass.cpp 55 assert(f.wait_for(ms(300)) == std::future_status::ready);
71 assert(f.wait_for(ms(300)) == std::future_status::ready);
87 assert(f.wait_for(ms(300)) == std::future_status::ready);
wait_until.pass.cpp 55 assert(f.wait_until(Clock::now() + ms(300)) == std::future_status::ready);
71 assert(f.wait_until(Clock::now() + ms(300)) == std::future_status::ready);
87 assert(f.wait_until(Clock::now() + ms(300)) == std::future_status::ready);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.unique_future/
wait_for.pass.cpp 55 assert(f.wait_for(ms(300)) == std::future_status::ready);
71 assert(f.wait_for(ms(300)) == std::future_status::ready);
87 assert(f.wait_for(ms(300)) == std::future_status::ready);
wait_until.pass.cpp 55 assert(f.wait_until(Clock::now() + ms(300)) == std::future_status::ready);
71 assert(f.wait_until(Clock::now() + ms(300)) == std::future_status::ready);
87 assert(f.wait_until(Clock::now() + ms(300)) == std::future_status::ready);
  /external/chromium/chrome/browser/instant/
instant_loader_manager_unittest.cc 130 // transitioning from a ready non-instant to instant.
168 // Tests transitioning from a non-instant ready loader to an instant ready
193 // Tests transitioning between 3 instant loaders, all ready.
282 // to update and the pending loader is ready.
304 // This makes the non_instant_loader the current loader since it was ready.
  /external/chromium_org/google_apis/gcm/base/
socket_stream.cc 37 if (GetState() != EMPTY && GetState() != READY) {
47 DCHECK_EQ(GetState(), READY)
58 DCHECK(GetState() == READY || GetState() == EMPTY);
157 return READY;
250 DCHECK_EQ(GetState(), READY);
286 return READY;
  /external/chromium_org/media/base/
decryptor.h 34 kSuccess, // Decryption successfully completed. Decrypted buffer ready.
65 // the decrypted buffer is ready to be read.
164 // Callback to notify that a decryptor is ready.
168 // Calling this callback with a non-null callback registers decryptor ready
169 // notification. When the decryptor is ready, notification will be sent
172 // decryptor ready notification. Any previously provided callback will be
  /frameworks/base/services/java/com/android/server/
SystemServer.java 187 Slog.i(TAG, "Waiting for installd to be ready.");
387 reportWtf("making display ready", e);
560 reportWtf("making Account Manager Service ready", e);
567 reportWtf("making Content Service ready", e);
    [all...]

Completed in 1021 milliseconds

1 2 3 4 5 6 78 91011>>