OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tls_begin_
(Results
1 - 5
of
5
) sorted by null
/external/compiler-rt/lib/lsan/
lsan_thread.h
29
uptr tls_begin() { return
tls_begin_
; }
36
tls_begin_
, tls_end_;
member in class:__lsan::ThreadContext
/external/compiler-rt/lib/msan/
msan_thread.cc
26
&
tls_begin_
, &tls_size);
local
28
tls_end_ =
tls_begin_
+ tls_size;
36
if (
tls_begin_
!= tls_end_)
37
__msan_unpoison((void *)
tls_begin_
, tls_end_ -
tls_begin_
);
msan_thread.h
33
uptr tls_begin() { return
tls_begin_
; }
58
uptr
tls_begin_
;
member in class:__msan::MsanThread
/external/compiler-rt/lib/asan/
asan_thread.cc
186
GetThreadStackAndTls(tid() == 0, &stack_bottom_, &stack_size_, &
tls_begin_
,
local
189
tls_end_ =
tls_begin_
+ tls_size;
197
if (
tls_begin_
!= tls_end_)
198
PoisonShadow(
tls_begin_
, tls_end_ -
tls_begin_
, 0);
asan_thread.h
68
uptr tls_begin() { return
tls_begin_
; }
124
uptr
tls_begin_
;
member in class:__asan::AsanThread
Completed in 439 milliseconds