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

1 2 34 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_json.py 4 the test_suite() function there returns a test suite that's ready to
  /external/chromium_org/components/policy/core/common/
forwarding_policy_provider.cc 35 return state_ == READY;
44 // This provider's registry is ready, meaning that it has all the initial
53 state_ = READY;
63 if (state_ != READY)
80 state_ = READY;
83 if (state_ == READY) {
87 // Always forward the Chrome policy, even if the components are not ready
  /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);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.state/
ready.pass.cpp 14 // bool ready() const;
24 assert(m.ready() == false);
26 assert(m.ready() == true);
34 assert(m.ready() == false);
36 assert(m.ready() == true);
  /external/chromium_org/content/common/
gamepad_seqlock_unittest.cc 29 base::subtle::Atomic32* ready) {
32 ready_ = ready;
65 base::AtomicRefCount ready = 0; local
74 threads[i].Init(&seqlock, &data, &ready);
88 base::AtomicRefCountIncN(&ready, kNumReaderThreads);
90 if (AtomicRefCountIsZero(&ready))
  /external/qemu/android/
looper-qemu.c 101 * users expect a single call with a mask of ready events.
131 unsigned ready; member in struct:QLoopIo
149 io->ready = 0;
164 if (io->ready != 0) {
166 io->ready = 0;
173 if (io->ready == 0) {
176 io->ready |= flag;
202 if (io->ready && (io->ready & wanted) == 0) {
245 if (io->ready)
356 unsigned ready; local
    [all...]
  /libcore/luni/src/main/java/java/nio/channels/
Selector.java 34 * selector are checked to see whether they are ready for operation according to
96 * Detects if any of the registered channels is ready for I/O operations
98 * return until at least one channel is ready, {@link #wakeup()} is
101 * @return the number of channels that are ready for operation.
110 * Detects if any of the registered channels is ready for I/O operations
112 * return until at least one channel is ready, {@link #wakeup()} is invoked,
118 * if no channels get ready.
119 * @return the number of channels that are ready for operation.
130 * Gets the selection keys whose channels are ready for operation. The set
134 * @return the selection keys whose channels are ready for operation
    [all...]
SelectionKey.java 30 * <h4>Ready set</h4>
31 * The ready set is an operation set that shows the operations that a
32 * {@code channel} is ready to execute.
139 * operation and is ready to accept new connections. A call to this method
143 * and is ready to accept new connections, {@code false} otherwise.
153 * operation and is ready to connect. A call to this method is equal to
157 * operation and is ready to connect, {@code false} otherwise.
167 * and is ready to read. A call to this method is equal to executing
171 * and is ready to read, {@code false} otherwise.
190 * and is ready to write. A call to this method is equal to executin
    [all...]
  /bionic/libstdc++/src/
one_time_construction.cpp 47 const static int ready = 0x1; variable
63 const static int ready = letoh32(0x1); variable
73 // ready: untouched, return 0
83 if (gv->state != ready) // __cxa_guard_abort was called, let every thread try since there is no return code for this condition
92 // pending -> ready
93 // waiting -> ready, and wake
96 if (__bionic_cmpxchg(pending, ready, &gv->state) == 0) {
100 gv->state = ready;
  /external/valgrind/main/gdbserver_tests/
mcinfcallRU.stdinB.gdb 6 # We will interrupt in a few seconds (be sure the main task is ready).
7 # Once it is ready, we still have to wait to be sure it is running.
  /external/wpa_supplicant_8/src/wps/
httpread.h 15 HTTPREAD_EVENT_FILE_READY = 1, /* including reply ready */
78 /* httpread_hdr_type_get -- When file is ready, returns header type.
83 /* httpread_uri_get -- When file is ready, uri_get returns (translated) URI
88 /* httpread_reply_code_get -- When reply is ready, returns reply code */
92 /* httpread_length_get -- When file is ready, returns file length. */
95 /* httpread_data_get -- When file is ready, returns file content
101 /* httpread_hdr_get -- When file is ready, returns header content
107 /* httpread_hdr_line_get -- When file is ready, returns pointer
  /external/chromium_org/content/test/data/indexeddb/
force_close_event.js 16 document.title = 'connection ready';
  /packages/apps/Calendar/src/com/android/calendar/
AnalyticsLogger.java 14 * @return true, if analytics logging is ready to be use.
  /system/vold/
Xwarp.cpp 33 const char *Xwarp::XWARP_READY = "/sys/fs/yaffs/mtd3/xwarp-ready";
44 int Xwarp::status(bool *ready, unsigned *mirrorPos, unsigned *maxSize) {
47 *ready = false;
54 fscanf(fp, "%d", (int *) ready);
  /external/chromium_org/chrome/browser/resources/chromeos/
cryptohome.html 21 <td id="tpm-is-ready"></td>
37 <td id="pkcs11-is-tpm-token-ready"></td>
44 <td id="is-tpm-token-ready"></td>
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
NowOrLater.java 19 * Interface for an object that may be constructed asynchronously. In cases when the object is ready
26 * Indicates if the object is ready (or constructible synchronously).
37 * Request the object asynchronously. This can be called even if the object is ready now, in
  /external/chromium_org/content/browser/device_orientation/
data_fetcher_impl_android.cc 176 // as ready to read, as it will not change anyway.
217 void DataFetcherImplAndroid::SetMotionBufferReadyStatus(bool ready) {
219 device_motion_buffer_->data.allAvailableSensorsAreActive = ready;
221 is_motion_buffer_ready_ = ready;
232 void DataFetcherImplAndroid::SetOrientationBufferReadyStatus(bool ready) {
234 device_orientation_buffer_->data.absolute = ready;
235 device_orientation_buffer_->data.hasAbsolute = ready;
236 device_orientation_buffer_->data.allAvailableSensorsAreActive = ready;
238 is_orientation_buffer_ready_ = ready;
252 // If Start() was unsuccessful then set the buffer ready flag to tru
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/obsolete/
probslet.h 78 ** The call returns as soon as I/O is ready on one or more of the underlying
80 ** number of ready descriptors is returned unless a timeout occurs in which case
82 ** subsets consisting of those descriptors that are ready for the requested condition.
83 ** The total number of ready descriptors in all the sets is the return value.
92 ** A set describing the io descriptors for which ready for reading
96 ** A set describing the io descriptors for which ready for writing
107 ** Amount of time the call will block waiting for I/O to become ready.
108 ** If this time expires without any I/O becoming ready, the result will
113 ** A set describing the io descriptors which are ready for reading.
116 ** A set describing the io descriptors which are ready for writing
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldCharArrayReaderTest.java 37 assertTrue("Failed to create reader", cr.ready());
39 fail("Exception determining ready state : " + e.getMessage());
73 assertTrue("Test 5: Failed to create reader", cr.ready());
192 // Test for method boolean java.io.CharArrayReader.ready()
196 assertTrue("ready returned false", cr.ready());
198 assertTrue("ready returned true", !cr.ready());
201 cr.ready();
210 cr.ready();
    [all...]
  /external/chromium_org/sync/notifier/
sync_invalidation_listener_unittest.cc 555 listener_.Ready(fake_invalidation_client_);
582 listener_.Ready(fake_invalidation_client_);
651 // With IDs already registered, enable notifications then ready the
661 listener_.Ready(fake_invalidation_client_);
666 // With IDs already registered, ready the client then enable
672 listener_.Ready(fake_invalidation_client_);
682 // ready the client. The IDs should be registered only after the
697 listener_.Ready(fake_invalidation_client_);
702 // Unregister the IDs, enable notifications, ready the client, then
714 listener_.Ready(fake_invalidation_client_)
    [all...]
  /external/chromium/chrome/browser/instant/
instant_loader_manager.cc 54 if (loader->ready()) {
55 // The loader is ready, make it the current loader no matter what.
59 // The loader isn't ready make it the current only if the current isn't
60 // ready. If the current is ready, then stop the current and make the new
62 if (!current_loader_ || !current_loader_->ready()) {
  /external/chromium_org/third_party/skia/include/images/
SkPageFlipper.h 17 you're ready to "flip" pages (i.e. draw into the one you've been
42 /** When you're ready to write to the back page, call update. The returned
49 back inval region is ready to receive new inval calls.
  /external/chromium_org/tools/json_schema_compiler/test/
simple_api.json 131 "description": "Fired when an integer is ready.",
142 "description": "Fired when a string is ready.",
153 "description": "Fired when a TestType is ready.",
  /external/guava/guava/src/com/google/common/base/
AbstractIterator.java 37 READY, NOT_READY, DONE, FAILED,
55 case READY:
66 state = State.READY;
  /external/skia/include/images/
SkPageFlipper.h 17 you're ready to "flip" pages (i.e. draw into the one you've been
42 /** When you're ready to write to the back page, call update. The returned
49 back inval region is ready to receive new inval calls.

Completed in 2027 milliseconds

1 2 34 5 6 7 8 91011>>