OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ThreadContext
(Results
1 - 25
of
40
) sorted by relevancy
1
2
/src/external/gpl3/gcc/dist/libsanitizer/lsan/
lsan_fuchsia.h
26
class
ThreadContext
final : public ThreadContextLsanBase {
28
explicit
ThreadContext
(int tid);
lsan_posix.h
30
class
ThreadContext
final : public ThreadContextLsanBase {
32
explicit
ThreadContext
(int tid);
lsan_fuchsia.cpp
28
ThreadContext
::
ThreadContext
(int tid) : ThreadContextLsanBase(tid) {}
36
void
ThreadContext
::OnCreated(void *arg) {
48
void
ThreadContext
::OnStarted(void *arg) {
74
auto ctx = static_cast<
ThreadContext
*>(tctx);
lsan_posix.cpp
25
ThreadContext
::
ThreadContext
(int tid) : ThreadContextLsanBase(tid) {}
37
void
ThreadContext
::OnStarted(void *arg) {
65
ThreadContext
*context = static_cast<
ThreadContext
*>(
lsan_thread.h
45
class
ThreadContext
;
lsan_thread.cpp
34
return new (allocator_for_thread_context)
ThreadContext
(tid);
/src/external/gpl3/gcc.old/dist/libsanitizer/lsan/
lsan_fuchsia.h
26
class
ThreadContext
final : public ThreadContextLsanBase {
28
explicit
ThreadContext
(int tid);
lsan_posix.h
30
class
ThreadContext
final : public ThreadContextLsanBase {
32
explicit
ThreadContext
(int tid);
lsan_thread.h
43
class
ThreadContext
;
56
ThreadContext
*CurrentThreadContext();
lsan_thread.cpp
29
void *mem = MmapOrDie(sizeof(
ThreadContext
), "
ThreadContext
");
30
return new (mem)
ThreadContext
(tid);
62
ThreadContext
*CurrentThreadContext() {
68
return (
ThreadContext
*)thread_registry->GetThreadLocked(GetCurrentThread());
lsan_fuchsia.cpp
28
ThreadContext
::
ThreadContext
(int tid) : ThreadContextLsanBase(tid) {}
36
void
ThreadContext
::OnCreated(void *arg) {
48
void
ThreadContext
::OnStarted(void *arg) {
73
auto ctx = static_cast<
ThreadContext
*>(tctx);
lsan_posix.cpp
24
ThreadContext
::
ThreadContext
(int tid) : ThreadContextLsanBase(tid) {}
36
void
ThreadContext
::OnStarted(void *arg) {
63
ThreadContext
*context = static_cast<
ThreadContext
*>(
lsan.cpp
38
if (
ThreadContext
*t = CurrentThreadContext()) {
/src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_thread.h
26
class
ThreadContext
: public ThreadContextBase {
28
explicit
ThreadContext
(int tid);
56
ThreadContext
*CurrentThreadContext();
lsan_thread.cc
29
void *mem = MmapOrDie(sizeof(
ThreadContext
), "
ThreadContext
");
30
return new(mem)
ThreadContext
(tid);
42
ThreadContext
::
ThreadContext
(int tid)
59
void
ThreadContext
::OnStarted(void *arg) {
70
void
ThreadContext
::OnFinished() {
98
ThreadContext
*CurrentThreadContext() {
103
return (
ThreadContext
*)thread_registry->GetThreadLocked(GetCurrentThread());
133
ThreadContext
*context = static_cast<ThreadContext *>
[
all
...]
lsan.h
52
ThreadContext
*t;
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_rtl_thread.cc
23
//
ThreadContext
implementation.
25
ThreadContext
::
ThreadContext
(int tid)
34
ThreadContext
::~
ThreadContext
() {
38
void
ThreadContext
::OnDead() {
42
void
ThreadContext
::OnJoined(void *arg) {
53
void
ThreadContext
::OnCreated(void *arg) {
69
void
ThreadContext
::OnReset() {
76
void
ThreadContext
::OnDetached(void *arg)
[
all
...]
tsan_rtl_report.cc
192
void ScopedReportBase::AddThread(const
ThreadContext
*tctx, bool suppressable) {
218
static
ThreadContext
*FindThreadByUidLocked(int unique_id) {
220
return static_cast<
ThreadContext
*>(
225
static
ThreadContext
*FindThreadByTidLocked(int tid) {
227
return static_cast<
ThreadContext
*>(
233
ThreadContext
*tctx = static_cast<
ThreadContext
*>(tctx_base);
242
ThreadContext
*IsThreadStackOrTls(uptr addr, bool *is_stack) {
244
ThreadContext
*tctx = static_cast<
ThreadContext
*>(
[
all
...]
tsan_defs.h
169
class
ThreadContext
;
/src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_rtl_thread.cpp
22
//
ThreadContext
implementation.
24
ThreadContext
::
ThreadContext
(Tid tid) : ThreadContextBase(tid), thr(), sync() {}
27
ThreadContext
::~
ThreadContext
() {
31
void
ThreadContext
::OnReset() { CHECK(!sync); }
35
ThreadContext
*tctx;
41
auto *tctx = static_cast<
ThreadContext
*>(tctx_base);
57
static void ReportIgnoresEnabled(
ThreadContext
*tctx, IgnoreSet *set) {
135
void
ThreadContext
::OnCreated(void *arg)
[
all
...]
tsan_rtl_report.cpp
206
void ScopedReportBase::AddThread(const
ThreadContext
*tctx, bool suppressable) {
226
static
ThreadContext
*FindThreadByTidLocked(Tid tid) {
228
return static_cast<
ThreadContext
*>(
234
ThreadContext
*tctx = static_cast<
ThreadContext
*>(tctx_base);
243
ThreadContext
*IsThreadStackOrTls(uptr addr, bool *is_stack) {
245
ThreadContext
*tctx =
246
static_cast<
ThreadContext
*>(ctx->thread_registry.FindThreadContextLocked(
259
if (const
ThreadContext
*tctx = FindThreadByTidLocked(tid))
319
if (
ThreadContext
*tctx = IsThreadStackOrTls(addr, &is_stack))
[
all
...]
tsan_defs.h
159
class
ThreadContext
;
/src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_rtl_thread.cpp
22
//
ThreadContext
implementation.
24
ThreadContext
::
ThreadContext
(Tid tid)
28
ThreadContext
::~
ThreadContext
() {
32
void
ThreadContext
::OnReset() {
41
ThreadContext
*tctx;
47
auto *tctx = static_cast<
ThreadContext
*>(tctx_base);
61
static void ReportIgnoresEnabled(
ThreadContext
*tctx, IgnoreSet *set) {
127
void
ThreadContext
::OnCreated(void *arg)
[
all
...]
tsan_rtl_report.cpp
202
void ScopedReportBase::AddThread(const
ThreadContext
*tctx, bool suppressable) {
227
static
ThreadContext
*FindThreadByUidLocked(Tid unique_id) {
229
return static_cast<
ThreadContext
*>(
234
static
ThreadContext
*FindThreadByTidLocked(Tid tid) {
236
return static_cast<
ThreadContext
*>(
242
ThreadContext
*tctx = static_cast<
ThreadContext
*>(tctx_base);
251
ThreadContext
*IsThreadStackOrTls(uptr addr, bool *is_stack) {
253
ThreadContext
*tctx =
254
static_cast<
ThreadContext
*>(ctx->thread_registry.FindThreadContextLocked
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
MinidumpYAML.h
110
yaml::BinaryRef
ThreadContext
;
117
ArrayRef<uint8_t>
ThreadContext
)
119
MDExceptionStream(MDExceptionStream),
ThreadContext
(
ThreadContext
) {}
Completed in 33 milliseconds
1
2
Indexes created Tue Jun 16 00:25:01 UTC 2026