Home
last modified time | relevance | path

Searched refs:th (Results 1 – 25 of 94) sorted by relevance

1234

/cts/tests/tests/contactsprovider/src/android/provider/cts/contacts/
DContactsContract_AllUriTest.java204 private void addFailure(String message, Throwable th) { in addFailure() argument
205 Log.e(TAG, "Failed: " + message, th); in addFailure()
290 } catch (Throwable th) { in checkQueryExecutable()
291 addFailure("Query failed: URI=" + uri + " Message=" + th.getMessage(), th); in checkQueryExecutable()
299 } catch (Throwable th) { in checkQueryExecutable()
300 addFailure("Query with cancel failed: URI=" + uri + " Message=" + th.getMessage(), th); in checkQueryExecutable()
310 } catch (Throwable th) { in checkQueryExecutable()
311 addFailure("Query with limit failed: URI=" + uri + " Message=" + th.getMessage(), th); in checkQueryExecutable()
325 } catch (Throwable th) { in checkQueryExecutable()
326 addFailure("Query with limit failed: URI=" + uri + " Message=" + th.getMessage(), th); in checkQueryExecutable()
[all …]
/cts/tests/app/app/src/android/app/stubs/
DLaunchpadTabActivity.java36 final TabHost th = getTabHost(); in onCreate() local
37 final TabHost.TabSpec ts = th.newTabSpec("1"); in onCreate()
40 th.addTab(ts); in onCreate()
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DTestUtils.java92 } catch (Throwable th) { in runWithFailureHook()
93 Log.e(TAG, "Caught exception: " + th, th); in runWithFailureHook()
95 throw th; in runWithFailureHook()
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2016-8427/
Dpoc.c68 pthread_t th; in poc() local
70 pthread_create(&th, 0, thr, (void*)i); in poc()
74 pthread_create(&th, 0, thr, (void*)i); in poc()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
DTestTaskQueue.java36 HandlerThread th = new HandlerThread(threadName); in TestTaskQueue() local
37 th.start(); in TestTaskQueue()
38 mHandler = new Handler(th.getLooper()); in TestTaskQueue()
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/monitor_exit/
DTest_monitor_exit.java36 Thread th = new Thread(r); in testE1() local
37 th.start(); in testE1()
38 th.join(); in testE1()
/cts/tests/tests/opengl/src/android/opengl/cts/
DWrapperTest.java178 } catch (Throwable th) { in testThreadCleanup()
179 mThrowable = th; in testThreadCleanup()
209 Thread th = new Thread(wrappedTest, "EGL thrash"); in testThreadCleanup() local
210 th.start(); in testThreadCleanup()
211 th.join(); in testThreadCleanup()
/cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
DDeviceIdentifiersTest.java60 } catch (Throwable th) { in assertAccessDenied()
61 fail("Expected SecurityException but was: " + th); in assertAccessDenied()
/cts/tests/tests/media/src/android/media/cts/
DRemoteService.java87 } catch (Throwable th) { in runOnHandlerSync()
88 throwable.set(th); in runOnHandlerSync()
89 Log.e(TAG, "Error while running TestRunnable", th); in runOnHandlerSync()
DPresentationSyncTest.java259 } catch (Throwable th) { in run()
260 mThrowable = th; in run()
268 Thread th = new Thread(wrapper, "sync test"); in runTest() local
269 th.start(); in runTest()
270 th.join(); in runTest()
DEncodeVirtualDisplayTest.java169 } catch (Throwable th) { in run()
170 mThrowable = th; in run()
177 Thread th = new Thread(wrapper, "codec test"); in runTest() local
178 th.start(); in runTest()
179 th.join(); in runTest()
DEncodeDecodeTest.java199 } catch (Throwable th) { in run()
200 mThrowable = th; in run()
209 Thread th = new Thread(wrapper, "codec test"); in runTest() local
210 th.start(); in runTest()
211 th.join(); in runTest()
338 } catch (Throwable th) { in run()
339 mThrowable = th; in run()
354 Thread th = new Thread(wrapper, "codec test"); in runTest() local
355 th.start(); in runTest()
356 th.join(); in runTest()
DDecodeEditEncodeTest.java134 } catch (Throwable th) { in run()
135 mThrowable = th; in run()
142 Thread th = new Thread(wrapper, "codec test"); in runTest() local
143 th.start(); in runTest()
144 th.join(); in runTest()
DExtractDecodeEditEncodeMuxTest.java191 } catch (Throwable th) { in run()
192 mThrowable = th; in run()
202 Thread th = new Thread(wrapper, "codec test"); in runTest() local
203 th.start(); in runTest()
204 th.join(); in runTest()
DAdaptivePlaybackTest.java1618 Thread th = new Thread(runner, "stepWrapper");
1619 th.start();
1620 th.join();
/cts/apps/CtsVerifier/assets/report/
Dcompatibility_result.css41 table.summary th {
61 table.testsummary th {
85 table.testdetails th {
/cts/tests/tests/syncmanager/apps/app1/src/android/content/syncmanager/cts/app/
DSyncManagerCtsSyncAdapter.java98 } catch (Throwable th) { in onPerformSync()
99 Log.e(TAG, "Exception in onPerformSync", th); in onPerformSync()
/cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/
DBaseDeviceAdminServiceTest.java81 } catch (Throwable th) { in withRetry()
82 lastThrowable = th; in withRetry()
DAccountCheckHostSideTest.java302 } catch (Throwable th) { in testAccountCheck()
307 throw th; in testAccountCheck()
/cts/hostsidetests/appbinding/hostside/src/com/android/cts/appbinding/
DAppBindingHostTest.java201 } catch (Throwable th) { in runWithRetries()
202 lastThrowable = th; in runWithRetries()
/cts/tests/translation/src/android/translation/cts/
DTranslationManagerTest.java486 final Thread th = new Thread(() -> { in testGetTranslationCapabilities() local
492 th.start(); in testGetTranslationCapabilities()
/cts/tests/tests/security/jni/
Dandroid_security_cts_cve_2019_2213_Test.c837 pthread_t th; in launch_thread() local
838 if (pthread_create(&th, NULL, thread_start, dat) != 0) in launch_thread()
840 return pthread_gettid_np(th); in launch_thread()
/cts/hostsidetests/sustainedperf/dhrystone/
DRationale145 to Str_2_Loc (5'th statement of "main") out of the measurement loop
/cts/tests/tests/media/assets/hls_variant/387360/
D14.ts734 …��V���7tG��\�:���E¤�i� ��u��?/_\!���Cvbԍ��K�*ў��BE�>��w��},l�a~��th��z����X ���7�L��7��…
975 …\��^���s�7so'���w��f��4@�}�m�G��fV9ֹ��R5�����y���|1>B�����1��=�O�E�O��([�th,�m3^�U�h����H�ej'…
/cts/tests/tests/media/assets/hls_variant/165340/
D06.ts470 ��h���Yw:��W���@>D�.�}th����3��L��~l� ���X�FC�Z�<���y�

1234