Home
last modified time | relevance | path

Searched refs:FDRController (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
H A Dfdr_controller_test.cc50 std::unique_ptr<FDRController<>> C;
59 C = llvm::make_unique<FDRController<>>(BQ.get(), B, *W, clock_gettime, 0); in SetUp()
107 C = llvm::make_unique<FDRController<>>(BQ.get(), B, *W, clock_gettime, 1000); in TEST_F()
122 C = llvm::make_unique<FDRController<>>(BQ.get(), B, *W, clock_gettime, 1000); in TEST_F()
142 C = llvm::make_unique<FDRController<>>(BQ.get(), B, *W, clock_gettime, 1000); in TEST_F()
167 C = llvm::make_unique<FDRController<>>(BQ.get(), B, *W, clock_gettime, 1000); in TEST_F()
191 C = llvm::make_unique<FDRController<>>(BQ.get(), B, *W, clock_gettime, 1000); in TEST_F()
218 C = llvm::make_unique<FDRController<>>(BQ.get(), B, *W, clock_gettime, 1000); in TEST_F()
252 C = llvm::make_unique<FDRController<>>(BQ.get(), B, *W, clock_gettime, 1000); in TEST_F()
300 std::unique_ptr<FDRController<>> C;
[all …]
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/xray/
H A Dxray_fdr_logging.cc66 typename std::aligned_storage<sizeof(FDRController<>),
67 alignof(FDRController<>)>::type;
69 FDRController<> *Controller = nullptr;
485 auto *CStorage = reinterpret_cast<FDRController<> *>(&TLD.CStorage); in setupTLD()
487 FDRController<>(TLD.BQ, TLD.Buffer, *TLD.Writer, clock_gettime, in setupTLD()
H A Dxray_fdr_controller.h26 template <size_t Version = 5> class FDRController {
237 FDRController(BufferQueue *BQ, BufferQueue::Buffer &B, FDRLogWriter &W, in FDRController() function