/libcore/luni/src/test/java/libcore/java/nio/channels/ |
D | DatagramChannelMulticastTest.java | 165 dc.join(GOOD_MULTICAST_IPv4, ipv4NetworkInterface); in test_joinAnySource_afterClose() 177 dc.join(null, ipv4NetworkInterface); in test_joinAnySource_nullGroupAddress() 190 dc.join(GOOD_MULTICAST_IPv4, null); in test_joinAnySource_nullNetworkInterface() 203 dc.join(UNICAST_IPv4_1, ipv4NetworkInterface); in test_joinAnySource_nonMulticastGroupAddress_IPv4() 216 dc.join(UNICAST_IPv6_1, ipv6NetworkInterface); in test_joinAnySource_nonMulticastGroupAddress_IPv6() 239 receiverChannel.join(group, networkInterface); in check_joinAnySource() 267 dc.join(groupAddress, ipv4NetworkInterface); in test_joinAnySource_processLimit() 285 MembershipKey key = dc.join(GOOD_MULTICAST_IPv4, ipv4NetworkInterface); in test_joinAnySource_blockLimit() 308 dc.join(GOOD_MULTICAST_IPv4, ipv4NetworkInterface); in test_joinAnySource_doesNotCauseBind() 361 dc.join(group, thisInterface); in test_joinAnySource_networkInterfaces() [all …]
|
/libcore/ojluni/src/test/java/awt/font/NumericShaper/ |
D | MTTest.java | 91 th1.join(); in main() 92 th2.join(); in main() 93 th3.join(); in main() 94 th4.join(); in main() 95 th5.join(); in main() 96 th6.join(); in main() 97 th7.join(); in main() 98 th8.join(); in main()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/apache/harmony/kernel/dalvik/ |
D | ThreadsTest.java | 61 waiterThread.join(); in test_parkFor_1() 62 parkerThread.join(); in test_parkFor_1() 76 waiterThread.join(); in test_parkFor_2() 77 parkerThread.join(); in test_parkFor_2() 90 parkerThread.join(); in test_parkFor_3() 104 waiterThread.join(); in test_parkUntil_1() 105 parkerThread.join(); in test_parkUntil_1() 119 waiterThread.join(); in test_parkUntil_2() 120 parkerThread.join(); in test_parkUntil_2() 133 parkerThread.join(); in test_parkUntil_3()
|
/libcore/tools/testmapping/ |
D | save_logs.py | 29 LOGS_ROOT = os.path.join(ANDROID_REPOSITORY_ROOT, 'out', 'host', 'linux-x86', 31 CTS_LOGS_PATTERN = os.path.join(LOGS_ROOT, '*', '*', 33 LIBCORE_DIR = os.path.join(ANDROID_REPOSITORY_ROOT, 'libcore') 34 DESTINATION_DIR = os.path.join(LIBCORE_DIR, 'smoketest') 84 return '_'.join(parts) 90 return os.path.join(DESTINATION_DIR, name)
|
D | gen_smoke_tests.py | 33 LIBCORE_DIR = os.path.join(ANDROID_REPOSITORY_ROOT, 'libcore') 34 LOGS_DIR = os.path.join(LIBCORE_DIR, 'smoketest') 75 return map(lambda f: os.path.join(LOGS_DIR, f), filenames) 191 output_path = os.path.join(OUT_DIR, 'test_times.txt') 280 output_path = os.path.join(OUT_DIR, 'package_times.txt') 309 output_path = os.path.join(OUT_DIR, 'included_tests.txt') 466 output_path = os.path.join(LIBCORE_DIR, 'TEST_MAPPING')
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
D | ThreadTest.java | 165 st.join(); in test_ConstructorLjava_lang_ThreadGroupLjava_lang_Runnable() 185 st.join(); in test_ConstructorLjava_lang_ThreadGroupLjava_lang_RunnableLjava_lang_String() 232 t.join(); in test_activeCount() 252 st.join(); in test_checkAccess() 348 firstOne.join(); in test_enumerate$Ljava_lang_Thread() 349 secondOne.join(); in test_enumerate$Ljava_lang_Thread() 362 t.join(); in test_enumerate$Ljava_lang_Thread() 419 st.join(); in test_getThreadGroup() 538 st.join(); in test_isAlive() 556 st.join(); in test_isDaemon() [all …]
|
D | ThreadLocalTest.java | 90 t.join(); in test_get() 140 t.join(); in test_setLjava_lang_Object() 183 t.join(); in test_withInitial()
|
/libcore/luni/src/test/java/libcore/java/lang/ |
D | OldObjectTest.java | 124 thr2.join(); in test_wait() 125 thr1.join(); in test_wait() 190 thr2.join(); in test_waitJI() 191 thr1.join(); in test_waitJI() 246 thr2.join(); in test_waitJ() 247 thr1.join(); in test_waitJ()
|
D | StringTest.java | 741 assertEquals("", String.join("-")); in testJoin_CharSequenceArray() 742 assertEquals("", String.join("-", "")); in testJoin_CharSequenceArray() 743 assertEquals("foo", String.join("-", "foo")); in testJoin_CharSequenceArray() 744 assertEquals("foo---bar---boo", String.join("---", "foo", "bar", "boo")); in testJoin_CharSequenceArray() 745 assertEquals("foobarboo", String.join("", "foo", "bar", "boo")); in testJoin_CharSequenceArray() 746 assertEquals("null-null", String.join("-", null, null)); in testJoin_CharSequenceArray() 747 assertEquals("¯\\_(ツ)_/¯", String.join("(ツ)", "¯\\_", "_/¯")); in testJoin_CharSequenceArray() 752 String.join(null, "foo", "bar"); in testJoin_CharSequenceArray_NPE() 759 assertEquals("", String.join("-", iterable)); in testJoin_Iterable() 762 assertEquals("foo", String.join("-", iterable)); in testJoin_Iterable() [all …]
|
D | ThreadTest.java | 189 thread.join(); in setPriority_starting() 202 startedThread.join(); in setPriority_started() 209 joinedThread.join(); in setPriority_joined() 316 t1.join(); in getStackTrace() 409 t2.join(); in getAllStackTracesIncludesAllGroups() 456 watchdog.join(); in parkUntilWithUnderflowValue() 477 parkerThread.join(); in quit() 527 thread.join(); in threadDoubleStart() 541 thread.join(); in threadRestart()
|
D | EnumTest.java | 113 t1.join(); in testDeadlock() 119 t2.join(); in testDeadlock()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
D | InetAddressThreadTest.java | 155 thread1.join(); in test_getHostName() 156 thread2.join(); in test_getHostName() 157 thread3.join(); in test_getHostName() 158 thread4.join(); in test_getHostName()
|
/libcore/luni/src/test/java/libcore/java/io/ |
D | OldAndroidPipedStreamTest.java | 91 reader.join(60 * 1000); in testA() 92 writer.join(1000); in testA() 176 reader.join(60 * 1000); in testB() 177 writer.join(1000); in testB() 246 reader.join(60 * 1000); in testC() 247 writer.join(1000); in testC()
|
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/ |
D | HttpURLConnectionTest.java | 178 httpServer.join(); in testGetOutputStream() 212 server.join(); in testUsingProxy() 213 proxy.join(); in testUsingProxy() 256 server.join(); in testUsingProxySelector() 257 proxy.join(); in testUsingProxySelector() 298 proxy.join(); in testProxyAuthorization()
|
/libcore/ojluni/src/main/java/java/nio/channels/ |
D | MulticastChannel.java | 180 MembershipKey join(InetAddress group, NetworkInterface interf) in join() method 228 MembershipKey join(InetAddress group, NetworkInterface interf, InetAddress source) in join() method
|
/libcore/luni/src/test/java/libcore/java/util/concurrent/ |
D | ForkJoinTaskTest.java | 46 assertSame(result, task.join()); in testAdaptToRunnableWithResult() 65 Integer result = (Integer)task.join(); in testAdaptToCallable() 84 Integer result = (Integer)task.join(); in testAdaptToCallableThrowsException()
|
D | RecursiveTaskTest.java | 47 return subTask.join() + value; in compute() 67 Integer result = task.join(); in testSetRawResult()
|
/libcore/json/src/test/java/libcore/org/json/ |
D | JSONArrayTest.java | 38 assertEquals("", array.join(" AND ")); in testEmptyArray() 264 array.join(" ")); in testStrings() 306 assertEquals("null", array.join(" & ")); in testJoin() 308 assertEquals("null & \"\\\"\"", array.join(" & ")); in testJoin() 310 assertEquals("null & \"\\\"\" & 5", array.join(" & ")); in testJoin() 312 assertEquals("null & \"\\\"\" & 5 & true", array.join(" & ")); in testJoin() 314 assertEquals("null & \"\\\"\" & 5 & true & [true,false]", array.join(" & ")); in testJoin() 316 assertEquals("null & \"\\\"\" & 5 & true & [true,false] & {\"x\":6}", array.join(" & ")); in testJoin() 321 assertEquals("5null6", array.join(null)); in testJoinWithNull() 326 assertEquals("5\"6", array.join("\"")); in testJoinWithSpecialCharacters()
|
/libcore/tools/upstream/ |
D | upstream-diff | 88 [d for d in os.listdir(upstreams) if os.path.isdir(os.path.join(upstreams, d))] 92 'available repositories: ' + ' '.join(repositories) + '.')
|
/libcore/luni/src/test/java/tests/support/ |
D | ThreadPool.java | 73 public void join() { in join() method in ThreadPool 83 threads[i].join(); in join()
|
/libcore/luni/src/test/java/libcore/java/util/ |
D | AbstractCollectionTest.java | 57 reader.join(); in test_toArray() 58 mutator.join(); in test_toArray()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
D | PipedWriterTest.java | 85 rdrThread.join(); in test_ConstructorLjava_io_PipedReader() 123 rdrThread.join(); in test_connectLjava_io_PipedReader() 140 rdrThread.join(); in test_flush() 185 rdrThread.join(); in test_write$CII() 452 rdrThread.join(1000); in test_writeI()
|
/libcore/ojluni/src/main/java/java/net/ |
D | AbstractPlainDatagramSocketImpl.java | 198 protected void join(InetAddress inetaddr) throws IOException { in join() method in AbstractPlainDatagramSocketImpl 199 join(inetaddr, null); in join() 223 join(((InetSocketAddress)mcastaddr).getAddress(), netIf); in joinGroup() 226 protected abstract void join(InetAddress inetaddr, NetworkInterface netIf) in join() method in AbstractPlainDatagramSocketImpl
|
/libcore/luni/src/test/java/libcore/java/util/logging/ |
D | OldLogRecordTest.java | 56 thread.join(); in testGetSetThreadID_DifferentThread() 64 thread2.join(); in testGetSetThreadID_DifferentThread()
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | ThreadLocalTest.java | 84 child.join(); in run() 100 progenitor.join(); in testGenericITL()
|