Searched defs:library (Results 1 - 25 of 99) sorted by relevance

1234

/external/skia/src/ports/
H A DSkOSLibrary_posix.cpp18 void* GetProcedureAddress(void* library, const char* functionName) { argument
19 return dlsym(library, functionName);
H A DSkOSLibrary_win.cpp17 void* GetProcedureAddress(void* library, const char* functionName) { argument
18 return reinterpret_cast<void*>(::GetProcAddress((HMODULE)library, functionName));
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_dl.c58 util_dl_get_proc_address(struct util_dl_library *library, argument
62 return (util_dl_proc) pointer_to_func(dlsym((void *)library, procname));
64 return (util_dl_proc)GetProcAddress((HMODULE)library, procname);
72 util_dl_close(struct util_dl_library *library) argument
75 dlclose((void *)library);
77 FreeLibrary((HMODULE)library);
79 (void)library;
/external/autotest/client/bin/
H A Dos_dep.py25 def library(lib): function
50 raise ValueError('Missing library: %s' % lib)
56 results.append(library(lib))
/external/freetype/src/base/
H A Dftapi.c44 FT_New_Memory_Stream( FT_Library library, argument
49 FT_UNUSED( library );
H A Dftsynth.c92 FT_Library library; local
101 library = slot->library;
140 error = FT_Bitmap_Embolden( library, &slot->bitmap, xstr, ystr );
/external/pdfium/third_party/freetype/src/base/
H A Dftapi.c44 FT_New_Memory_Stream( FT_Library library, argument
49 FT_UNUSED( library );
H A Dftsynth.c92 FT_Library library; local
101 library = slot->library;
140 error = FT_Bitmap_Embolden( library, &slot->bitmap, xstr, ystr );
/external/deqp/framework/delibs/deutil/
H A DdeDynamicLibrary.c21 * \brief Dynamic link library abstraction.
39 deDynamicLibrary* library = (deDynamicLibrary*)deCalloc(sizeof(deDynamicLibrary)); local
40 if (!library)
43 library->libHandle = dlopen(fileName, RTLD_LAZY);
44 if (!library->libHandle)
46 deFree(library);
50 return library;
53 void deDynamicLibrary_close (deDynamicLibrary* library) argument
55 if (library && library
60 deDynamicLibrary_getFunction(const deDynamicLibrary* library, const char* symbolName) argument
88 deDynamicLibrary* library = (deDynamicLibrary*)deCalloc(sizeof(deDynamicLibrary)); local
102 deDynamicLibrary_close(deDynamicLibrary* library) argument
109 deDynamicLibrary_getFunction(const deDynamicLibrary* library, const char* symbolName) argument
[all...]
/external/deqp/framework/egl/
H A DegluGLFunctionLoader.cpp32 GLFunctionLoader::GLFunctionLoader (const eglw::Library& egl, const tcu::FunctionLibrary* library) argument
34 , m_library (library)
62 tcu::FunctionLibrary* library = DE_NULL; local
68 library = m_platform.createDefaultGLFunctionLibrary(apiType, m_cmdLine);
71 m_libraries.insert(std::make_pair(key, library));
75 delete library;
80 library = iter->second;
82 return library;
/external/deqp/scripts/egl/
H A D__init__.py30 import library namespace
41 library.gen(registry)
/external/freetype/include/freetype/internal/
H A Dftpic.h55 ft_pic_container_init( FT_Library library ); variable
60 ft_pic_container_destroy( FT_Library library ); variable
/external/libchrome/base/
H A Dnative_library_posix.cc39 void UnloadNativeLibrary(NativeLibrary library) { argument
40 int ret = dlclose(library);
48 void* GetFunctionPointerFromNativeLibrary(NativeLibrary library, argument
50 return dlsym(library, name.data());
/external/pdfium/third_party/freetype/include/freetype/internal/
H A Dftpic.h55 ft_pic_container_init( FT_Library library ); variable
60 ft_pic_container_destroy( FT_Library library ); variable
/external/swiftshader/src/Common/
H A DSharedLibrary.hpp26 void freeLibrary(void *library);
27 void *getProcAddress(void *library, const char *name);
34 void *library = getLibraryHandle(names[i]); local
36 if(library)
38 if(!mustContainSymbol || getProcAddress(library, mustContainSymbol))
40 return library;
43 freeLibrary(library);
49 void *library = loadLibrary(names[i]); local
51 if(library)
53 if(!mustContainSymbol || getProcAddress(library, mustContainSymbo
78 freeLibrary(void *library) argument
83 getProcAddress(void *library, const char *name) argument
110 freeLibrary(void *library) argument
118 getProcAddress(void *library, const char *name) argument
[all...]
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkPlatform.cpp30 PlatformDriver::PlatformDriver (const tcu::FunctionLibrary& library) argument
32 m_vk.getInstanceProcAddr = (GetInstanceProcAddrFunc)library.getFunction("vkGetInstanceProcAddr");
/external/freetype/src/cache/
H A Dftcmanag.h93 FT_Library library; member in struct:FTC_ManagerRec_
/external/freetype/src/raster/
H A Dftrend1.c34 FT_Library library = FT_MODULE_LIBRARY( render ); local
38 library->raster_pool,
39 library->raster_pool_size );
/external/mdnsresponder/mDNSWindows/
H A DPosixCompat.c29 HMODULE library; local
34 // Try and load the IP helper library dll
35 if ((library = LoadLibrary(TEXT("Iphlpapi")) ) != NULL )
40 if ((if_nametoindex_funcptr = (if_nametoindex_funcptr_t) GetProcAddress(library, "if_nametoindex")) != NULL )
45 FreeLibrary(library);
55 HMODULE library; local
61 // Try and load the IP helper library dll
62 if ((library = LoadLibrary(TEXT("Iphlpapi")) ) != NULL )
67 if ((if_indextoname_funcptr = (if_indextoname_funcptr_t) GetProcAddress(library, "if_indextoname")) != NULL )
72 FreeLibrary(library);
[all...]
/external/pdfium/third_party/freetype/src/raster/
H A Dftrend1.c34 FT_Library library = FT_MODULE_LIBRARY( render ); local
38 library->raster_pool,
39 library->raster_pool_size );
/external/replicaisland/src/com/replica/replicaisland/
H A DDebugSystem.java36 public DebugSystem(TextureLibrary library) { argument
38 if (library != null) {
39 mRedBoxTexture = library.allocateTexture(R.drawable.debug_box_red);
40 mBlueBoxTexture = library.allocateTexture(R.drawable.debug_box_blue);
41 mOutlineBoxTexture = library.allocateTexture(R.drawable.debug_box_outline);
42 mRedCircleTexture = library.allocateTexture(R.drawable.debug_circle_red);
43 mBlueCircleTexture = library.allocateTexture(R.drawable.debug_circle_blue);
44 mOutlineCircleTexture = library.allocateTexture(R.drawable.debug_circle_outline);
/external/webrtc/webrtc/system_wrappers/source/
H A Dcondition_variable_native_win.cc17 static HMODULE library = NULL; member in namespace:webrtc
47 if (!library) {
49 library = LoadLibrary(TEXT("Kernel32.dll"));
52 if (library) {
53 // TODO(henrike): not thread safe as reading and writing to library is not
59 library, "InitializeConditionVariable");
61 library, "SleepConditionVariableCS");
63 library, "WakeConditionVariable");
65 library, "WakeAllConditionVariable");
H A Drw_lock_win.cc19 static HMODULE library = NULL; member in namespace:webrtc
68 library = LoadLibrary(TEXT("Kernel32.dll"));
69 if (!library) {
75 (InitializeSRWLock)GetProcAddress(library, "InitializeSRWLock");
78 (AcquireSRWLockExclusive)GetProcAddress(library,
81 (ReleaseSRWLockExclusive)GetProcAddress(library,
84 (AcquireSRWLockShared)GetProcAddress(library, "AcquireSRWLockShared");
86 (ReleaseSRWLockShared)GetProcAddress(library, "ReleaseSRWLockShared");
/external/freetype/include/freetype/
H A Dftglyph.h27 /* handy for many other simple uses of the library. */
83 /* Glyph objects are not owned by the library. You must thus release */
100 /* library :: A handle to the FreeType library object. */
110 FT_Library library; member in struct:FT_GlyphRec_
H A Dftmodapi.h240 /* Add a new module to a given library instance. */
243 /* library :: A handle to the library object. */
256 FT_Add_Module( FT_Library library,
269 /* library :: A handle to the library object. */
281 FT_Get_Module( FT_Library library,
291 /* Remove a given module from a library instance. */
294 /* library :: A handle to a library objec
479 FT_Set_Default_Properties( FT_Library library ); variable
506 FT_Reference_Library( FT_Library library ); variable
567 FT_Done_Library( FT_Library library ); variable
622 FT_Add_Default_Modules( FT_Library library ); variable
700 FT_Get_TrueType_Engine_Type( FT_Library library ); variable
[all...]

Completed in 773 milliseconds

1234