Home
last modified time | relevance | path

Searched refs:memprof_fd (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libsanitizer/tsan/
H A Dtsan_rtl.cpp168 if (ctx->memprof_fd == kInvalidFd) in MemoryProfiler()
172 WriteToFile(ctx->memprof_fd, buf.data(), internal_strlen(buf.data())); in MemoryProfiler()
176 ctx->memprof_fd = kInvalidFd; in InitializeMemoryProfiler()
181 ctx->memprof_fd = 1; in InitializeMemoryProfiler()
183 ctx->memprof_fd = 2; in InitializeMemoryProfiler()
187 ctx->memprof_fd = OpenFile(filename.data(), WrOnly); in InitializeMemoryProfiler()
188 if (ctx->memprof_fd == kInvalidFd) { in InitializeMemoryProfiler()
H A Dtsan_rtl.h324 fd_t memprof_fd; member