Searched defs:lib (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/libs/androidfw/tests/data/appaslib/
H A DR.h26 namespace lib { namespace in namespace:com::android::appaslib
42 } // namespace lib
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.h58 lib_entry_t *lib; member in struct:effect_entry_s
66 // Structure used to store the lib entry
72 lib_entry_t *lib; member in struct:sub_effect_entry_s
H A DEffectsFactory.c70 lib_entry_t **lib,
74 lib_entry_t **lib,
92 if (fx->lib == NULL) {
96 pthread_mutex_lock(&fx->lib->lock);
100 pthread_mutex_unlock(&fx->lib->lock);
117 if (fx->lib == NULL) {
121 pthread_mutex_lock(&fx->lib->lock);
125 pthread_mutex_unlock(&fx->lib->lock);
138 if (fx->lib == NULL) {
142 pthread_mutex_lock(&fx->lib
841 findSubEffect(const effect_uuid_t *uuid, lib_entry_t **lib, effect_descriptor_t **desc) argument
938 findEffect(const effect_uuid_t *type, const effect_uuid_t *uuid, lib_entry_t **lib, effect_descriptor_t **desc) argument
[all...]
/frameworks/webview/chromium/loader/
H A Dloader.cpp67 jboolean DoCreateRelroFile(const char* lib, const char* relro) { argument
90 void* handle = android_dlopen_ext(lib, RTLD_NOW, &extinfo);
93 ALOGE("Failed to load library %s: %s", lib, dlerror());
104 ALOGV("Created relro file %s for library %s", relro, lib);
108 jint DoLoadWithRelroFile(JNIEnv* env, const char* lib, const char* relro, argument
128 void* handle = android_dlopen_ext(lib, RTLD_NOW, &extinfo);
131 ALOGE("Failed to load library %s: %s", lib, dlerror());
134 ALOGV("Loaded library %s with relro file %s", lib, relro);
149 jstring lib = lib64; local
153 jstring lib
173 jstring lib = lib64; local
[all...]
/frameworks/base/libs/androidfw/
H A DLoadedArsc.cpp564 const ResTable_lib_header* lib = child_chunk.header<ResTable_lib_header>(); local
565 if (lib == nullptr) {
570 if (child_chunk.data_size() / sizeof(ResTable_lib_entry) < dtohl(lib->count)) {
575 loaded_package->dynamic_package_map_.reserve(dtohl(lib->count));
579 const ResTable_lib_entry* const entry_end = entry_begin + dtohl(lib->count);
/frameworks/compile/mclinker/lib/Object/
H A DObjectLinker.cpp237 Module::const_lib_iterator lib, libEnd = m_pModule->lib_end(); local
238 for (lib = m_pModule->lib_begin(); lib != libEnd; ++lib) {
239 if ((*lib)->attribute()->isStatic()) {
240 error(diag::err_mixed_shared_static_objects) << (*lib)->name()
241 << (*lib)->path();
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp804 Module::const_lib_iterator lib, libEnd = pModule.lib_end(); local
805 for (lib = pModule.lib_begin(); lib != libEnd; ++lib) {
806 if (!(*lib)->attribute()->isAsNeeded() || (*lib)->isNeeded()) {
807 dynstr += (*lib)->name().size() + 1;
1053 Module::const_lib_iterator lib, libEnd = pModule.lib_end(); local
1054 for (lib = pModule.lib_begin(); lib !
[all...]

Completed in 468 milliseconds