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

1234

/external/skia/src/ports/
H A DSkOSLibrary_posix.cpp19 void* GetProcedureAddress(void* library, const char* functionName) { argument
20 return dlsym(library, functionName);
H A DSkOSLibrary_win.cpp18 void* GetProcedureAddress(void* library, const char* functionName) { argument
19 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/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.cc38 void UnloadNativeLibrary(NativeLibrary library) { argument
39 int ret = dlclose(library);
47 void* GetFunctionPointerFromNativeLibrary(NativeLibrary library, argument
49 return dlsym(library, name);
/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/deqp/external/vulkancts/framework/vulkan/
H A DvkPlatform.cpp30 PlatformDriver::PlatformDriver (const tcu::FunctionLibrary& library) argument
32 #define GET_PROC_ADDR(NAME) library.getFunction(NAME)
/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/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/compiler-rt/lib/asan/
H A DAndroid.mk143 define build-asan-rt-shared-library
148 # This library must go on /system partition, even in SANITIZE_TARGET mode (when all libraries are
150 # vold itself depends on this library.
153 # We need to unwind by frame pointers through a small portion of ASan runtime library code,
180 $(eval $(call build-asan-rt-shared-library,$(ADDRESS_SANITIZER_RUNTIME_LIBRARY),64))
181 $(eval $(call build-asan-rt-shared-library,$(2ND_ADDRESS_SANITIZER_RUNTIME_LIBRARY),32))
183 $(eval $(call build-asan-rt-shared-library,$(ADDRESS_SANITIZER_RUNTIME_LIBRARY),32))
/external/freetype/include/
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.h236 /* Add a new module to a given library instance. */
239 /* library :: A handle to the library object. */
252 FT_Add_Module( FT_Library library,
265 /* library :: A handle to the library object. */
277 FT_Get_Module( FT_Library library,
287 /* Remove a given module from a library instance. */
290 /* library :: A handle to a library objec
461 FT_Reference_Library( FT_Library library ); variable
521 FT_Done_Library( FT_Library library ); variable
576 FT_Add_Default_Modules( FT_Library library ); variable
659 FT_Get_TrueType_Engine_Type( FT_Library library ); variable
[all...]
/external/freetype/src/autofit/
H A Dafmodule.c270 /* AF_SERVICES_GET dereferences `library' in PIC mode */
272 FT_Library library; local
277 library = module->library;
278 if ( !library )
324 FT_Memory memory = module->root.library->memory;

Completed in 866 milliseconds

1234