Searched defs:LibraryWrapper (Results 1 – 2 of 2) sorted by relevance
306 struct LibraryWrapper { struct307 explicit LibraryWrapper() noexcept {} in LibraryWrapper() argument308 explicit LibraryWrapper(std::filesystem::path const& lib_path) noexcept : lib_path(lib_path) { in LibraryWrapper() argument315 ~LibraryWrapper() noexcept { in ~LibraryWrapper() argument322 LibraryWrapper& operator=(LibraryWrapper const& wrapper) = delete; argument323 …LibraryWrapper(LibraryWrapper&& wrapper) noexcept : lib_handle(wrapper.lib_handle), lib_path(wrapp… in LibraryWrapper() function337 FromVoidStarFunc get_symbol(const char* symbol_name) const { in get_symbol()349 test_platform_dl_handle lib_handle = nullptr;350 std::filesystem::path lib_path;
45 OProfileJITEventListener(std::unique_ptr<OProfileWrapper> LibraryWrapper) in OProfileJITEventListener()