OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ReportStack
(Results
1 - 11
of
11
) sorted by null
/external/compiler-rt/lib/tsan/rtl/
tsan_symbolize.h
21
ReportStack
*SymbolizeCode(uptr addr);
25
ReportStack
*SymbolizeCodeAddr2Line(uptr addr);
27
ReportStack
*NewReportStackEntry(uptr addr);
tsan_report.h
31
struct
ReportStack
{
32
ReportStack
*next;
54
ReportStack
*stack;
78
ReportStack
*stack;
87
ReportStack
*stack;
93
ReportStack
*stack;
99
Vector<
ReportStack
*> stacks;
104
ReportStack
*sleep;
117
void PrintStack(const
ReportStack
*stack);
tsan_symbolize.cc
39
ReportStack
*NewReportStackEntry(uptr addr) {
40
ReportStack
*ent = (
ReportStack
*)internal_alloc(MBlockReportStack,
41
sizeof(
ReportStack
));
59
static
ReportStack
*NewReportStackEntry(const AddressInfo &info) {
60
ReportStack
*ent = NewReportStackEntry(info.address);
72
ReportStack
*SymbolizeCode(uptr addr) {
84
ReportStack
*top = 0;
85
ReportStack
*bottom = 0;
87
ReportStack
*cur_entry = NewReportStackEntry(addr_frames[i])
[
all
...]
tsan_suppressions.h
23
uptr IsSuppressed(ReportType typ, const
ReportStack
*stack, Suppression **sp);
tsan_report.cc
65
void PrintStack(const
ReportStack
*ent) {
156
static void PrintSleep(const
ReportStack
*s) {
161
static
ReportStack
*ChooseSummaryStack(const ReportDesc *rep) {
173
ReportStack
*SkipTsanInternalFrames(
ReportStack
*ent) {
209
if (
ReportStack
*ent = SkipTsanInternalFrames(ChooseSummaryStack(rep)))
217
void PrintStack(const
ReportStack
*ent) {
tsan_rtl_report.cc
33
static
ReportStack
*SymbolizeStack(const StackTrace& trace);
56
static void StackStripMain(
ReportStack
*stack) {
57
ReportStack
*last_frame = 0;
58
ReportStack
*last_frame2 = 0;
64
for (
ReportStack
*ent = stack; ent; ent = ent->next) {
104
static
ReportStack
*SymbolizeStack(const StackTrace& trace) {
107
ReportStack
*stack = 0;
120
ReportStack
*ent = SymbolizeCode(pc1);
122
ReportStack
*last = ent;
152
ReportStack
**rs = rep_->stacks.PushBack()
[
all
...]
tsan_suppressions.cc
97
uptr IsSuppressed(ReportType typ, const
ReportStack
*stack, Suppression **sp) {
104
for (const
ReportStack
*frame = stack; frame; frame = frame->next) {
tsan_defs.h
160
struct
ReportStack
;
tsan_symbolize_addr2line_linux.cc
150
ReportStack
*SymbolizeCodeAddr2Line(uptr addr) {
171
ReportStack
*res = NewReportStackEntry(addr);
190
ReportStack
*SymbolizeDataAddr2Line(uptr addr) {
tsan_rtl.h
606
const
ReportStack
*suppress_stack1 = 0,
607
const
ReportStack
*suppress_stack2 = 0,
614
bool FrameIsInternal(const
ReportStack
*frame);
615
ReportStack
*SkipTsanInternalFrames(
ReportStack
*ent);
/external/compiler-rt/lib/tsan/go/
tsan_go.cc
38
ReportStack
*NewReportStackEntry(uptr addr) {
39
ReportStack
*ent = (
ReportStack
*)internal_alloc(MBlockReportStack,
40
sizeof(
ReportStack
));
58
ReportStack
*SymbolizeCode(uptr addr) {
59
ReportStack
*s = (
ReportStack
*)internal_alloc(MBlockReportStack,
60
sizeof(
ReportStack
));
Completed in 480 milliseconds