HomeSort by relevance Sort by last modified time
    Searched defs:library (Results 1 - 25 of 1053) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/tools/relocation_packer/
Android.mk 21 # $(1) library name
22 define copy-test-library
33 $(eval $(call copy-test-library,elf_file_unittest_relocs_arm32.so))
34 $(eval $(call copy-test-library,elf_file_unittest_relocs_arm32_packed.so))
35 $(eval $(call copy-test-library,elf_file_unittest_relocs_arm64.so))
36 $(eval $(call copy-test-library,elf_file_unittest_relocs_arm64_packed.so))
37 $(eval $(call copy-test-library,elf_file_unittest_relocs_ia32.so))
38 $(eval $(call copy-test-library,elf_file_unittest_relocs_ia32_packed.so))
39 $(eval $(call copy-test-library,elf_file_unittest_relocs_x64.so))
40 $(eval $(call copy-test-library,elf_file_unittest_relocs_x64_packed.so)
    [all...]
  /external/autotest/client/bin/
os_dep.py 25 def library(lib): function
50 raise ValueError('Missing library: %s' % lib)
56 results.append(library(lib))
  /frameworks/data-binding/extensions/library/src/doc/java/com/android/databinding/library/
R.java 16 package com.android.databinding.library;
  /development/tools/bugreport/src/com/android/bugreport/stacks/
NativeStackFrameSnapshot.java 24 public String library; field in class:NativeStackFrameSnapshot
35 that.library = this.library;
  /external/freetype/src/base/
ftsynth.c 92 FT_Library library; local
101 library = slot->library;
140 error = FT_Bitmap_Embolden( library, &slot->bitmap, xstr, ystr );
ftglyph.c 26 /* handy for many other simple uses of the library. */
65 FT_Library library = FT_GLYPH( glyph )->library; local
86 error = FT_Bitmap_Copy( library, &slot->bitmap, &glyph->bitmap );
98 FT_Library library = bitmap_source->library; local
106 return FT_Bitmap_Copy( library, &source->bitmap, &target->bitmap );
114 FT_Library library = FT_GLYPH( glyph )->library; local
117 FT_Bitmap_Done( library, &glyph->bitmap )
165 FT_Library library = FT_GLYPH( glyph )->library; local
209 FT_Library library = FT_GLYPH( source )->library; local
366 FT_Library library; local
524 FT_Library library; local
    [all...]
  /external/pdfium/third_party/freetype/src/base/
ftsynth.c 92 FT_Library library; local
101 library = slot->library;
140 error = FT_Bitmap_Embolden( library, &slot->bitmap, xstr, ystr );
ftglyph.c 26 /* handy for many other simple uses of the library. */
65 FT_Library library = FT_GLYPH( glyph )->library; local
86 error = FT_Bitmap_Copy( library, &slot->bitmap, &glyph->bitmap );
98 FT_Library library = bitmap_source->library; local
106 return FT_Bitmap_Copy( library, &source->bitmap, &target->bitmap );
114 FT_Library library = FT_GLYPH( glyph )->library; local
117 FT_Bitmap_Done( library, &glyph->bitmap )
163 FT_Library library = FT_GLYPH( glyph )->library; local
207 FT_Library library = FT_GLYPH( source )->library; local
362 FT_Library library; local
520 FT_Library library; local
    [all...]
  /external/swiftshader/src/Common/
SharedLibrary.hpp 26 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, mustContainSymbol)
    [all...]
  /external/deqp/framework/delibs/deutil/
