Home
last modified time | relevance | path

Searched refs:thread_1 (Results 1 – 20 of 20) sorted by relevance

/external/pigweed/pw_thread/
Dthread_facade_test.cc68 Thread thread_1; in TEST() local
71 thread_0.swap(thread_1); in TEST()
79 Thread thread_1( in TEST() local
82 EXPECT_NE(thread_1.get_id(), Id()); in TEST()
84 thread_0.swap(thread_1); in TEST()
86 EXPECT_EQ(thread_1.get_id(), Id()); in TEST()
100 Thread thread_1( in TEST() local
104 const Id thread_b_id = thread_1.get_id(); in TEST()
108 thread_0.swap(thread_1); in TEST()
109 EXPECT_EQ(thread_1.get_id(), thread_a_id); in TEST()
[all …]
/external/llvm-project/lldb/test/API/functionalities/gdb_remote_client/
DTestRecognizeBreakpoint.py116 thread_1 = process.threads[1]
117 self.assertEqual(thread_1.GetStopReason(), 5, "Thread_0 stopped for SIGSTOP")
118 self.assertEqual(thread_1.GetName(), "two", "Thread_0 is called two")
133 thread_1 = process.threads[1]
134 self.assertEqual(thread_1.GetStopReason(), 3, "Thread_0 stopped for SIGTRAP")
135 self.assertEqual(thread_1.GetName(), "three", "Thread_0 is called three")
137 self.assertTrue(thread_1.IsValid(), "Thread_1 is valid")
138 … self.assertEqual(thread_1.GetStopReason(), lldb.eStopReasonBreakpoint, "Stopped at breakpoint")
/external/llvm-project/lldb/test/API/functionalities/thread/create_during_step/
Dmain.cpp50 std::thread thread_1(step_thread_func); in main() local
57 std::thread thread_2(create_thread_func, &thread_1); in main()
67 thread_1.join(); in main()
/external/llvm-project/lldb/test/API/functionalities/thread/ignore_suspended/
Dmain.cpp23 std::thread thread_1(thread1); in main() local
32 thread_1.join(); // Set third breakpoint here in main()
/external/llvm-project/lldb/test/API/functionalities/thread/multi_break/
Dmain.cpp32 std::thread thread_1(thread_func); in main() local
36 thread_1.join(); in main()
/external/llvm-project/lldb/test/API/functionalities/thread/step_out/
Dmain.cpp34 std::thread thread_1(thread_func); in main() local
38 thread_1.join(); in main()
/external/llvm-project/lldb/test/API/functionalities/thread/exit_during_step/
Dmain.cpp54 std::thread thread_1(step_thread_func); in main() local
66 thread_1.join(); in main()
/external/llvm-project/lldb/test/API/functionalities/thread/thread_exit/
Dmain.cpp43 std::thread thread_1(thread1); in main() local
55 thread_1.join(); in main()
/external/llvm-project/lldb/test/API/functionalities/thread/create_after_attach/
Dmain.cpp44 std::thread thread_1(thread_1_func, nullptr); in main() local
57 thread_1.join(); in main()
/external/llvm-project/lldb/test/API/functionalities/plugins/python_os_plugin/stepping_plugin_threads/
Dmain.cpp42 std::thread thread_1(thread_func); in main() local
52 thread_1.join(); in main()
/external/llvm-project/lldb/test/API/commands/expression/no-deadlock/
Dlocking.cpp61 std::thread thread_1(lock_acquirer_1); in main() local
74 thread_1.join(); in main()
/external/llvm-project/lldb/test/API/lang/c/step_over_no_deadlock/
Dlocking.cpp61 std::thread thread_1(lock_acquirer_1); in main() local
74 thread_1.join(); in main()
/external/llvm-project/lldb/test/API/functionalities/thread/break_after_join/
Dmain.cpp80 std::thread thread_1(break_thread_func); in main() local
88 std::thread thread_5(join_thread_func, &thread_1); in main()
/external/llvm-project/lldb/test/API/functionalities/thread/exit_during_break/
Dmain.cpp88 std::thread thread_1(break_thread_func); in main() local
106 thread_1.join(); in main()
/external/llvm-project/lldb/test/API/functionalities/thread/num_threads/
Dmain.cpp45 std::thread thread_1(thread1, nullptr); in main() local
59 thread_1.join(); in main()
/external/tensorflow/tensorflow/python/debug/lib/
Ddebug_events_writer_test.py379 thread_1 = threading.Thread(target=read_job_1)
381 thread_1.start()
383 thread_1.join()
450 thread_1 = threading.Thread(target=read_job_1)
452 thread_1.start()
454 thread_1.join()
533 thread_1 = threading.Thread(target=read_job_1)
535 thread_1.start()
537 thread_1.join()
/external/tensorflow/tensorflow/python/training/
Dsync_replicas_optimizer_test.py239 thread_1 = self.checkedThread(
249 thread_1.start()
250 thread_1.join()
/external/llvm-project/lldb/test/API/functionalities/postmortem/elf-core/gcore/
Dmain.cpp41 std::thread thread_1(thread1); in main() local
/external/llvm-project/lldb/test/API/functionalities/postmortem/elf-core/thread_crash/
Dmain.cpp41 std::thread thread_1(thread1); in main() local
/external/tensorflow/tensorflow/python/framework/
Dop_callbacks_test.py271 thread_1 = threading.Thread(target=thread_1_job)
272 thread_1.start()
281 thread_1.join()
349 thread_1 = threading.Thread(target=thread_1_job)
350 thread_1.start()
356 thread_1.join()