34 private static final long RTLD_DEFAULT = -2L;
37 private static final int RTLD_LAZY = 0x00001;
39 private static final int RTLD_LOCAL = 0x00004;
40 private static final int RTLD_GLOBAL = 0x00008;
44 return dlopen(pathname, RTLD_LAZY | RTLD_LOCAL);
49 return dlopen(pathname, RTLD_LAZY | RTLD_GLOBAL);
54 return dlsym(RTLD_DEFAULT, symbolName);
Mac OS X specialization of UnixDynamicLinkerImpl utilizing OS X 's non POSIX flags and mode values.
final long openLibraryLocalImpl(final String pathname)
final long lookupSymbolGlobalImpl(final String symbolName)
final long openLibraryGlobalImpl(final String pathname)