Searched refs:library (Results 1 – 2 of 2) sorted by relevance
/art/runtime/ |
D | java_vm_ext.cc | 211 for (const auto& library : libraries_) { in Dump() local 216 os << library.first; in Dump() 229 void Put(const std::string& path, SharedLibrary* library) in Put() argument 231 libraries_.Put(path, library); in Put() 246 SharedLibrary* const library = lib.second; in FindNativeMethod() local 248 if (library->GetClassLoaderAllocator() != declaring_class_loader_allocator) { in FindNativeMethod() 253 const char* shorty = library->NeedsNativeBridge() in FindNativeMethod() 256 void* fn = library->FindSymbol(jni_short_name, shorty); in FindNativeMethod() 258 fn = library->FindSymbol(jni_long_name, shorty); in FindNativeMethod() 262 << " in \"" << library->GetPath() << "\"]"; in FindNativeMethod() [all …]
|
D | Android.mk | 414 define build-runtime-library 611 $(eval $(call build-runtime-library,host,ndebug,shared,libart)) 612 $(eval $(call build-runtime-library,host,ndebug,shared,libopenjdkjvm)) 614 $(eval $(call build-runtime-library,host,ndebug,static,libart)) 615 $(eval $(call build-runtime-library,host,ndebug,static,libopenjdkjvm)) 619 $(eval $(call build-runtime-library,host,debug,shared,libart)) 620 $(eval $(call build-runtime-library,host,debug,shared,libopenjdkjvm)) 622 $(eval $(call build-runtime-library,host,debug,static,libart)) 623 $(eval $(call build-runtime-library,host,debug,static,libopenjdkjvm)) 629 $(eval $(call build-runtime-library,target,ndebug,shared,libart)) [all …]
|