/aosp_15_r20/tools/tradefederation/core/javatests/com/android/tradefed/result/ddmlib/ |
D | TestRunToTestInvocationForwarderTest.java | 58 TestIdentifier tid2 = new TestIdentifier("class", "test2"); in testForwarding() local 59 TestDescription td2 = new TestDescription(tid2.getClassName(), tid2.getTestName()); in testForwarding() 67 mForwarder.testStarted(tid2); in testForwarding() 68 mForwarder.testFailed(tid2, "I failed"); in testForwarding() 69 mForwarder.testEnded(tid2, new HashMap<>()); in testForwarding() 88 TestIdentifier tid2 = new TestIdentifier("class", "null"); in testForwarding_null() local 96 tid2.getTestName(), in testForwarding_null() 97 tid2), in testForwarding_null() 106 mForwarder.testStarted(tid2); in testForwarding_null() 107 mForwarder.testFailed(tid2, "I failed"); in testForwarding_null() [all …]
|
/aosp_15_r20/external/llvm/test/CodeGen/AMDGPU/ |
H A D | min3.ll | 48 %tid2 = mul i32 %tid, 2 53 %gep3 = getelementptr i32, i32 addrspace(1)* %aptr, i32 %tid2 54 %gep4 = getelementptr i32, i32 addrspace(1)* %bptr, i32 %tid2 55 %gep5 = getelementptr i32, i32 addrspace(1)* %cptr, i32 %tid2 58 %outgep1 = getelementptr i32, i32 addrspace(1)* %out, i32 %tid2 82 %tid2 = mul i32 %tid, 2 87 %gep3 = getelementptr i32, i32 addrspace(1)* %aptr, i32 %tid2 88 %gep4 = getelementptr i32, i32 addrspace(1)* %bptr, i32 %tid2 89 %gep5 = getelementptr i32, i32 addrspace(1)* %cptr, i32 %tid2 92 %outgep1 = getelementptr i32, i32 addrspace(1)* %out, i32 %tid2
|
/aosp_15_r20/external/pytorch/c10/test/core/ |
H A D | DispatchKeySet_test.cpp | 221 auto tid2 = static_cast<DispatchKey>(j); in TEST() local 231 if (tid2 == DispatchKey::StartOfDenseBackends || in TEST() 232 tid2 == DispatchKey::StartOfSparseBackends || in TEST() 233 tid2 == DispatchKey::StartOfSparseCsrBackends || in TEST() 234 tid2 == DispatchKey::StartOfQuantizedBackends || in TEST() 235 tid2 == DispatchKey::StartOfNestedTensorBackends || in TEST() 236 tid2 == DispatchKey::StartOfAutogradFunctionalityBackends) in TEST() 240 auto backend2 = toBackendComponent(tid2); in TEST() 242 auto functionality2 = toFunctionalityKey(tid2); in TEST() 244 auto combined = DispatchKeySet({tid1, tid2}); in TEST() [all …]
|
/aosp_15_r20/tools/tradefederation/core/javatests/com/android/tradefed/result/ |
D | ReportPassedTestsTest.java | 149 TestDescription tid2 = new TestDescription("class", "testName2"); in testReport_runFailure_withPassedTestCases() local 157 mReporter.testStarted(tid2); in testReport_runFailure_withPassedTestCases() 158 mReporter.testEnded(tid2, Collections.emptyMap()); in testReport_runFailure_withPassedTestCases() 222 TestDescription tid2 = new TestDescription("class", "testName2"); in testReport_moduleFailure_withPassedTestCases_shards() local 232 mReporter.testStarted(tid2); in testReport_moduleFailure_withPassedTestCases_shards() 233 mReporter.testEnded(tid2, Collections.emptyMap()); in testReport_moduleFailure_withPassedTestCases_shards() 251 TestDescription tid2 = new TestDescription("class", "testName2"); in testReport_moduleFailure_withPassedTestCases() local 260 mReporter.testStarted(tid2); in testReport_moduleFailure_withPassedTestCases() 261 mReporter.testEnded(tid2, Collections.emptyMap()); in testReport_moduleFailure_withPassedTestCases()
|
/aosp_15_r20/system/media/audio_utils/tests/ |
H A D | audio_mutex_tests.cpp | 592 std::atomic<pid_t> tid1{}, tid2{}, tid3{}, tid4{}; in TEST_P() local 616 tid2 = android::audio_utils::gettid_wrapper(); in TEST_P() 620 while (tid2 == 0) { usleep(1000); } in TEST_P() 651 EXPECT_EQ(tid2, chain[0].first); in TEST_P() 697 std::atomic<pid_t> tid1{}, tid2{}, tid3{}, tid4{}; in TEST_P() local 726 tid2 = android::audio_utils::gettid_wrapper(); in TEST_P() 730 while (tid2 == 0) { usleep(1000); } in TEST_P() 738 cv2.wait(ul2, [&]{ return quit; }, tid2); in TEST_P() 766 EXPECT_EQ(tid2, chain[0].first); in TEST_P() 815 std::atomic<pid_t> tid1{}, tid2{}, tid3{}, tid4{}; in TEST_P() local [all …]
|
/aosp_15_r20/external/ot-br-posix/tests/gtest/ |
H A D | test_task_runner.cpp | 258 otbr::TaskRunner::TaskId tid1, tid2, tid3, tid4, tid5; in TEST() local 261 tid2 = taskRunner.Post(std::chrono::milliseconds(20), [&]() { str.push_back('b'); }); in TEST() 267 EXPECT_TRUE(tid1 < tid2); in TEST() 268 EXPECT_TRUE(tid2 < tid3); in TEST() 272 taskRunner.Cancel(tid2); in TEST() 305 taskRunner.Cancel(tid2); in TEST()
|
/aosp_15_r20/external/ltp/testcases/open_posix_testsuite/functional/timers/timers/ |
H A D | twoevtimers.c | 44 timer_t tid1, tid2; in main() local 70 (timer_create(CLOCK_REALTIME, &ev2, &tid2) != 0)) { in main() 91 if (timer_settime(tid2, flags, &its, NULL) != 0) { in main()
|
/aosp_15_r20/tools/tradefederation/core/javatests/com/android/tradefed/testtype/suite/ |
D | TestSuiteStub.java | 108 TestDescription tid2 = new TestDescription("TestStub", "test2"); in testAttempt() local 109 listener.testStarted(tid2); in testAttempt() 115 tid2.toString() + "-file", in testAttempt() 119 listener.testEnded(tid2, new HashMap<String, Metric>()); in testAttempt()
|
D | ModuleListenerTest.java | 102 TestDescription tid2 = new TestDescription("class", "test" + i); in testInternalRerun() local 103 mListener.testStarted(tid2); in testInternalRerun() 104 mListener.testEnded(tid2, new HashMap<String, Metric>()); in testInternalRerun()
|
/aosp_15_r20/hardware/google/aemu/host-common/ |
D | logging_unittest.cpp | 126 std::string tid2 = log2.substr(21, 9); in TEST() local 128 EXPECT_THAT(tid2, MatchesStdRegex(R"( +\w+ )")); in TEST() 129 EXPECT_NE(tid1, tid2); in TEST()
|
/aosp_15_r20/system/media/audio_utils/include/audio_utils/ |
H A D | mutex.h | 1055 for (const auto& [ tid2, name ] : chain) { in to_string() 1056 description.append(", ").append(std::to_string(tid2)) in to_string() 1227 for (const auto& [tid2, weak_info] : registry_map) { in deadlock_detection() 1241 mutex_to_tid[mutex_ptr] = pid_order_index_pair_t{tid2, order}; in deadlock_detection() 1253 for (pid_t tid2 = tid; true;) { in deadlock_detection() local 1259 std::tie(tid2, order) = mutex_to_tid[m]; in deadlock_detection() 1262 tid2 = other_wait_tid; in deadlock_detection() 1274 deadlock_info.chain.emplace_back(tid2, in deadlock_detection() 1281 if (visited.count(tid2)) { in deadlock_detection() 1285 visited.insert(tid2); in deadlock_detection() [all …]
|
/aosp_15_r20/external/pytorch/aten/src/ATen/native/mps/operations/ |
H A D | Bucketization.mm | 105 uint2 tid2 [[thread_position_in_threadgroup]], 108 for (int64_t tid = tgid.x * tptg.x + tid2.x; tid < numel_in; tid += tptg.x) { 133 uint2 tid2 [[thread_position_in_threadgroup]], 136 for (int64_t tid = tgid.x * tptg.x + tid2.x; tid < numel_in; tid += tptg.x) { 164 uint2 tid2 [[thread_position_in_threadgroup]], \ 178 uint2 tid2 [[thread_position_in_threadgroup]], \
|
/aosp_15_r20/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/ |
H A D | ShadowProcessTest.java | 88 AtomicInteger tid2 = new AtomicInteger(0); in myTid_returnsDifferentValuesForDifferentThreads() local 98 tid2.set(android.os.Process.myTid()); in myTid_returnsDifferentValuesForDifferentThreads() 105 assertThat(tid1).isNotEqualTo(tid2); in myTid_returnsDifferentValuesForDifferentThreads()
|
/aosp_15_r20/frameworks/base/libs/hwui/tests/unit/ |
H A D | CommonPoolTests.cpp | 95 auto tid2 = f2.get(); in TEST() local 96 EXPECT_EQ(tid1, tid2); in TEST()
|
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/threadproc/netware/ |
H A D | thread.c | 147 int apr_os_thread_equal(apr_os_thread_t tid1, apr_os_thread_t tid2) in apr_os_thread_equal() argument 149 return (tid1 == tid2); in apr_os_thread_equal()
|
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/threadproc/beos/ |
H A D | thread.c | 117 int apr_os_thread_equal(apr_os_thread_t tid1, apr_os_thread_t tid2) in apr_os_thread_equal() argument 119 return tid1 == tid2; in apr_os_thread_equal()
|
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/threadproc/win32/ |
H A D | thread.c | 272 apr_os_thread_t tid2) in apr_os_thread_equal() argument 278 return (tid1 == tid2); in apr_os_thread_equal()
|
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/threadproc/os2/ |
H A D | thread.c | 196 int apr_os_thread_equal(apr_os_thread_t tid1, apr_os_thread_t tid2) in apr_os_thread_equal() argument 198 return tid1 == tid2; in apr_os_thread_equal()
|
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/threadproc/unix/ |
H A D | thread.c | 197 apr_os_thread_t tid2) argument 199 return pthread_equal(tid1, tid2);
|
/aosp_15_r20/tools/tradefederation/core/javatests/com/android/tradefed/testtype/ |
D | HostTestTest.java | 2164 TestDescription tid2 = in testSplit_withExclude() local 2167 verify(mListener).testStarted(tid2); in testSplit_withExclude() 2168 verify(mListener).testEnded(tid2, new HashMap<String, Metric>()); in testSplit_withExclude() 2287 TestDescription tid2 = new TestDescription(SuccessTestCase.class.getName(), "testPass2"); in testSplit_excludeTestCase_shardUnit_method() local 2292 new TestDescription[] {tid2, tid3, tid4}); in testSplit_excludeTestCase_shardUnit_method() 2373 TestDescription tid2 = new TestDescription(Junit4TestClass.class.getName(), "testPass5"); in testRun_junit4ExceptionBeforeClass() local 2374 verify(mListener).testStarted(Mockito.eq(tid2)); in testRun_junit4ExceptionBeforeClass() 2375 verify(mListener).testEnded(Mockito.eq(tid2), (HashMap<String, Metric>) Mockito.any()); in testRun_junit4ExceptionBeforeClass() 2418 TestDescription tid2 = new TestDescription(Junit4TestClass.class.getName(), "testPass5"); in testRun_junit4ExceptionBefore() local 2419 verify(mListener).testStarted(Mockito.eq(tid2)); in testRun_junit4ExceptionBefore() [all …]
|
/aosp_15_r20/external/ltp/testcases/kernel/controllers/cpuset/cpuset_memory_test/ |
H A D | cpuset_memory_testset.sh | 472 read tid2 475 echo $tid2
|
/aosp_15_r20/prebuilts/go/linux-x86/src/runtime/ |
D | defs_dragonfly_amd64.go | 113 tid2 unsafe.Pointer // *int32 member
|
D | os_dragonfly.go | 163 tid2: nil,
|
/aosp_15_r20/tools/tradefederation/core/javatests/com/android/tradefed/cluster/ |
D | ClusterCommandSchedulerTest.java | 697 TestDescription tid2 = new TestDescription("class", "test2"); 698 handler.testStarted(tid2); 699 handler.testAssumptionFailure(tid2, "I assume I failed"); 700 handler.testEnded(tid2, new HashMap<String, Metric>());
|
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/include/ |
H A D | apr_portable.h | 327 apr_os_thread_t tid2);
|