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

/art/runtime/
H A Djni_internal.cc447 SharedLibrary(const std::string& path, void* handle, Object* class_loader) argument
449 handle_(handle),
3167 void* handle = dlopen(path.empty() ? NULL : path.c_str(), RTLD_LAZY); local
3170 VLOG(jni) << "[Call to dlopen(\"" << path << "\", RTLD_LAZY) returned " << handle << "]"; local
3172 if (handle == NULL) {
3185 library = new SharedLibrary(path, handle, class_loader);
3199 void* sym = dlsym(handle, "JNI_OnLoad");

Completed in 14 milliseconds