/external/deqp/framework/delibs/decpp/ |
D | deDynamicLibrary.cpp | 33 : m_library(DE_NULL) in DynamicLibrary() 35 m_library = deDynamicLibrary_open(fileName); in DynamicLibrary() 36 if (!m_library) in DynamicLibrary() 42 deDynamicLibrary_close(m_library); in ~DynamicLibrary()
|
D | deDynamicLibrary.hpp | 41 … getFunction (const char* name) const { return deDynamicLibrary_getFunction(m_library, name); } in getFunction() 47 deDynamicLibrary* m_library; member in de::DynamicLibrary
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkRenderDocUtil.cpp | 50 de::MovePtr<de::DynamicLibrary> m_library; member 62 …m_priv->m_library = de::MovePtr<de::DynamicLibrary>(new de::DynamicLibrary(RENDERDOC_LIBRARY_NAME… in RenderDocUtil() 69 if (m_priv->m_library) in RenderDocUtil() 71 …::pRENDERDOC_GetAPI pGetApi = (::pRENDERDOC_GetAPI)m_priv->m_library->getFunction("RENDERDOC_GetAP… in RenderDocUtil()
|
D | vkNullDriver.cpp | 1388 : m_library (s_platformFunctions, DE_LENGTH_OF_ARRAY(s_platformFunctions)) in NullDriverLibrary() 1389 , m_driver (m_library) in NullDriverLibrary() 1393 const tcu::FunctionLibrary& getFunctionLibrary (void) const { return m_library; } in getFunctionLibrary() 1395 const tcu::StaticFunctionLibrary m_library; member in vk::__anon9294a1450111::NullDriverLibrary
|
/external/deqp/framework/platform/android/ |
D | tcuAndroidInternals.cpp | 47 : m_library ("libui.so") in LibUI() 51 setFuncPtr(gb.constructor, m_library, "_ZN7android13GraphicBufferC1Ejjij"); in LibUI() 52 setFuncPtr(gb.destructor, m_library, "_ZN7android13GraphicBufferD1Ev"); in LibUI() 53 setFuncPtr(gb.getNativeBuffer, m_library, "_ZNK7android13GraphicBuffer15getNativeBufferEv"); in LibUI() 54 setFuncPtr(gb.lock, m_library, "_ZN7android13GraphicBuffer4lockEjPPv"); in LibUI() 55 setFuncPtr(gb.unlock, m_library, "_ZN7android13GraphicBuffer6unlockEv"); in LibUI() 56 setFuncPtr(gb.initCheck, m_library, "_ZNK7android13GraphicBuffer9initCheckEv"); in LibUI()
|
D | tcuAndroidPlatform.cpp | 60 … NativeDisplay (void) : eglu::NativeDisplay(DISPLAY_CAPABILITIES), m_library("libEGL.so") {} in NativeDisplay() 64 virtual const eglw::Library& getLibrary (void) const { return m_library; } in getLibrary() 67 eglw::DefaultLibrary m_library; member in tcu::Android::NativeDisplay 198 : m_library ("libvulkan.so") in VulkanLibrary() 199 , m_driver (m_library) in VulkanLibrary() 210 return m_library; in getFunctionLibrary() 214 const tcu::DynamicFunctionLibrary m_library; member in tcu::Android::VulkanLibrary
|
D | tcuAndroidInternals.hpp | 141 de::DynamicLibrary m_library; member in tcu::Android::internal::LibUI
|
/external/deqp/framework/platform/win32/ |
D | tcuWGL.cpp | 190 const de::DynamicLibrary& getGLLibrary (void) const { return m_library; } in getGLLibrary() 194 de::DynamicLibrary m_library; member in tcu::wgl::Library 200 : m_library("opengl32.dll") in Library() 206 m_functions.createContext = (wglCreateContextFunc) m_library.getFunction("wglCreateContext"); in Library() 207 m_functions.deleteContext = (wglDeleteContextFunc) m_library.getFunction("wglDeleteContext"); in Library() 208 m_functions.getProcAddress = (wglGetProcAddressFunc) m_library.getFunction("wglGetProcAddress"); in Library() 209 m_functions.makeCurrent = (wglMakeCurrentFunc) m_library.getFunction("wglMakeCurrent"); in Library() 210 …m_functions.swapLayerBuffers = (wglSwapLayerBuffersFunc) m_library.getFunction("wglSwapLayerBuffe… in Library() 280 : m_library(new Library(instance)) in Core() 286 delete m_library; in ~Core() [all …]
|
D | tcuWin32VulkanPlatform.cpp | 89 : m_library ("vulkan-1.dll") in VulkanLibrary() 90 , m_driver (m_library) in VulkanLibrary() 100 return m_library; in getFunctionLibrary() 104 const tcu::DynamicFunctionLibrary m_library; member in tcu::win32::VulkanLibrary
|
D | tcuWGL.hpp | 176 const Library* getLibrary (void) const { return m_library; } in getLibrary() 182 Library* m_library; member in tcu::wgl::Core
|
D | tcuWin32EGLNativeDisplayFactory.cpp | 74 const eglw::Library& getLibrary (void) const { return m_library; } in getLibrary() 80 eglw::DefaultLibrary m_library; member in tcu::win32::__anon1b601ec30111::NativeDisplay 142 , m_library ("libEGL.dll") in NativeDisplay()
|
/external/deqp/framework/platform/osx/ |
D | tcuOSXVulkanPlatform.cpp | 79 : m_library ("libvulkan.dylib") in VulkanLibrary() 80 , m_driver (m_library) in VulkanLibrary() 91 return m_library; in getFunctionLibrary() 95 const DynamicFunctionLibrary m_library; member in tcu::osx::VulkanLibrary
|
D | tcuOSXPlatform.cpp | 121 : m_library(path) in GLFunctionLoader() 127 return m_library.getFunction(name); in get() 131 de::DynamicLibrary m_library; member in tcu::__anonb7b5de490111::GLFunctionLoader
|
/external/deqp/framework/platform/surfaceless/ |
D | tcuSurfacelessPlatform.cpp | 92 : m_library ("libvulkan.so.1") in VulkanLibrary() 93 , m_driver (m_library) in VulkanLibrary() 103 return m_library; in getFunctionLibrary() 106 const tcu::DynamicFunctionLibrary m_library; member in tcu::surfaceless::VulkanLibrary 174 DynamicFuncLoader(de::DynamicLibrary* library): m_library(library) in DynamicFuncLoader() 180 return (glw::GenericFuncType)m_library->getFunction(name); in get() 184 de::DynamicLibrary* m_library; member in tcu::surfaceless::DynamicFuncLoader
|
/external/deqp/framework/platform/null/ |
D | tcuNullPlatform.cpp | 48 return m_library; in getLibrary() 57 eglw::FuncPtrLibrary m_library; member in tcu::null::NullEGLDisplay
|
/external/deqp/framework/platform/lnx/ |
D | tcuLnxVulkanPlatform.cpp | 185 : m_library ("libvulkan.so.1") in VulkanLibrary() 186 , m_driver (m_library) in VulkanLibrary() 197 return m_library; in getFunctionLibrary() 201 const DynamicFunctionLibrary m_library; member in tcu::lnx::VulkanLibrary
|
/external/deqp/framework/platform/lnx/wayland/ |
D | tcuLnxWaylandEglDisplayFactory.cpp | 69 , m_library ("libEGL.so") {} in Display() 75 const eglw::Library& getLibrary (void) const { return m_library; } in getLibrary() 80 eglw::DefaultLibrary m_library; member in tcu::lnx::wayland::egl::Display
|
/external/deqp/framework/egl/ |
D | egluGLFunctionLoader.cpp | 34 , m_library (library) in GLFunctionLoader() 40 glw::GenericFuncType func = (glw::GenericFuncType)m_library->getFunction(name); in get()
|
D | egluGLFunctionLoader.hpp | 57 …const tcu::FunctionLibrary* const m_library; //!< Base platform library for functions. Used if e… member in eglu::GLFunctionLoader
|
D | egluGLContextFactory.cpp | 117 : m_library(library) in DynamicFuncLoader() 123 return (glw::GenericFuncType)m_library->getFunction(name); in get() 127 de::DynamicLibrary* m_library; member in eglu::__anonb10fb3450111::DynamicFuncLoader
|
/external/deqp/framework/platform/nullws/ |
D | tcuNullWSPlatform.cpp | 112 return m_library; in getLibrary() 116 eglw::DefaultLibrary m_library; member in tcu::nullws::Display
|
/external/mdnsresponder/mDNSWindows/DLLStub/ |
D | DLLStub.cpp | 42 m_library( LoadLibrary( TEXT( "dnssd.dll" ) ) ) in DLLStub() 50 if ( m_library != NULL ) in ~DLLStub() 52 FreeLibrary( m_library ); in ~DLLStub() 53 m_library = NULL; in ~DLLStub() 63 if ( m_instance && m_instance->m_library ) in GetProcAddress() 71 *func = ::GetProcAddress( m_instance->m_library, lpProcName ); in GetProcAddress()
|
D | DLLStub.h | 48 HMODULE m_library; variable
|
/external/deqp/external/vulkancts/modules/vulkan/ |
D | vktTestPackage.cpp | 199 const UniquePtr<vk::Library> m_library; member in vkt::TestCaseExecutor 215 , m_library (createLibrary(testCtx)) in TestCaseExecutor() 216 , m_context (testCtx, m_library->getPlatformInterface(), m_progCollection) in TestCaseExecutor() 218 ? createDebugReportRecorder(m_library->getPlatformInterface(), in TestCaseExecutor()
|
/external/deqp/framework/platform/lnx/X11/ |
D | tcuLnxX11EglDisplayFactory.cpp | 120 const eglw::Library& getLibrary (void) const { return m_library; } in getLibrary() 125 Library m_library; member in tcu::lnx::x11::egl::Display
|