Searched refs:thread_id (Results 1 - 5 of 5) sorted by relevance

/fuchsia/zircon/system/utest/cobalt-client/
H A Dcounter_test.cpp129 auto& thread_id = thread_ids[i]; local
133 ASSERT_EQ(thrd_create(&thread_id, IncrementFn, &args[i]), thrd_success);
140 for (const auto& thread_id : thread_ids) {
141 thrd_join(thread_id, nullptr);
193 auto& thread_id = thread_ids[i]; local
198 ASSERT_EQ(thrd_create(&thread_id, ExchangeFn, &args[i]), thrd_success);
205 for (const auto& thread_id : thread_ids) {
206 thrd_join(thread_id, nullptr);
322 auto& thread_id = thread_ids[i]; local
328 ASSERT_EQ(thrd_create(&thread_id, FlushF
417 auto& thread_id = thread_ids[i]; local
[all...]
H A Dtypes_internal_test.cpp100 for (auto thread_id : *try_flush->thread_ids) {
101 if (thread_id == thrd_current()) {
104 thrd_join(thread_id, nullptr);
134 for (auto& thread_id : thread_ids) {
135 ASSERT_EQ(thrd_create(&thread_id, TryFlushFn, &args), thrd_success);
H A Dhistogram_test.cpp167 auto& thread_id = thread_ids[i]; local
171 ASSERT_EQ(thrd_create(&thread_id, IncrementFn, &args[i]), thrd_success);
178 for (const auto& thread_id : thread_ids) {
179 thrd_join(thread_id, nullptr);
320 auto& thread_id = thread_ids[i]; local
326 ASSERT_EQ(thrd_create(&thread_id, FlushFn, &args[i]), thrd_success);
333 for (const auto& thread_id : thread_ids) {
334 thrd_join(thread_id, nullptr);
538 auto& thread_id = thread_ids[thread]; local
539 ASSERT_EQ(thrd_create(&thread_id, HistogramF
606 auto& thread_id = thread_ids[thread]; local
[all...]
H A Dcollector_test.cpp412 thrd_t thread_id; local
414 thrd_create(&thread_id, &ObserveFn, &observe_args);
416 thrd_create(&thread_id, &FlushFn, &flush_args);
418 thread_ids.push_back(thread_id);
424 for (auto thread_id : thread_ids) {
425 ASSERT_EQ(thrd_join(thread_id, nullptr), thrd_success);
/fuchsia/zircon/system/utest/debugger/
H A Ddebugger.cpp889 zx_koid_t thread_id; member in struct:__anon1329::suspend_in_exception_data
912 ASSERT_EQ(pkt_tid, data->thread_id);
916 ASSERT_EQ(pkt_tid, data->thread_id);
937 ASSERT_EQ(pkt_tid, data->thread_id);
1002 data.thread_id = tu_get_koid(data.thread_handle);

Completed in 31 milliseconds