Searched refs:libname (Results 1 - 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
H A DRuntime.java933 * Loads the native library specified by the <code>libname</code>
934 * argument. The <code>libname</code> argument must not contain any platform
936 * called <code>libname</code> is statically linked with the VM, then the
937 * JNI_OnLoad_<code>libname</code> function exported by the library is invoked.
940 * Otherwise, the libname argument is loaded from a system library
945 * method is called with the <code>libname</code> as its argument.
963 * @param libname the name of the library.
967 * @exception UnsatisfiedLinkError if either the libname argument
971 * @exception NullPointerException if <code>libname</code> is
977 public void loadLibrary(String libname) { argument
991 loadLibrary(String libname, ClassLoader classLoader) argument
998 loadLibrary0(ClassLoader loader, String libname) argument
[all...]
H A DClassLoader.java1211 * @param libname
1221 protected String findLibrary(String libname) { argument
H A DSystem.java1637 * Loads the native library specified by the <code>libname</code>
1638 * argument. The <code>libname</code> argument must not contain any platform
1640 * called <code>libname</code> is statically linked with the VM, then the
1641 * JNI_OnLoad_<code>libname</code> function exported by the library is invoked.
1644 * Otherwise, the libname argument is loaded from a system library
1654 * @param libname the name of the library.
1658 * @exception UnsatisfiedLinkError if either the libname argument
1662 * @exception NullPointerException if <code>libname</code> is
1668 public static void loadLibrary(String libname) { argument
1669 Runtime.getRuntime().loadLibrary0(VMStack.getCallingClassLoader(), libname);
1684 mapLibraryName(String libname) argument
[all...]
/libcore/ojluni/src/main/native/
H A DSystem.c148 System_mapLibraryName(JNIEnv *env, jclass ign, jstring libname) argument
155 if (libname == NULL) {
159 len = (*env)->GetStringLength(env, libname);
165 (*env)->GetStringRegion(env, libname, 0, len, chars + prefix_len);

Completed in 1024 milliseconds