HomeSort by: relevance | last modified time | path
    Searched refs:Tid (Results 1 - 25 of 40) sorted by relevancy

1 2

  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_report.h 52 int tid; member in struct:__tsan::ReportMop
78 Tid tid = kInvalidTid; member in struct:__tsan::ReportLocation
86 Tid id;
91 Tid parent_tid;
110 Vector<Tid> unique_tids;
tsan_rtl_thread.cpp 24 ThreadContext::ThreadContext(Tid tid) : ThreadContextBase(tid), thr(), sync() {}
58 if (tctx->tid == kMainTid) {
62 " created at:\n", tctx->tid, tctx->name);
116 Tid ThreadCreate(ThreadState *thr, uptr pc, uptr uid, bool detached) {
118 Tid parent = kInvalidTid;
121 parent = thr->tid;
130 Tid tid = ctx->thread_registry.CreateThread(uid, detached, parent, &arg) local
344 Tid tid = ThreadCreate(thr, pc, 0, true); local
    [all...]
tsan_fd.h 57 bool FdLocation(uptr addr, int *fd, Tid *tid, StackID *stack, bool *closed);
tsan_rtl.h 135 Tid tid; member in struct:__tsan::TidEpoch
201 const Tid tid; member in struct:__tsan::ThreadState
236 explicit ThreadState(Tid tid);
266 explicit ThreadContext(Tid tid);
409 void AddMemoryAccess(uptr addr, uptr external_tag, Shadow s, Tid tid,
    [all...]
tsan_rtl_report.cpp 178 Tid tid, StackTrace stack,
185 mop->tid = tid;
202 void ScopedReportBase::AddUniqueTid(Tid unique_tid) {
208 if ((u32)rep_->threads[i]->id == tctx->tid)
213 rt->id = tctx->tid;
226 static ThreadContext *FindThreadByTidLocked(Tid tid) {
229 ctx->thread_registry.GetThreadLocked(tid));
444 Tid tid = kInvalidTid; local
    [all...]
tsan_sync.h 58 Tid owner_tid; // Set only by exclusive owners.
tsan_platform_mac.cpp 81 const_cast<Tid &>(dts->tid) = kInvalidTid;
211 Tid tid = ThreadCreate(parent_thread_state, 0, (uptr)thread, true); local
212 CHECK_NE(tid, kMainTid);
213 ThreadStart(thr, tid, GetTid(), ThreadType::Worker);
tsan_defs.h 187 Tid tid; member in struct:__tsan::MBlock
tsan_fd.cpp 35 Tid creation_tid;
122 d->creation_tid = thr->tid;
160 bool FdLocation(uptr addr, int *fd, Tid *tid, StackID *stack, bool *closed) {
169 *tid = d->creation_tid;
183 DPrintf("#%d: FdAcquire(%d) -> %p\n", thr->tid, fd, s);
194 DPrintf("#%d: FdRelease(%d) -> %p\n", thr->tid, fd, s);
203 DPrintf("#%d: FdAccess(%d)\n", thr->tid, fd);
211 DPrintf("#%d: FdClose(%d)\n", thr->tid, fd);
249 d->creation_tid = thr->tid;
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_report.h 51 int tid; member in struct:__tsan::ReportMop
77 Tid tid = kInvalidTid; member in struct:__tsan::ReportLocation
84 Tid id;
89 Tid parent_tid;
109 Vector<Tid> unique_tids;
tsan_rtl_thread.cpp 24 ThreadContext::ThreadContext(Tid tid)
25 : ThreadContextBase(tid), thr(), sync(), epoch0(), epoch1() {}
34 uptr trace_p = GetThreadTrace(tid);
36 //!!! ReleaseMemoryToOS(GetThreadTraceHeader(tid), sizeof(Trace));
62 if (tctx->tid == kMainTid) {
66 " created at:\n", tctx->tid, tctx->name);
119 Tid ThreadCreate(ThreadState *thr, uptr pc, uptr uid, bool detached) {
121 u32 parent_tid = thr ? thr->tid : kInvalidTid; // No parent for GCD workers.
122 Tid tid = ctx->thread_registry.CreateThread(uid, detached, parent_tid, &args) local
285 Tid tid = findCtx.tctx ? findCtx.tctx->tid : kInvalidTid; local
338 Tid tid = ThreadCreate(thr, pc, 0, true); local
    [all...]
tsan_fd.h 56 bool FdLocation(uptr addr, int *fd, Tid *tid, StackID *stack);
tsan_rtl.h 178 const Tid tid; member in struct:__tsan::ThreadState
223 explicit ThreadState(Context *ctx, Tid tid, int unique_id, u64 epoch,
255 explicit ThreadContext(Tid tid);
262 // the event is from a dead thread that shared tid with this thread.
359 void AddThread(Tid unique_tid, bool suppressable = false);
360 void AddUniqueTid(Tid unique_tid);
396 void RestoreStack(Tid tid, const u64 epoch, VarSizeStackTrace *stk
    [all...]
tsan_sync.h 58 Tid owner_tid; // Set only by exclusive owners.
tsan_defs.h 72 u64 reused : 64 - kClkBits; // tid reuse count
208 Tid tid; member in struct:__tsan::MBlock
tsan_rtl.cpp 79 static ThreadContextBase *CreateThreadContext(Tid tid) {
82 internal_snprintf(name, sizeof(name), "trace %u", tid);
83 MapThreadTrace(GetThreadTrace(tid), TraceSize() * sizeof(Event), name);
84 const uptr hdr = GetThreadTraceHeader(tid);
85 internal_snprintf(name, sizeof(name), "trace header %u", tid);
103 return New<ThreadContext>(tid);
127 ThreadState::ThreadState(Context *ctx, Tid tid, int unique_id, u64 epoch,
130 : fast_state(tid, epoch
414 Tid tid = ThreadCreate(thr, 0, 0, true); local
    [all...]
tsan_rtl_report.cpp 181 mop->tid = s.tid();
198 void ScopedReportBase::AddUniqueTid(Tid unique_tid) {
204 if ((u32)rep_->threads[i]->id == tctx->tid)
209 rt->id = tctx->tid;
227 static ThreadContext *FindThreadByUidLocked(Tid unique_id) {
234 static ThreadContext *FindThreadByTidLocked(Tid tid) {
237 ctx->thread_registry.GetThreadLocked(tid));
265 void ScopedReportBase::AddThread(Tid unique_tid, bool suppressable)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
TimeProfiler.cpp 80 Tid(llvm::get_threadid()), TimeTraceGranularity(TimeTraceGranularity) {
141 auto writeEvent = [&](const auto &E, uint64_t Tid) {
147 J.attribute("tid", int64_t(Tid));
158 writeEvent(E, this->Tid);
161 writeEvent(E, TTP->Tid);
166 uint64_t MaxTid = this->Tid;
168 MaxTid = std::max(MaxTid, TTP->Tid);
203 J.attribute("tid", int64_t(TotalTid));
217 auto writeMetadataEvent = [&](const char *Name, uint64_t Tid,
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
concurrency.d 6 * $(TR $(TD Tid) $(TD
13 * $(MYREF Tid)
49 * represented by a common handle type called a Tid, which allows messages to
93 static void spawnedFunc(Tid ownerTid)
128 static if (is(T == Tid))
142 static struct Container { Tid t; }
143 static assert(!hasLocalAliasing!(Tid, Container, int));
293 this(Tid t, string msg = "Owner terminated") @safe pure nothrow @nogc
296 tid = t;
299 Tid tid
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_internal_defs.h 435 typedef u32 Tid;
436 constexpr Tid kInvalidTid = -1;
437 constexpr Tid kMainTid = 0;
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/logger/
filelogger.d 22 import std.concurrency : Tid;
125 Tid threadId, SysTime timestamp, Logger logger)
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_internal_defs.h 436 typedef u32 Tid;
437 constexpr Tid kInvalidTid = -1;
438 constexpr Tid kMainTid = 0;
sanitizer_thread_registry.h 42 explicit ThreadContextBase(u32 tid);
43 const u32 tid; // Thread ID. Main thread should have tid = 0. member in class:__sanitizer::ThreadContextBase
45 u32 reuse_count; // Number of times this tid was reused.
87 typedef ThreadContextBase* (*ThreadContextFactory)(u32 tid);
103 ThreadContextBase *GetThreadLocked(u32 tid) {
104 return threads_.empty() ? nullptr : threads_[tid];
126 void SetThreadName(u32 tid, const char *name);
128 void DetachThread(u32 tid, void *arg);
129 void JoinThread(u32 tid, void *arg)
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/net/
curl.d 185 import std.concurrency : Tid;
194 tid.send(dg);
199 Tid tid;
234 auto tid = spawn(&TestServer.loop, cast(shared) sock);
235 return TestServer(addr, tid, sock);
1546 (Tid origin, CurlMessage!(immutable(Unit)[]) _data)
1554 (Tid origin, CurlMessage!bool f)
1590 (Tid origin, CurlMessage!(immutable(Unit)[]) _data)
1598 (Tid origin, CurlMessage!bool f
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/PerfJITEvents/
PerfJITEventListener.cpp 141 uint32_t Tid;
421 rec.Tid = get_threadid();

Completed in 65 milliseconds

1 2