Searched refs:report_fd (Results 1 - 5 of 5) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_libcdep.cc21 return internal_isatty(report_fd) != 0;
H A Dsanitizer_common.cc35 fd_t report_fd = kStderrFd; member in namespace:__sanitizer
41 // PID of process that opened |report_fd|. If a fork() occurs, the PID of the
282 if (report_fd != kStdoutFd &&
283 report_fd != kStderrFd &&
284 report_fd != kInvalidFd)
285 internal_close(report_fd);
286 report_fd = kInvalidFd;
289 report_fd = kStdoutFd;
291 report_fd = kStderrFd;
H A Dsanitizer_posix.cc298 report_fd = kStderrFd;
303 if (report_fd != kInvalidFd) {
305 internal_close(report_fd);
307 report_fd = openrv;
316 if (length != internal_write(report_fd, buffer, length)) {
317 internal_write(report_fd, kRawWriteError, internal_strlen(kRawWriteError));
H A Dsanitizer_win.cc457 // environments that try to fake it, so the initial report_fd will always be
463 if (length != internal_write(report_fd, buffer, length)) {
H A Dsanitizer_common.h150 extern fd_t report_fd;

Completed in 695 milliseconds