Lines Matching full:report

131 // report a bug report otherwise.
189 /// Returns a report's description.
191 /// Returns a report's description (issue type), number of duplicate issues
196 /// \param report Opaque pointer to the current report.
197 /// \param[out] description Report type description.
210 void *report, const char **description, int *count, int *stack_count,
214 /// Returns information about stack traces included in the report.
216 /// \param report Opaque pointer to the current report.
217 /// \param idx Index to the report's stacks.
221 int SANITIZER_CDECL __tsan_get_report_stack(void *report, unsigned long idx,
225 /// Returns information about memory operations included in the report.
227 /// \param report Opaque pointer to the current report.
228 /// \param idx Index to the report's memory operations.
237 int SANITIZER_CDECL __tsan_get_report_mop(void *report, unsigned long idx,
242 /// Returns information about locations included in the report.
244 /// \param report Opaque pointer to the current report.
245 /// \param idx Index to the report's locations.
256 int SANITIZER_CDECL __tsan_get_report_loc(void *report, unsigned long idx,
263 /// Returns information about mutexes included in the report.
265 /// \param report Opaque pointer to the current report.
266 /// \param idx Index to the report's mutexes.
273 int SANITIZER_CDECL __tsan_get_report_mutex(void *report, unsigned long idx,
278 /// Returns information about threads included in the report.
280 /// \param report Opaque pointer to the current report.
281 /// \param idx Index to the report's threads.
290 int SANITIZER_CDECL __tsan_get_report_thread(void *report, unsigned long idx,
296 /// Returns information about unique thread IDs included in the report.
298 /// \param report Opaque pointer to the current report.
299 /// \param idx Index to the report's unique thread IDs.
300 /// \param[out] tid Unique thread ID of the report.
302 int SANITIZER_CDECL __tsan_get_report_unique_tid(void *report,
305 /// Returns the current report.
308 /// returns an opaque pointer to the current report. Otherwise returns NULL.
309 /// \returns An opaque pointer to the current report. Otherwise returns NULL.