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),
836 // Check for null after decoding the object to handle cleared weak globals.
877 // Check for null after decoding the object to handle cleared weak globals.
3170 void* handle = dlopen(path.empty() ? NULL : path.c_str(), RTLD_LAZY); local
3173 VLOG(jni) << "[Call to dlopen(\"" << path << "\", RTLD_LAZY) returned " << handle << "]"; local
3175 if (handle == NULL) {
3188 library = new SharedLibrary(path, handle, class_loader);
3202 void* sym = dlsym(handle, "JNI_OnLoad");

Completed in 64 milliseconds