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.cc36 ReportFile report_file = {&report_file_mu, kStderrFd, "", "", 0};
44 if (fd == kStdoutFd || fd == kStderrFd) return; in ReopenIfNecessary()
70 WriteToFile(kStderrFd, ErrorMsgPrefix, internal_strlen(ErrorMsgPrefix)); in ReopenIfNecessary()
71 WriteToFile(kStderrFd, full_path, internal_strlen(full_path)); in ReopenIfNecessary()
89 if (fd != kStdoutFd && fd != kStderrFd && fd != kInvalidFd) in SetReportPath()
95 fd = kStderrFd; in SetReportPath()
Dsanitizer_libc.h67 const fd_t kStderrFd = (fd_t)2; variable
Dsanitizer_win.cc477 CHECK(res != kStderrFd || kStderrFd == kInvalidFd); in OpenFile()
524 if (fd == kStdoutFd || fd == kStderrFd) { in WriteToFile()
/external/compiler-rt/lib/asan/
Dasan_report.cc652 WriteToFile(kStderrFd, msg, sizeof(msg)); in ScopedInErrorReport()