HomeSort by relevance Sort by last modified time
    Searched refs:writeThread (Results 1 - 4 of 4) sorted by null

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
ServerSocketChannelTest.java 511 WriteChannelThread writeThread = new WriteChannelThread(clientChannel, buf);
512 writeThread.start();
516 writeThread.join();
518 if (writeThread.exception != null) {
519 throw writeThread.exception;
556 WriteChannelThread writeThread = new WriteChannelThread(clientChannel, buf);
557 writeThread.start();
561 writeThread.join();
563 if (writeThread.exception != null) {
564 throw writeThread.exception
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
PipedWriterTest.java 346 Thread writeThread = new Thread(writeRunnable);
361 writeThread.start();
368 while (writeThread.isAlive()) {
410 Thread writeThread = new Thread(writeRunnable);
425 writeThread.start();
432 while (writeThread.isAlive()) {
PipedInputStreamTest.java 297 Thread writeThread = new Thread(writeRunnable);
301 writeThread.start();
306 writeThread.join();
  /frameworks/base/core/jni/
android_hardware_camera2_CameraMetadata.cpp 413 pthread_t writeThread;
420 int threadRet = pthread_create(&writeThread, /*attr*/NULL,
464 if ((res = pthread_join(writeThread, /*retval*/NULL)) != 0) {

Completed in 3393 milliseconds