/libcore/ |
D | CleanSpec.mk | 48 $(call add-clean-step, rm -rf $(OUT)/system/framework/conscrypt-nojarjar.jar) 49 $(call add-clean-step, rm -rf $(OUT)/system/framework/conscrypt-nojarjar.jar) 50 $(call add-clean-step, rm -rf $(OUT)/system/etc/security/cacerts/*)
|
D | JavaLibrary.mk | 53 common_core_src_files := $(call all-main-java-files-under,dalvik dex dom json luni xml) 54 core_resource_dirs := $(call all-core-resource-dirs,main) 55 test_resource_dirs := $(call all-core-resource-dirs,test) 56 test_src_files := $(call all-test-java-files-under,dalvik dom harmony-tests json luni xml) 60 …common_core_src_files += $(call all-java-files-under, ../external/emma/core ../external/emma/prege… 65 libart_core_src_files += $(common_core_src_files) $(call all-main-java-files-under,libart) 106 LOCAL_SRC_FILES := $(call all-test-java-files-under,support) 119 LOCAL_SRC_FILES := $(call all-test-java-files-under, jsr166-tests) 149 LOCAL_SRC_FILES := $(call all-main-java-files-under, dex) 185 LOCAL_SRC_FILES := $(call all-test-java-files-under,support)
|
D | CaCerts.mk | 42 cacerts := $(call all-files-under,luni/src/main/files/cacerts) 45 $(foreach cacert, $(cacerts), $(eval $(call include-prebuilt-with-destination-directory,target-cace… 54 $(foreach cacert, $(cacerts), $(eval $(call include-prebuilt-with-destination-directory,host-cacert…
|
D | Android.mk | 16 LOCAL_PATH := $(call my-dir) 23 subdir_makefiles := $(call all-named-subdir-makefiles,$(subdirs))
|
D | Docs.mk | 12 $(call find-files-in-subdirs, libcore, \ 15 $(call find-files-in-subdirs, libcore, \
|
D | NativeCode.mk | 63 $(eval $(call include-core-native-dir,$(dir))))
|
/libcore/benchmarks/ |
D | Android.mk | 16 LOCAL_PATH:= $(call my-dir) 23 LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
/libcore/luni/src/main/java/java/util/concurrent/ |
D | Executors.java | 373 public Object call() { return action.run(); }}; in callable() 388 public Object call() throws Exception { return action.run(); }}; 421 public T call() { 439 public T call() throws Exception { 444 return task.call(); 481 public T call() throws Exception { 489 return task.call(); 493 return task.call();
|
D | Callable.java | 35 V call() throws Exception; in call() method
|
D | FutureTask.java | 237 result = c.call(); in run() 279 c.call(); // don't set result in runAndReset()
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | ExecutorsTest.java | 384 public Object call() { in call() method in ExecutorsTest.CheckCCL 417 .call(); in testPrivilegedCallableUsingCCLWithPrivs() 438 task.call(); in testPrivilegedCallableWithNoPrivs() 503 Executors.privilegedCallable(new CheckCCL()).call(); in testPrivilegedCallableWithPrivs() 516 assertNull(c.call()); in testCallable1() 524 assertSame(one, c.call()); in testCallable2() 533 assertSame(one, c.call()); in testCallable3() 542 assertSame(one, c.call()); in testCallable4()
|
D | JSR166TestCase.java | 741 public final T call() { in call() method in JSR166TestCase.CheckedCallable 755 public final T call() { in call() method in JSR166TestCase.CheckedInterruptedCallable 774 public Object call() { return Boolean.TRUE; } in call() method in JSR166TestCase.NoOpCallable 780 public String call() { return TEST_STRING; } in call() method in JSR166TestCase.StringTask 836 public String call() { throw new NullPointerException(); } 840 public Integer call() { return one; } 988 public Object call() {
|
D | AbstractExecutorServiceTest.java | 212 public Object call() { throw new ArithmeticException(); }}; in testSubmitEE() 258 public Long call() { throw new ArithmeticException(); }}); in testInvokeAny3() 436 public Long call() { throw new ArithmeticException(); }}); in testTimedInvokeAny3()
|
D | FutureTaskTest.java | 184 public Object call() throws Exception { in PublicFutureTask() 186 return callable.call(); in PublicFutureTask() 664 public Object call() { in testGet_ExecutionException() 688 public Object call() { in testTimedGet_ExecutionException2()
|
/libcore/luni/src/test/java/libcore/javax/net/ssl/ |
D | SSLSocketTest.java | 321 @Override public Void call() throws Exception { in test_SSLSocket_startHandshake() 362 @Override public byte[] call() throws Exception { in call() method in SSLSocketTest.SSLServerSessionIdCallable 414 @Override public Void call() throws Exception { in test_SSLSocket_startHandshake_noKeyStore() 444 @Override public Void call() throws Exception { in test_SSLSocket_startHandshake_noClientCertificate() 464 @Override public Void call() throws Exception { in test_SSLSocket_HandshakeCompletedListener() 586 @Override public Void call() throws Exception { in test_SSLSocket_HandshakeCompletedListener_RuntimeException() 652 @Override public IOException call() throws Exception { in test_SSLSocket_setUseClientMode() 706 @Override public Void call() throws Exception { in test_SSLSocket_untrustedServer() 736 @Override public Void call() throws Exception { in test_SSLSocket_clientAuth() 808 @Override public Void call() throws Exception { in test_SSLSocket_clientAuth_bogusAlias() [all …]
|
D | SSLContextTest.java | 280 public Void call() throws Exception { in test_SSLContext_init_withEmptyManagerArrays() 316 public Void call() throws Exception { in test_SSLContext_init_withoutX509() 407 return callable.call(); in invokeWithHighestPrioritySecurityProvider()
|
/libcore/support/src/test/java/libcore/javax/net/ssl/ |
D | TestSSLSocketPair.java | 81 public Void call() throws Exception { in connect() 90 public Void call() throws Exception { in connect()
|
/libcore/luni/src/test/java/sun/misc/ |
D | UnsafeTest.java | 47 callable.call(); in test_getUnsafeForbiddenWithSystemCaller()
|
/libcore/luni/src/test/java/tests/security/ |
D | SecureRandomTest.java | 83 public Void call () { in testSecureRandomThreadSafety()
|
/libcore/support/src/test/java/tests/support/ |
D | Support_Exec.java | 141 public String call() throws Exception { in streamToStringCallable()
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
D | DeflaterOutputStreamTest.java | 77 public Void call() throws Exception { in createInflaterStream()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
D | OutputStreamTesterTest.java | 127 public byte[] call() throws Exception { in create()
|
D | WriterTesterTest.java | 120 public char[] call() throws Exception { in create()
|
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
D | ClassLoaderReflectionTest.java | 156 public A call() throws Exception { in call() method in ClassLoaderReflectionTest.E
|
/libcore/luni/src/test/java/libcore/java/security/ |
D | MessageDigestTest.java | 259 public Void call() throws Exception { in testMessageDigest_MultipleThreads_Misuse()
|