Searched defs:LibraryWrapper (Results 1 – 2 of 2) sorted by relevance
315 struct LibraryWrapper { struct316 explicit LibraryWrapper() noexcept {} in LibraryWrapper() function317 explicit LibraryWrapper(fs::path const& lib_path) noexcept : lib_path(lib_path) { in LibraryWrapper() function325 ~LibraryWrapper() noexcept { in ~LibraryWrapper() argument332 LibraryWrapper& operator=(LibraryWrapper const& wrapper) = delete; argument333 …LibraryWrapper(LibraryWrapper&& wrapper) noexcept : lib_handle(wrapper.lib_handle), lib_path(wrapp… in LibraryWrapper() argument347 FromVoidStarFunc get_symbol(const char* symbol_name) const { in get_symbol()359 loader_platform_dl_handle lib_handle = nullptr;360 fs::path lib_path;
45 OProfileJITEventListener(std::unique_ptr<OProfileWrapper> LibraryWrapper) in OProfileJITEventListener()