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

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/chrome/utility/media_galleries/
iphoto_library_parser.h 23 const parser::Library& library() { return library_; } function in class:iphoto::IPhotoLibraryParser
26 parser::Library library_;
itunes_library_parser.h 23 const parser::Library& library() { return library_; } function in class:itunes::ITunesLibraryParser
26 parser::Library library_;
  /external/chromium_org/third_party/android_crazy_linker/src/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...]
  /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...]
  /external/chromium_org/ui/gl/
gl_implementation_osmesa.cc 20 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);
gl_implementation_mac.cc 21 "/System/Library/Frameworks/OpenGL.framework/Versions/Current/OpenGL";
60 base::NativeLibrary library = base::LoadNativeLibrary(osmesa_path, NULL); local
61 if (!library) {
69 library, "OSMesaGetProcAddress"));
72 base::UnloadNativeLibrary(library);
77 AddGLNativeLibrary(library);
86 base::NativeLibrary library = base::LoadNativeLibrary( local
88 if (!library) {
93 AddGLNativeLibrary(library);
  /external/chromium_org/third_party/freetype/src/base/
ftsynth.c 87 FT_Library library = slot->library; local
131 error = FT_Bitmap_Embolden( library, &slot->bitmap, xstr, ystr );
  /external/freetype/src/base/
ftsynth.c 87 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/
ftsynth.c 87 FT_Library library = slot->library; local
131 error = FT_Bitmap_Embolden( library, &slot->bitmap, xstr, ystr );
  /external/chromium_org/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/chromium_org/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/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/
rdfext.asm 11 library alib.rdl label
  /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/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 );

Completed in 521 milliseconds

1 2 3 4 5 6 7 8 91011