Lines Matching defs:Tentative
331 PerfState Tentative;
332 Tentative.Pid = sys::Process::getProcessId();
338 if (auto Err = InitDebuggingDir(Tentative))
343 FilenameBuf << Tentative.JitPath << "/jit-" << Tentative.Pid << ".dump";
348 if (auto EC = openFileForReadWrite(Filename, Tentative.DumpFd,
357 Tentative.Dumpstream =
358 std::make_unique<raw_fd_ostream>(Tentative.DumpFd, true);
360 auto Header = FillMachine(Tentative);
365 if (auto Err = OpenMarker(Tentative))
368 Tentative.Dumpstream->write(reinterpret_cast<const char *>(&Header.get()),
372 if (Tentative.Dumpstream->has_error())
376 State = std::move(Tentative);