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

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/android/crazy_linker/tests/
test_load_library.cpp 6 // - Load a library (libfoo.so) with the linker.
9 // - Close the library.
20 crazy_library_t* library; local
26 if (!crazy_library_open(&library, "libfoo.so", context)) {
27 Panic("Could not open library: %s\n", crazy_context_get_error(context));
33 library, "Foo", reinterpret_cast<void**>(&foo_func))) {
40 // Close the library.
42 crazy_library_close(library);
test_constructors_destructors.cpp 6 // - Load a library (libfoo_with_static_constructor.so) with the linker.\
11 // - Close the library, this shall execute a static destructor that will
25 crazy_library_t* library; local
34 &library, "libfoo_with_static_constructor.so", context)) {
35 Panic("Could not open library: %s\n", crazy_context_get_error(context));
46 library, "Foo", reinterpret_cast<void**>(&foo_func))) {
53 // Close the library.
55 crazy_library_close(library);
test_dl_wrappers.cpp 6 // - Load a library (libzoo.so) with the linker.
10 // - Close the library.
24 crazy_library_t* library; local
27 if (!crazy_library_open(&library, "libzoo.so", context)) {
28 Panic("Could not open library: %s\n", crazy_context_get_error(context));
34 library, "Zoo", reinterpret_cast<void**>(&zoo_func))) {
43 // Close the library.
45 crazy_library_close(library);
test_jni_hooks.cpp 21 crazy_library_t* library; local
23 // Expect to find the library in the same directory than this executable.
31 if (!crazy_library_open(&library, kJniLibName, context))
32 Panic("Could not open library: %s\n", crazy_context_get_error(context));
38 crazy_library_close(library);
44 // prevent loading the library properly, since it only supports 1.2.
48 if (crazy_library_open(&library, kJniLibName, context))
49 Panic("Could load the library with JNI_VERSION_1_6 > JNI_VERSION_1_2.");
51 // Disable the feature, this shall load the library, but not call the
56 if (!crazy_library_open(&library, kJniLibName, context)
    [all...]
test_load_library_depends.cpp 6 // - Load a library (libbar.so) with the linker, which depends on
7 // another library (libfoo.so)
10 // - Close the library.
21 crazy_library_t* library; local
27 if (!crazy_library_open(&library, "libbar.so", context)) {
28 Panic("Could not open library: %s\n", crazy_context_get_error(context));
34 library, "Bar", reinterpret_cast<void**>(&bar_func))) {
44 library, "Foo", reinterpret_cast<void**>(&foo_func))) {
48 // Close the library.
50 crazy_library_close(library);
    [all...]
test_load_library_callbacks.cpp 48 crazy_library_t* library; local
69 if (!crazy_library_open(&library, "libfoo.so", context)) {
70 Panic("Could not open library: %s\n", crazy_context_get_error(context));
77 library, "Foo", reinterpret_cast<void**>(&foo_func))) {
84 // Close the library.
85 crazy_library_close_with_context(library, context);
test_search_path_list.cpp 25 crazy_library_t* library; local
27 if (crazy_library_open(&library, library_name, context))
28 Panic("Could load library %s, expected this not to be possible\n",
32 // Loads a library named |library_name| and checks that it contains
34 // listed in |unwanted_symbols|. After that, close the library and exit.
42 crazy_library_t* library; local
44 if (!crazy_library_open(&library, library_name, context))
45 Panic("Could not open library %s: %s\n", crazy_context_get_error(context));
53 if (!crazy_library_find_symbol(library, symbol_name, &symbol_addr)) {
55 "Could not find symbol '%s' in library '%s'!\n"
103 crazy_library_t* library; local
    [all...]
  /frameworks/data-binding/library/src/doc/java/com/android/databinding/library/
R.java 16 package com.android.databinding.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 )
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/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
205 FT_Library library = FT_GLYPH( source )->library; local
358 FT_Library library; local
516 FT_Library library; local
    [all...]
  /bionic/tools/relocation_packer/
Android.mk 83 # $(1) library name
84 define copy-test-library
95 $(eval $(call copy-test-library,elf_file_unittest_relocs_arm32.so))
96 $(eval $(call copy-test-library,elf_file_unittest_relocs_arm32_packed.so))
97 $(eval $(call copy-test-library,elf_file_unittest_relocs_arm64.so))
98 $(eval $(call copy-test-library,elf_file_unittest_relocs_arm64_packed.so))
  /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/deqp/scripts/egl/
__init__.py 30 import library namespace
42 library.gen(registry)
  /external/freetype/include/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/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 );
  /external/webrtc/src/system_wrappers/source/
rw_lock_win.cc 22 static HMODULE library = NULL; member in namespace:webrtc
50 if(!library)
53 library = LoadLibrary(TEXT("Kernel32.dll"));
54 if(library)
61 library,
66 library,
70 library,
74 library,
78 library,
  /system/core/libbacktrace/
BacktraceCurrent.cpp 86 const std::string library = basename(frame.map.name.c_str()); local
87 if (library == "libunwind.so" || library == "libbacktrace.so") {
  /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)))) \
56 # $(call emugl-begin-static-library,foo)
62 # $(call emugl-begin-shared-library,bar)
67 # Here, we define a static library named 'foo' which exports an include
68 # path and a shared library requirement, and a shared library 'bar' which
197 # The following function can be called to generate GL library wrappe
    [all...]
  /external/freetype/src/autofit/
afmodule.c 270 /* 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;
  /external/freetype/src/cache/
ftcmanag.h 93 FT_Library library; member in struct:FTC_ManagerRec_

Completed in 701 milliseconds

1 2 3 4 5 6 7 8 91011>>