Uses of Class
org.conscrypt.NativeLibraryLoader.LoadResult
-
Packages that use NativeLibraryLoader.LoadResult Package Description org.conscrypt -
-
Uses of NativeLibraryLoader.LoadResult in org.conscrypt
Methods in org.conscrypt that return NativeLibraryLoader.LoadResult Modifier and Type Method Description private static NativeLibraryLoader.LoadResult
NativeLibraryLoader. loadLibraryFromCurrentClassloader(java.lang.String name, boolean absolute)
Attempts to load the library using theNativeLibraryUtil
helper from the current classloader.private static NativeLibraryLoader.LoadResult
NativeLibraryLoader. loadLibraryFromHelperClassloader(java.lang.Class<?> helper, java.lang.String name, boolean absolute)
Attempts to load the library by reflectively using theNativeLibraryUtil
helper from its classloader.private static NativeLibraryLoader.LoadResult
NativeLibraryLoader.LoadResult. newFailureResult(java.lang.String name, boolean absolute, boolean usingHelperClassloader, java.lang.Throwable error)
private static NativeLibraryLoader.LoadResult
NativeLibraryLoader.LoadResult. newSuccessResult(java.lang.String name, boolean absolute, boolean usingHelperClassloader)
Methods in org.conscrypt with parameters of type NativeLibraryLoader.LoadResult Modifier and Type Method Description int
NativeCryptoJni.ErrorComparator. compare(NativeLibraryLoader.LoadResult o1, NativeLibraryLoader.LoadResult o2)
Method parameters in org.conscrypt with type arguments of type NativeLibraryLoader.LoadResult Modifier and Type Method Description private static boolean
NativeLibraryLoader. load(java.lang.String name, java.lang.ClassLoader loader, java.util.List<NativeLibraryLoader.LoadResult> results)
Load the given library with the specifiedClassLoader
(package private) static boolean
NativeLibraryLoader. loadFirstAvailable(java.lang.ClassLoader loader, java.util.List<NativeLibraryLoader.LoadResult> results, java.lang.String... names)
Loads the first available library in the collection with the specifiedClassLoader
.private static boolean
NativeLibraryLoader. loadFromWorkdir(java.lang.String name, java.lang.ClassLoader loader, java.util.List<NativeLibraryLoader.LoadResult> results)
private static boolean
NativeLibraryLoader. loadLibrary(java.lang.ClassLoader loader, java.lang.String name, boolean absolute, java.util.List<NativeLibraryLoader.LoadResult> results)
Loading the native library into the specifiedClassLoader
.private static void
NativeCryptoJni. logResults(java.util.List<NativeLibraryLoader.LoadResult> results)
private static void
NativeCryptoJni. throwBestError(java.util.List<NativeLibraryLoader.LoadResult> results)
-