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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /libcore/luni/src/main/java/java/nio/channels/
Selector.java 33 * 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.
140 * operation and is ready to accept new connections. A call to this method
144 * and is ready to accept new connections, {@code false} otherwise.
154 * operation and is ready to connect. A call to this method is equal to
158 * operation and is ready to connect, {@code false} otherwise.
168 * and is ready to read. A call to this method is equal to executing
172 * and is ready to read, {@code false} otherwise.
191 * and is ready to write. A call to this method is equal to executin
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
httpread.h 21 HTTPREAD_EVENT_FILE_READY = 1, /* including reply ready */
84 /* httpread_hdr_type_get -- When file is ready, returns header type.
89 /* httpread_uri_get -- When file is ready, uri_get returns (translated) URI
94 /* httpread_reply_code_get -- When reply is ready, returns reply code */
98 /* httpread_length_get -- When file is ready, returns file length. */
101 /* httpread_data_get -- When file is ready, returns file content
107 /* httpread_hdr_get -- When file is ready, returns header content
113 /* httpread_hdr_line_get -- When file is ready, returns pointer
  /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);
Xwarp.h 31 static int status(bool *ready, unsigned *mirrorPos, unsigned *maxSize);
  /libcore/luni/src/test/java/tests/api/java/io/
CharArrayReaderTest.java 49 assertTrue("Failed to create reader", cr.ready());
51 fail("Exception determining ready state : " + e.getMessage());
90 assertTrue("Test 5: Failed to create reader", cr.ready());
241 * @tests java.io.CharArrayReader#ready()
245 notes = "Verifies ready() method.",
246 method = "ready",
250 // Test for method boolean java.io.CharArrayReader.ready()
254 assertTrue("ready returned false", cr.ready());
256 assertTrue("ready returned true", !cr.ready())
    [all...]
  /bionic/libc/arch-sh/syscalls/
__llseek.S 11 /* get ready for additonal arg */
__pread64.S 11 /* get ready for additonal arg */
__pwrite64.S 11 /* get ready for additonal arg */
__sys_clone.S 11 /* get ready for additonal arg */
__waitid.S 11 /* get ready for additonal arg */
fchownat.S 11 /* get ready for additonal arg */
mount.S 11 /* get ready for additonal arg */
prctl.S 11 /* get ready for additonal arg */
select.S 11 /* get ready for additonal arg */
__mmap2.S 11 /* get ready for additonal arg */
futex.S 11 /* get ready for additonal arg */
  /external/qemu/hw/
goldfish_tty.c 35 uint32_t ready; member in struct:tty_state
48 qemu_put_byte( f, s->ready );
62 s->ready = qemu_get_byte(f);
100 if(s->ready) {
103 s->ready = 0;
108 if(!s->ready) {
111 s->ready = 1;
146 if(s->data_count == 0 && s->ready)
181 if(s->data_count > 0 && s->ready)
  /external/qemu/
qemu_socket.h 9 /* New, ipv6-ready socket helper functions, see qemu-sockets.c */
  /external/dropbear/libtomcrypt/testprof/
cipher_hash_test.c 27 DO(prng_descriptor[x].ready(&nprng));
32 DO(prng_descriptor[x].ready(&nprng));
  /external/chromium/net/socket_stream/
socket_stream_throttle.h 26 // |callback| will be called when it's ready to open connection.
37 // case, |callback| will be called when it's ready to resume running.
48 // case, |callback| will be called when it's ready to resume running.
  /external/skia/include/images/
SkPageFlipper.h 24 you're ready to "flip" pages (i.e. draw into the one you've been
49 /** When you're ready to write to the back page, call update. The returned
56 back inval region is ready to receive new inval calls.
  /frameworks/base/core/java/android/speech/
IRecognitionListener.aidl 29 * Called when the endpointer is ready for the user to start speaking.
67 * Called when recognition results are ready.
74 * Called when recognition partial results are ready.
  /system/core/adb/
protocol.txt 84 The OPEN message MUST result in either a READY message indicating that
87 a READY message sent at the same time.
100 --- READY(local-id, remote-id, "") -------------------------------------
102 The READY message informs the recipient that the sender's stream
103 identified by local-id is ready for write messages and that it is
108 A READY message containing a remote-id which does not map to an open
112 The local-id is ignored on all but the first READY message (where it
114 not change on later READY messages sent to the same stream.
127 A WRITE message may not be sent until a READY message is received.
129 sent until another READY message has been received. Recipients o
    [all...]

Completed in 291 milliseconds

1 2 3 4 5 6 7 8 91011>>