HomeSort by relevance Sort by last modified time
    Searched defs:loadLibrary (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/conscrypt/openjdk/src/main/java/org/conscrypt/
NativeLibraryUtil.java 35 * A Utility to Call the {@link System#load(String)} or {@link System#loadLibrary(String)}.
36 * Because the {@link System#load(String)} and {@link System#loadLibrary(String)} are both
46 * Delegate the calling to {@link System#load(String)} or {@link System#loadLibrary(String)}.
50 public static void loadLibrary(String libName, boolean absolute) {
54 System.loadLibrary(libName);
NativeLibraryLoader.java 197 loadLibrary(loader, name, false);
224 loadLibrary(loader, tmpFile.getPath(), true);
247 private static void loadLibrary(
259 NativeLibraryUtil.loadLibrary(name, absolute); // Fallback to local helper class.
270 Method method = helper.getMethod("loadLibrary", String.class, boolean.class);
  /frameworks/base/vr/java/com/google/vr/platform/
Dvr.java 13 public static Long loadLibrary() {
15 System.loadLibrary("dvr_loader");
  /art/test/141-class-unload/src-ex/
IntHolder.java 34 public static void loadLibrary(String name) {
35 System.loadLibrary(name);
  /external/swiftshader/src/Common/
SharedLibrary.hpp 25 void *loadLibrary(const char *path);
30 void *loadLibrary(const char *(&names)[n], const char *mustContainSymbol = nullptr)
49 void *library = loadLibrary(names[i]);
66 inline void *loadLibrary(const char *path)
68 return (void*)LoadLibrary(path);
88 inline void *loadLibrary(const char *path)
  /external/jsilver/src/org/clearsilver/jni/
JNI.java 81 public static void loadLibrary() {
JniCs.java 36 JNI.loadLibrary();
JniHdf.java 40 JNI.loadLibrary();
  /system/core/include/nativebridge/
native_bridge.h 193 void* (*loadLibrary)(const char* libpath, int flag);
199 // handle [IN] the handle returned from loadLibrary
352 // Use loadLibrary instead in non-namespace scenario.
  /art/test/141-class-unload/src/
Main.java 58 System.loadLibrary(nativeLibraryName);
224 Method loadLibrary = intHolder.getDeclaredMethod("loadLibrary", String.class);
225 loadLibrary.invoke(intHolder, nativeLibraryName);
236 Method loadLibrary = intHolder.getDeclaredMethod("loadLibrary", String.class);
237 loadLibrary.invoke(intHolder, nativeLibraryName);
  /external/libmojo/base/android/java/src/org/chromium/base/library_loader/
LibraryLoader.java 89 // The return value of NativeLibraryPreloader.loadLibrary(), which will be reported
95 * Set native library preloader, if set, the NativeLibraryPreloader.loadLibrary will be invoked
96 * before calling System.loadLibrary, this only applies when not using the chromium linker.
225 private void loadLibrary(Linker linker, @Nullable String zipFilePath, String libFilePath) {
231 linker.loadLibrary(zipFilePath, libFilePath);
239 linker.loadLibrary(zipFilePath, libFilePath);
248 // Invoke either Linker.loadLibrary(...) or System.loadLibrary(...), triggering
284 loadLibrary(linker, zipFilePath, libFilePath);
290 mLibraryPreloaderStatus = sLibraryPreloader.loadLibrary(context)
    [all...]
Linker.java 26 * The point of this class is to provide an alternative to System.loadLibrary()
91 * - Native shared libraries should be loaded with Linker.loadLibrary(),
92 * instead of System.loadLibrary(). The two functions should behave the same
102 * disableSharedRelros() early (i.e. before any loadLibrary() call).
107 * disableSharedRelros() completely disables shared RELROs, and loadLibrary()
108 * will behave exactly like System.loadLibrary().
121 * - Load libraries randomly (just like System.loadLibrary()).
142 * - In a service process, finishLibraryLoad() and/or loadLibrary() may
527 System.loadLibrary(LINKER_JNI_LIBRARY);
530 System.loadLibrary(LINKER_JNI_LIBRARY + ".cr")
    [all...]
  /external/libmojo/jni/java/lang/
Runtime.class 
  /external/jline/src/src/main/java/jline/
WindowsTerminal.java 240 loadLibrary("jline");
267 private void loadLibrary(final String name) throws IOException {
  /libcore/ojluni/src/main/java/java/lang/
Runtime.java     [all...]
System.java     [all...]
  /frameworks/av/media/libeffects/factory/
EffectsFactory.c 60 static int loadLibrary(cnode *root, const char *name);
507 loadLibrary(node, node->name);
570 int loadLibrary(cnode *root, const char *name)
585 ALOGW("loadLibrary() could not find library %s", path);
591 ALOGW("loadLibrary() failed to open %s", path);
597 ALOGW("loadLibrary() could not find symbol %s", AUDIO_EFFECT_LIBRARY_INFO_SYM_AS_STR);
608 ALOGW("loadLibrary() bad lib version %08x", desc->version);
  /prebuilts/tools/common/m2/repository/net/java/dev/jna/jna/3.4.0/
jna-3.4.0.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.launcher.jar 
org.eclipse.equinox.launcher_1.1.0.v20100507.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar 
  /external/jline/
jline-1.0.jar 
  /prebuilts/tools/common/m2/repository/jline/jline/0.9.94/
jline-0.9.94.jar 
  /external/robolectric/v3/libs/
sqlite4java-0.282.jar 

Completed in 353 milliseconds

1 2 3