HomeSort by relevance Sort by last modified time
    Searched defs:library (Results 1 - 25 of 1205) 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...]
  /frameworks/support/lifecycle/compiler/src/tests/test-data/lib/src/test/library/
ObserverNoAdapter.java 17 package test.library;
LibraryBaseObserver.java 17 package test.library;
PPObserverNoAdapter.java 17 package test.library;
PPObserverWithAdapter.java 17 package test.library;
LibraryBaseObserver_LifecycleAdapter.java 17 package test.library;
  /frameworks/support/lifecycle/compiler/src/tests/test-data/lib/
test-library.jar 
  /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;
  /frameworks/support/lifecycle/compiler/src/tests/test-data/expected/
ObserverNoAdapter_LifecycleAdapter.java 17 package test.library;
  /cts/common/device-side/nativetesthelper/src/com/android/gtestrunner/
GtestRunner.java 38 TargetLibrary library = (TargetLibrary) testClass.getAnnotation(TargetLibrary.class); local
39 if (library == null) {
42 System.loadLibrary(library.value());
  /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 );
  /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/tools/ftfuzzer/
rasterfuzzer.cc 30 static FT_Library library; variable
36 InitResult = FT_Init_FreeType( &library );
39 FT_Done_FreeType( library );
122 FT_Outline_Get_Bitmap( library, &outline, &bitmap_mono );
123 FT_Outline_Get_Bitmap( library, &outline, &bitmap_gray );
  /external/freetype/src/tools/
test_afm.c 76 parse_afm( FT_Library library,
85 psaux = (PSAux_Service)FT_Get_Module_Interface( library, "psaux" );
94 library->memory,
114 FT_Library library; local
123 error = FT_Init_FreeType( &library );
131 stream.memory = library->memory;
134 error = parse_afm( library, &stream, &fi );
138 FT_Memory memory = library->memory;
154 FT_Done_FreeType( library );
  /external/tensorflow/tensorflow/core/framework/
load_library.cc 29 struct Library {
36 // Load a dynamic library.
37 // On success, returns the handle to library in result, copies the serialized
38 // OpList of OpDefs registered in the library to *buf and the length to *len,
43 // and OpList. Ops and kernels are registered as globals when a library is
49 static std::unordered_map<string, Library> loaded_libs;
51 Library library; local
56 library = loaded_libs[library_filename];
63 [&library, &seen_op_names](const Status& s
    [all...]
  /hardware/interfaces/drm/1.0/vts/functional/
vendor_modules.cpp 54 auto library = std::make_unique<SharedLibrary>(String8(path.c_str())); local
55 if (!library) {
56 ALOGE("failed to map shared library %s", path.c_str());
59 mOpenLibraries[path] = std::move(library);
61 const unique_ptr<SharedLibrary>& library = mOpenLibraries[path]; local
62 void* symbol = library->lookup("vendorModuleFactory");
65 "%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);
  /hardware/interfaces/cas/1.0/default/
MediaCasService.cpp 68 sp<SharedLibrary> library; local
69 if (mCasLoader.findFactoryForScheme(CA_system_id, &library, &factory)) {
74 casImpl->init(library, plugin);
95 sp<SharedLibrary> library; local
97 CA_system_id, &library, &factory)) {
101 result = new DescramblerImpl(library, plugin);
  /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)))) \
71 # $(call emugl-begin-static-library,foo)
77 # $(call emugl-begin-shared-library,bar)
82 # Here, we define a static library named 'foo' which exports an include
83 # path and a shared library requirement, and a shared library 'bar' which
216 # The following function can be called to generate GL library wrappe
    [all...]

Completed in 1288 milliseconds

1 2 3 4 5 6 7 8 91011>>