Home
last modified time | relevance | path

Searched defs:LibraryWrapper (Results 1 – 2 of 2) sorted by relevance

/third_party/vulkan-loader/tests/framework/
Dtest_util.h306 struct LibraryWrapper { struct
307 explicit LibraryWrapper() noexcept {} in LibraryWrapper() argument
308 explicit LibraryWrapper(std::filesystem::path const& lib_path) noexcept : lib_path(lib_path) { in LibraryWrapper() argument
315 ~LibraryWrapper() noexcept { in ~LibraryWrapper() argument
322 LibraryWrapper& operator=(LibraryWrapper const& wrapper) = delete; argument
323LibraryWrapper(LibraryWrapper&& wrapper) noexcept : lib_handle(wrapper.lib_handle), lib_path(wrapp… in LibraryWrapper() function
337 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;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/OProfileJIT/
DOProfileJITEventListener.cpp45 OProfileJITEventListener(std::unique_ptr<OProfileWrapper> LibraryWrapper) in OProfileJITEventListener()