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

/libcore/luni/src/main/java/java/lang/
H A DRuntime.java311 * specified path. This method is similar to {@link #loadLibrary(String)},
312 * but it accepts a full path specification whereas {@code loadLibrary} just
347 public void loadLibrary(String libName) { method in class:Runtime
348 loadLibrary(libName, VMStack.getCallingClassLoader());
354 void loadLibrary(String libraryName, ClassLoader loader) { method in class:Runtime
H A DSystem.java504 * specified path. This method is similar to {@link #loadLibrary(String)},
505 * but it accepts a full path specification whereas {@code loadLibrary} just
525 public static void loadLibrary(String libName) { method in class:System
526 Runtime.getRuntime().loadLibrary(libName, VMStack.getCallingClassLoader());

Completed in 133 milliseconds