deDynamicLibrary.c 2 * drawElements Utility Library
21 * \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)
55 if (library && library->libHandle
88 deDynamicLibrary* library = (deDynamicLibrary*)deCalloc(sizeof(deDynamicLibrary)); local
    [all...]
  /external/deqp/framework/egl/
egluGLFunctionLoader.cpp 21 * \brief glw::FunctionLoader using eglGetProcAddress() and tcu::Library.
32 GLFunctionLoader::GLFunctionLoader (const eglw::Library& egl, const tcu::FunctionLibrary* library)
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;
    [all...]
  /external/freetype/include/freetype/internal/
ftpic.h 55 ft_pic_container_init( FT_Library library ); variable
60 ft_pic_container_destroy( FT_Library library ); variable
  /external/freetype/src/raster/
ftrend1.c 34 FT_Library library = FT_MODULE_LIBRARY( render ); local
38 library->raster_pool,
39 library->raster_pool_size );
  /external/pdfium/third_party/freetype/include/freetype/internal/
ftpic.h 55 ft_pic_container_init( FT_Library library ); variable
60 ft_pic_container_destroy( FT_Library library ); variable
  /external/pdfium/third_party/freetype/src/raster/
ftrend1.c 34 FT_Library library = FT_MODULE_LIBRARY( render ); local
38 library->raster_pool,
39 library->raster_pool_size );
  /frameworks/av/services/mediadrm/
MediaCasService.cpp 76 sp<SharedLibrary> library; local
77 if (mCasLoader->findFactoryForScheme(CA_system_id, &library, &factory)) {
82 casImpl->init(library, plugin);
106 sp<SharedLibrary> library; local
108 CA_system_id, &library, &factory)) {
112 *result = new DescramblerImpl(library, plugin);
  /hardware/interfaces/drm/1.0/vts/functional/
vendor_modules.cpp 51 auto library = std::make_unique<SharedLibrary>(path); local
52 if (!library) {
53 ALOGE("failed to map shared library %s", path.c_str());
56 mOpenLibraries[path] = std::move(library);
58 const unique_ptr<SharedLibrary>& library = mOpenLibraries[path]; local
59 void* symbol = library->lookup("vendorModuleFactory");
62 "%s", path.c_str(), library->lastError());
  /external/mdnsresponder/mDNSWindows/
PosixCompat.c 29 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...]
  /frameworks/av/media/libmedia/include/media/
PluginLoader.h 71 sp<SharedLibrary> library = new SharedLibrary(String8(path)); local
72 if (!library.get()) {
73 ALOGE("Failed to open plugin library %s: %s", path,
74 library->lastError());
78 (CreateFactoryFunc)library->lookup(entry);
81 libraries.push(library);
  /device/generic/goldfish-opengl/
common.mk 18 # $(call emugl-begin-static-library,<name>)
23 emugl-begin-static-library = $(call emugl-begin-module,$1,STATIC_LIBRARY)
24 emugl-begin-shared-library = $(call emugl-begin-module,$1,SHARED_LIBRARY)
34 $(eval LOCAL_MODULE_CLASS := $(patsubst HOST_%,%,$(patsubst %EXECUTABLE,%EXECUTABLES,$(patsubst %LIBRARY,%LIBRARIES,$2)))) \
67 # $(call emugl-begin-static-library,foo)
73 # $(call emugl-begin-shared-library,bar)
78 # Here, we define a static library named 'foo' which exports an include
79 # path and a shared library requirement, and a shared library 'bar' which
208 # The following function can be called to generate GL library wrappe
    [all...]
  /external/freetype/src/cache/
ftcmanag.h 93 FT_Library library; member in struct:FTC_ManagerRec_
  /external/protobuf/src/google/protobuf/compiler/js/
js_generator.h 63 // Create a library with name <name>_lib.js rather than a separate .js file
65 string library; member in struct:google::protobuf::compiler::js::GeneratorOptions
83 library(""),
  /external/webrtc/webrtc/system_wrappers/source/
condition_variable_native_win.cc 17 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");
rw_lock_win.cc 19 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");
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/compiler/js/
js_generator.h 63 // Create a library with name <name>_lib.js rather than a separate .js file
65 string library; member in struct:google::protobuf::compiler::js::GeneratorOptions
83 library(""),

Completed in 712 milliseconds

1 2 3 4 5 6 7 8 91011>>