30 private static final long RTLD_DEFAULT = 0;
33 private static final int RTLD_LAZY = 0x00001;
35 private static final int RTLD_LOCAL = 0x00000;
36 private static final int RTLD_GLOBAL = 0x00100;
40 return dlopen(pathname, RTLD_LAZY | RTLD_LOCAL);
45 return dlopen(pathname, RTLD_LAZY | RTLD_GLOBAL);
50 return dlsym(RTLD_DEFAULT, symbolName);
final long lookupSymbolGlobalImpl(final String symbolName)
final long openLibraryGlobalImpl(final String pathname)
final long openLibraryLocalImpl(final String pathname)