HomeSort by: relevance | last modified time | path
    Searched defs:tid (Results 1 - 25 of 160) sorted by relevancy

1 2 3 4 5 6 7

  /src/lib/libbluetooth/
sdp-int.h 33 uint16_t tid; /* current session transaction ID */ member in struct:sdp_session
sdp-int.h 33 uint16_t tid; /* current session transaction ID */ member in struct:sdp_session
  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan.cc 100 u32 tid = ThreadCreate(0, 0, true); local in function:__lsan_init
101 CHECK_EQ(tid, 0);
102 ThreadStart(tid, GetTid());
103 SetCurrentThread(tid);
lsan.cc 100 u32 tid = ThreadCreate(0, 0, true); local in function:__lsan_init
101 CHECK_EQ(tid, 0);
102 ThreadStart(tid, GetTid());
103 SetCurrentThread(tid);
lsan_mac.cc 72 u32 tid = ThreadCreate(parent_tid, 0, true); local in function:__lsan::lsan_register_worker_thread
73 ThreadStart(tid, GetTid());
74 SetCurrentThread(tid);
lsan_mac.cc 72 u32 tid = ThreadCreate(parent_tid, 0, true); local in function:__lsan::lsan_register_worker_thread
73 ThreadStart(tid, GetTid());
74 SetCurrentThread(tid);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_posix_test.cc 45 pthread_t tid; local in function:__sanitizer::SpawnThread
46 ASSERT_EQ(0, pthread_create(&tid, 0, &thread_func,
49 ASSERT_EQ(0, pthread_join(tid, &retval));
sanitizer_posix_test.cc 45 pthread_t tid; local in function:__sanitizer::SpawnThread
46 ASSERT_EQ(0, pthread_create(&tid, 0, &thread_func,
49 ASSERT_EQ(0, pthread_join(tid, &retval));
standalone_malloc_test.cc 20 size_t tid = reinterpret_cast<size_t>(t); local in function:MallocThread
24 if ((i % (kNumIters / 4)) == 0 && tid == 0)
25 fprintf(stderr, " T[%ld] iter %ld\n", tid, i);
50 if (tid == 0)
52 tid, total_malloced >> 20, (total_malloced - total_freed) >> 20,
standalone_malloc_test.cc 20 size_t tid = reinterpret_cast<size_t>(t); local in function:MallocThread
24 if ((i % (kNumIters / 4)) == 0 && tid == 0)
25 fprintf(stderr, " T[%ld] iter %ld\n", tid, i);
50 if (tid == 0)
52 tid, total_malloced >> 20, (total_malloced - total_freed) >> 20,
  /src/tests/lib/libc/gen/
t_nice.c 163 pthread_t tid[5]; local in function:ATF_TC_BODY
171 for (i = 0; i < __arraycount(tid); i++) {
176 rv = pthread_create(&tid[i], NULL, threadfunc, &val);
179 rv = pthread_join(tid[i], NULL);
t_nice.c 163 pthread_t tid[5]; local in function:ATF_TC_BODY
171 for (i = 0; i < __arraycount(tid); i++) {
176 rv = pthread_create(&tid[i], NULL, threadfunc, &val);
179 rv = pthread_join(tid[i], NULL);
  /src/tests/lib/libc/sys/
t_getpid.c 109 pthread_t tid; local in function:ATF_TC_BODY
116 rv = pthread_create(&tid, NULL, threadfunc, &tpid);
119 rv = pthread_join(tid, NULL);
t_getpid.c 109 pthread_t tid; local in function:ATF_TC_BODY
116 rv = pthread_create(&tid, NULL, threadfunc, &tpid);
119 rv = pthread_join(tid, NULL);
  /src/sys/compat/linux/common/
linux_sigevent.h 52 int tid; member in union:linux_sigevent::__anon1630fdef010a
linux_sigevent.h 52 int tid; member in union:linux_sigevent::__anon1630fdef010a
  /src/sys/compat/linux32/common/
linux32_sigevent.h 54 int tid; member in union:linux32_sigevent::__anon4166d359010a
linux32_sigevent.h 54 int tid; member in union:linux32_sigevent::__anon4166d359010a
  /src/sys/net/npf/
npf_bpf.c 178 const uint32_t tid = A & (SRC_FLAG_BIT - 1); local in function:npf_cop_table
185 t = npf_tableset_getbyid(tblset, tid);
npf_ifaddr.c 57 unsigned tid; local in function:lookup_ifnet_table
73 tid = npf_table_getid(t);
76 t = npf_table_create(tname, tid, NPF_TABLE_IFADDR, NULL, 0);
npf_bpf.c 178 const uint32_t tid = A & (SRC_FLAG_BIT - 1); local in function:npf_cop_table
185 t = npf_tableset_getbyid(tblset, tid);
npf_ifaddr.c 57 unsigned tid; local in function:lookup_ifnet_table
73 tid = npf_table_getid(t);
76 t = npf_table_create(tname, tid, NPF_TABLE_IFADDR, NULL, 0);
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_fuchsia.cc 99 u32 tid = local in function:__asan::CreateAsanThread
101 asanThreadRegistry().SetThreadName(tid, name);
169 asanThreadRegistry().FinishThread(thread->tid());
182 asanThreadRegistry().StartThread(thread->tid(), os_id, /*workerthread*/ false,
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_stoptheworld_mac.cc 27 tid_t tid; member in struct:__sanitizer::__anon22ed31e80108
113 return threads_[index].tid;
sanitizer_thread_registry.cc 19 ThreadContextBase::ThreadContextBase(u32 tid)
20 : tid(tid), unique_id(0), reuse_count(), os_id(0), user_id(0),
88 // Parent tid makes no sense for the main thread.
89 if (tid != 0)
139 u32 tid = kUnknownTid; local in function:__sanitizer::ThreadRegistry::CreateThread
142 tid = tctx->tid;
144 // Allocate new thread context and tid.
145 tid = n_contexts_++
175 for (u32 tid = 0; tid < n_contexts_; tid++) { local in function:__sanitizer::ThreadRegistry::RunCallbackForEachThreadLocked
185 for (u32 tid = 0; tid < n_contexts_; tid++) { local in function:__sanitizer::ThreadRegistry::FindThread
196 for (u32 tid = 0; tid < n_contexts_; tid++) { local in function:__sanitizer::ThreadRegistry::FindThreadContextLocked
227 for (u32 tid = 0; tid < n_contexts_; tid++) { local in function:__sanitizer::ThreadRegistry::SetThreadNameByUserId
    [all...]

Completed in 171 milliseconds

1 2 3 4 5 6 7