Home
last modified time | relevance | path

Searched refs:kStderrFd (Results 1 – 4 of 4) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common.cc31 ReportFile report_file = {&report_file_mu, kStderrFd, "", "", 0};
39 if (fd == kStdoutFd || fd == kStderrFd) return; in ReopenIfNecessary()
65 WriteToFile(kStderrFd, ErrorMsgPrefix, internal_strlen(ErrorMsgPrefix)); in ReopenIfNecessary()
66 WriteToFile(kStderrFd, full_path, internal_strlen(full_path)); in ReopenIfNecessary()
84 if (fd != kStdoutFd && fd != kStderrFd && fd != kInvalidFd) in SetReportPath()
90 fd = kStderrFd; in SetReportPath()
Dsanitizer_libc.h67 const fd_t kStderrFd = (fd_t)2; variable
Dsanitizer_win.cc558 CHECK(res != kStderrFd || kStderrFd == kInvalidFd); in OpenFile()
605 if (fd == kStdoutFd || fd == kStderrFd) { in WriteToFile()
/external/compiler-rt/lib/asan/
Dasan_report.cc653 WriteToFile(kStderrFd, msg, sizeof(msg)); in ScopedInErrorReport()