Searched refs:library (Results 1 - 2 of 2) sorted by relevance

/libnativehelper/
H A DJniInvocation.cpp56 bool JniInvocation::Init(const char* library) { argument
63 if (library == NULL) {
64 library = default_library;
67 handle_ = dlopen(library, RTLD_NOW);
69 if (strcmp(library, kLibraryFallback) == 0) {
71 ALOGE("Failed to dlopen %s: %s", library, dlerror());
80 library, kLibraryFallback, dlerror());
81 library = kLibraryFallback;
82 handle_ = dlopen(library, RTLD_NOW);
84 ALOGE("Failed to dlopen %s: %s", library, dlerro
[all...]
/libnativehelper/include/nativehelper/
H A DJniInvocation.h26 // library will chosen based on the value of Android system property
35 // Initialize JNI invocation API. library should specifiy a valid
36 // shared library for opening via dlopen providing a JNI invocation
39 bool Init(const char* library);

Completed in 3 milliseconds