HomeSort by relevance Sort by last modified time
    Searched refs:ready (Results 51 - 75 of 761) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webrtc/talk/app/webrtc/test/
fakedatachannelprovider.h 118 void set_ready_to_send(bool ready) {
120 ready_to_send_ = ready;
121 if (ready) {
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiCountryCode.java 28 * to driver through wpa_supplicant when WifiStateMachine marks current state as ready
94 * Change the state to indicates if wpa_supplicant is ready to handle country code changing
99 public synchronized void setReadyForChange(boolean ready) {
100 if (DBG) Log.d(TAG, "Set ready: " + ready);
101 mReady = ready;
102 // We are ready to set country code now.
127 // If wpa_supplicant is ready we set the country code now, otherwise it will be
128 // set once wpa_supplicant is ready.
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/futures/futures.shared_future/
wait_for.pass.cpp 58 assert(f.wait_for(ms(300)) == std::future_status::ready);
74 assert(f.wait_for(ms(300)) == std::future_status::ready);
90 assert(f.wait_for(ms(300)) == std::future_status::ready);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/futures/futures.unique_future/
wait_for.pass.cpp 58 assert(f.wait_for(ms(300)) == std::future_status::ready);
74 assert(f.wait_for(ms(300)) == std::future_status::ready);
90 assert(f.wait_for(ms(300)) == std::future_status::ready);
  /external/guice/core/src/com/google/inject/internal/
Initializer.java 47 private final CountDownLatch ready = new CountDownLatch(1); field in class:Initializer
118 ready.countDown();
148 if (ready.getCount() == 0) {
155 ready.await();
158 // Give up, since we don't know if our injection is ready
  /external/iputils/
clockdiff.c 131 fd_set ready; local
147 FD_ZERO(&ready);
151 FD_SET(sock_raw, &ready);
152 if (select(FD_SETSIZE, &ready, (fd_set *)0, (fd_set *)0, &tout)) {
178 FD_ZERO(&ready);
207 FD_ZERO(&ready);
208 FD_SET(sock_raw, &ready);
215 if ((count = select(FD_SETSIZE, &ready, (fd_set *)0,
308 fd_set ready; local
324 FD_ZERO(&ready);
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
16-1.c 87 static volatile int ready; variable
135 ready = 1;
163 ready = 0;
171 * sync on the ready flag. Since the child is running in
177 while (!ready)
  /external/pdfium/third_party/agg23/
agg_vcgen_dash.h 33 ready, enumerator in enum:agg::vcgen_dash::status_e
  /external/syslinux/gpxe/src/arch/i386/interface/pxe/
pxe_file.c 111 * @ret s_PXENV_FILE_SELECT::Ready Indication of readiness
116 int ready; local
122 if ( ( ready = select ( &fdset, 0 ) ) < 0 ) {
123 file_select->Status = PXENV_STATUS ( ready );
127 file_select->Ready = ( ready ? RDY_READ : 0 );
142 * @ret s_PXENV_FILE_READ::Ready Indication of readiness
  /frameworks/base/tools/preload2/src/com/android/preload/ui/
IUI.java 19 void ready(); method in interface:IUI
  /frameworks/opt/net/lowpan/tests/
prepdevice.sh 36 echo Device is ready.
  /libcore/support/src/test/java/tests/support/
Support_ASimpleReader.java 48 public boolean ready() throws IOException { method in class:Support_ASimpleReader
  /prebuilts/go/darwin-x86/src/os/signal/
example_test.go 16 // if we're not ready to receive when the signal is sent.
28 // if we're not ready to receive when the signal is sent.
  /prebuilts/go/linux-x86/src/os/signal/
example_test.go 16 // if we're not ready to receive when the signal is sent.
28 // if we're not ready to receive when the signal is sent.
  /external/emma/
Android.mk 6 # the custom dex'ed emma library ready to put on a device.
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toy.ml 16 print_string "ready> "; flush stdout;
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
toy.ml 16 print_string "ready> "; flush stdout;
  /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);
  /libcore/ojluni/src/main/native/
SocketChannelImpl.c 54 jboolean ready)
63 if (!ready) {
  /prebuilts/go/darwin-x86/src/runtime/
netpoll_stub.go 11 // Polls for ready network connections.
  /prebuilts/go/darwin-x86/test/chan/
select4.go 7 // Test that a select statement proceeds when a value is ready.
  /prebuilts/go/linux-x86/src/runtime/
netpoll_stub.go 11 // Polls for ready network connections.
  /prebuilts/go/linux-x86/test/chan/
select4.go 7 // Test that a select statement proceeds when a value is ready.
  /external/ltp/testcases/kernel/syscalls/ipc/msgctl/
msgctl07.c 51 volatile int ready; variable
108 ready = 0;
110 while (!ready) /* make the child wait */
148 ready = 0;
150 while (!ready) /* make the child wait */
209 ready++;
  /external/python/cpython2/Lib/test/
test_poll.py 20 def find_ready_matching(ready, flag):
22 for fd, mode in ready:
56 ready = p.poll()
57 ready_writers = find_ready_matching(ready, select.POLLOUT)
59 raise RuntimeError, "no pipes ready for writing"
63 ready = p.poll()
64 ready_readers = find_ready_matching(ready, select.POLLIN)
66 raise RuntimeError, "no pipes ready for reading"

Completed in 674 milliseconds

1 23 4 5 6 7 8 91011>>