HomeSort by: relevance | last modified time | path
    Searched refs:user_id (Results 1 - 8 of 8) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_thread_registry.cc 20 : tid(tid), unique_id(0), reuse_count(), os_id(0), user_id(0),
44 user_id = 0;
61 user_id = 0;
85 user_id = _user_id;
136 u32 ThreadRegistry::CreateThread(uptr user_id, bool detached, u32 parent_tid,
167 tctx->SetCreated(user_id, total_threads_++, detached,
225 void ThreadRegistry::SetThreadNameByUserId(uptr user_id, const char *name) {
229 if (tctx != 0 && tctx->user_id == user_id &&
341 void ThreadRegistry::SetThreadUserId(u32 tid, uptr user_id) {
    [all...]
sanitizer_thread_registry.h 43 uptr user_id; // Some opaque user thread id (e.g. pthread_t). member in class:__sanitizer::ThreadContextBase
102 u32 CreateThread(uptr user_id, bool detached, u32 parent_tid, void *arg);
120 void SetThreadNameByUserId(uptr user_id, const char *name);
125 void SetThreadUserId(u32 tid, uptr user_id);
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_fuchsia.cc 92 uptr user_id, bool detached,
100 asanThreadRegistry().CreateThread(user_id, detached, parent_tid, &args);
145 static void *BeforeThreadCreateHook(uptr user_id, bool detached,
155 return CreateAsanThread(&stack, parent_tid, user_id, detached, name,
asan_rtems.cc 101 uptr user_id, bool detached,
107 asanThreadRegistry().CreateThread(user_id, detached, parent_tid, &args);
142 static void *BeforeThreadCreateHook(uptr user_id, bool detached,
152 return CreateAsanThread(&stack, parent_tid, user_id, detached,
  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_thread.cc 75 u32 ThreadCreate(u32 parent_tid, uptr user_id, bool detached) {
76 return thread_registry->CreateThread(user_id, detached, parent_tid,
108 if (tctx->user_id == uid && tctx->status != ThreadStatusInvalid) {
  /src/usr.sbin/npf/npfctl/
npf_parse.y 211 %type <uid> uids uid_item user_id
711 : ALL user_id group_id
746 user_id group_id
750 | FROM maybe_not filt_addr filt_port user_id group_id
754 | TO maybe_not filt_addr filt_port user_id group_id
1047 user_id
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_rtl_thread.cc 289 if (tctx->user_id == uid && tctx->status != ThreadStatusInvalid) {
290 tctx->user_id = 0;
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_thread_registry_test.cc 59 return (tctx->user_id == uid);

Completed in 36 milliseconds