Home
last modified time | relevance | path

Searched refs:extractFile (Results 1 – 4 of 4) sorted by relevance

/external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/
DLwjgl3NativesLoader.java52 …nativesDir = loader.extractFile(SharedLibraryLoader.is64Bit ? "lwjgl.dll" : "lwjgl32.dll", null).g… in load()
53 … loader.extractFile(SharedLibraryLoader.is64Bit ? "glfw.dll" : "glfw32.dll", nativesDir.getName()); in load()
54 …loader.extractFile(SharedLibraryLoader.is64Bit ? "jemalloc.dll" : "jemalloc32.dll", nativesDir.get… in load()
55 …loader.extractFile(SharedLibraryLoader.is64Bit ? "OpenAL.dll" : "OpenAL32.dll", nativesDir.getName… in load()
57 nativesDir = loader.extractFile("liblwjgl.dylib", null).getParentFile(); in load()
58 loader.extractFile("libglfw.dylib", nativesDir.getName()); in load()
59 loader.extractFile("libjemalloc.dylib", nativesDir.getName()); in load()
60 loader.extractFile("libopenal.dylib", nativesDir.getName()); in load()
62 …nativesDir = loader.extractFile(SharedLibraryLoader.is64Bit ? "liblwjgl.so" : "liblwjgl32.so", nul… in load()
63 …loader.extractFile(SharedLibraryLoader.is64Bit ? "libglfw.so" : "libglfw32.so", nativesDir.getName… in load()
[all …]
/external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/
DLwjglNativesLoader.java55 nativesDir = loader.extractFile(is64Bit ? "lwjgl64.dll" : "lwjgl.dll", null).getParentFile(); in load()
59 nativesDir = loader.extractFile("liblwjgl.dylib", null).getParentFile(); in load()
62 … nativesDir = loader.extractFile(is64Bit ? "liblwjgl64.so" : "liblwjgl.so", null).getParentFile(); in load()
/external/libgdx/gdx/src/com/badlogic/gdx/utils/
DSharedLibraryLoader.java146 public File extractFile (String sourcePath, String dirName) throws IOException { in extractFile() method in SharedLibraryLoader
157 return extractFile(sourcePath, sourceCrc, extractedFile); in extractFile()
171 extractFile(sourcePath, crc(readFile(sourcePath)), new File(dir, new File(sourcePath).getName())); in extractFileTo()
244 …private File extractFile (String sourcePath, String sourceCrc, File extractedFile) throws IOExcept… in extractFile() method in SharedLibraryLoader
317 System.load(extractFile(sourcePath, sourceCrc, extractedFile).getAbsolutePath()); in loadFile()
/external/libxml2/doc/examples/
Dreader3.c30 extractFile(const char *filename, const xmlChar *pattern) { in extractFile() function
91 doc = extractFile(filename, (const xmlChar *) pattern); in main()