Searched defs:LibraryWrapper (Results 1 – 2 of 2) sorted by relevance
354 struct LibraryWrapper { struct355 explicit LibraryWrapper() noexcept {} in LibraryWrapper() function356 explicit LibraryWrapper(fs::path const& lib_path) noexcept : lib_path(lib_path) { in LibraryWrapper() argument364 ~LibraryWrapper() noexcept { in ~LibraryWrapper() argument371 LibraryWrapper& operator=(LibraryWrapper const& wrapper) = delete; argument372 …LibraryWrapper(LibraryWrapper&& wrapper) noexcept : lib_handle(wrapper.lib_handle), lib_path(wrapp… in LibraryWrapper() function386 FromVoidStarFunc get_symbol(const char* symbol_name) const { in get_symbol()398 loader_platform_dl_handle lib_handle = nullptr;399 fs::path lib_path;
45 OProfileJITEventListener(std::unique_ptr<OProfileWrapper> LibraryWrapper) in OProfileJITEventListener()