Lines Matching refs:ReportInfo
29 struct ReportInfo { struct
41 int GatherReports(const char* test_bin, fbl::Array<ReportInfo>* reports); argument
42 unsigned int AnalyzeField(const fbl::Array<ReportInfo>& reports,
43 uintptr_t ReportInfo::*field);
65 fbl::Array<ReportInfo> reports(new ReportInfo[kNumRuns], kNumRuns); in main()
78 bits = AnalyzeField(reports, &ReportInfo::exec_addr); in main()
80 bits = AnalyzeField(reports, &ReportInfo::first_stack); in main()
82 bits = AnalyzeField(reports, &ReportInfo::first_heap_alloc); in main()
84 bits = AnalyzeField(reports, &ReportInfo::libc); in main()
86 bits = AnalyzeField(reports, &ReportInfo::vdso); in main()
114 unsigned int AnalyzeField(const fbl::Array<ReportInfo>& reports, in AnalyzeField()
115 uintptr_t ReportInfo::*field) { in AnalyzeField()
156 int GatherReports(const char* test_bin, fbl::Array<ReportInfo>* reports) { in GatherReports()
182 ReportInfo* report = &(*reports)[run]; in GatherReports()
201 ReportInfo report; in TestRunMain()