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

1234567

/external/chromium_org/chrome/utility/media_galleries/
H A Diphoto_library_parser.h23 const parser::Library& library() { return library_; } function in class:iphoto::IPhotoLibraryParser
H A Ditunes_library_parser.h23 const parser::Library& library() { return library_; } function in class:itunes::ITunesLibraryParser
/external/chromium_org/third_party/android_crazy_linker/src/tests/
H A Dtest_load_library.cpp6 // - 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);
H A Dtest_constructors_destructors.cpp6 // - 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);
H A Dtest_dl_wrappers.cpp6 // - 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);
H A Dtest_jni_hooks.cpp21 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, kJniLibNam
[all...]
H A Dtest_load_library_depends.cpp6 // - 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...]
H A Dtest_load_library_callbacks.cpp48 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);
H A Dtest_search_path_list.cpp25 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 '
103 crazy_library_t* library; local
[all...]
/external/chromium_org/third_party/mesa/src/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/deqp/framework/egl/
H A DegluGLFunctionLoader.cpp30 GLFunctionLoader::GLFunctionLoader (const tcu::FunctionLibrary* library) argument
31 : m_library(library)
/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/qemu/include/android/
H A Ddynlink.h36 * the function's name as provided by the library, and 'sig' is
63 /* define pointers to dynamic library functions as static pointers.
78 * 'library' must be the result of a succesful dlopen() call
83 DYNLINK_FUNCTIONS_INIT(void* library) argument
87 _dynlink_##name = dlsym( library, DYNLINK_STR(name) ); \
/external/chromium_org/third_party/freetype/src/base/
H A Dftapi.c44 FT_New_Memory_Stream( FT_Library library, argument
49 FT_UNUSED( library );
H A Dftsynth.c87 FT_Library library = slot->library; local
131 error = FT_Bitmap_Embolden( library, &slot->bitmap, xstr, ystr );
/external/chromium_org/ui/gl/
H A Dgl_implementation_osmesa.cc20 base::NativeLibrary library = base::LoadNativeLibrary(filename, &error); local
21 if (!library) {
26 return library;
41 base::NativeLibrary library = LoadLibraryAndPrintError(library_path); local
42 if (!library)
47 base::GetFunctionPointerFromNativeLibrary(library,
51 base::UnloadNativeLibrary(library);
56 AddGLNativeLibrary(library);
/external/freetype/src/base/
H A Dftapi.c44 FT_New_Memory_Stream( FT_Library library, argument
49 FT_UNUSED( library );
H A Dftsynth.c87 FT_Library library = slot->library; local
131 error = FT_Bitmap_Embolden( library, &slot->bitmap, xstr, ystr );
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dftapi.c44 FT_New_Memory_Stream( FT_Library library, argument
49 FT_UNUSED( library );
H A Dftsynth.c87 FT_Library library = slot->library; local
131 error = FT_Bitmap_Embolden( library, &slot->bitmap, xstr, ystr );
/external/chromium_org/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);
H A Dscoped_native_library.cc12 ScopedNativeLibrary::ScopedNativeLibrary(NativeLibrary library) argument
13 : library_(library) {
32 void ScopedNativeLibrary::Reset(NativeLibrary library) { argument
35 library_ = library;
/external/chromium_org/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/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/
H A Drdfext.asm11 library alib.rdl label
/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...]

Completed in 381 milliseconds

1234567