Searched defs:files (Results 1 - 8 of 8) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
H A DDeleteOnExitHook.java37 private static LinkedHashSet<String> files = new LinkedHashSet<>(); field in class:DeleteOnExitHook
51 if(files == null) {
56 files.add(file);
63 theFiles = files;
64 files = null;
/libcore/ojluni/src/main/java/sun/misc/
H A DJarIndex.java37 * and resources to their enclosing JAR files. Mappings are kept
38 * at the package level except for class or resource files that
73 * If true, the names of the files in META-INF, and its subdirectories, will
99 * Constructs a new index for the specified list of jar files.
101 * @param files the list of jar files to construct the index from.
103 public JarIndex(String[] files) throws IOException { argument
105 this.jarFiles = files;
106 parseJars(files);
146 * Returns the jar files tha
227 parseJars(String[] files) argument
[all...]
/libcore/ojluni/src/main/java/sun/net/www/protocol/file/
H A DFileURLConnection.java62 List<String> files; field in class:FileURLConnection
87 files = Arrays.<String>asList(fileList);
196 if (files == null) {
200 Collections.sort(files, Collator.getInstance());
202 for (int i = 0 ; i < files.size() ; i++) {
203 String fileName = files.get(i);
/libcore/
H A DJavaLibrary.mk32 # resources/ # Support files.
36 # resources/ # Support files.
40 define all-test-java-files-under
48 # The Java files and their associated resources.
53 test_src_files := $(call all-test-java-files-under,dalvik dalvik/test-rules dom harmony-tests json luni xml)
54 ojtest_src_files := $(call all-test-java-files-under,ojluni)
59 nojcore_src_files += $(call all-java-files-under, ../external/emma/core ../external/emma/pregenerated)
87 android_icu4j_src_files := $(call all-java-files-under,$(android_icu4j_root)/src/main/java)
91 # Build jaif-annotated source files for ojluni target .
132 # Build a library just containing files fro
[all...]
/libcore/dalvik/src/main/java/dalvik/system/
H A DDexPathList.java87 * @param dexFiles the bytebuffers containing the dex files that we should load classes from.
126 * @param optimizedDirectory directory where optimized {@code .dex} files
172 // 1.2. Path to libraries in apk-files
216 * @param optimizedDirectory directory where optimized {@code .dex} files
259 * and readable files.
319 private static Element[] makeDexElements(List<File> files, File optimizedDirectory, argument
321 return makeDexElements(files, optimizedDirectory, suppressedExceptions, loader, false);
325 private static Element[] makeDexElements(List<File> files, File optimizedDirectory, argument
327 Element[] elements = new Element[files.size()];
330 * Open all files an
441 makePathElements(List<File> files, File optimizedDirectory, List<IOException> suppressedExceptions) argument
450 makePathElements(List<File> files) argument
[all...]
/libcore/luni/src/test/java/libcore/dalvik/system/
H A DDexClassLoaderTest.java69 * @param files The .dex or .jar files to use for the class path.
71 private ClassLoader createLoader(File... files) { argument
72 assertNotNull(files);
73 assertTrue(files.length > 0);
74 String path = files[0].getAbsolutePath();
75 for (int i = 1; i < files.length; i++) {
76 path += File.pathSeparator + files[i].getAbsolutePath();
84 * given files as the class path, and call a named no-argument static
89 * @param files Th
91 createLoaderAndCallMethod( String className, String methodName, File... files) argument
108 createLoaderAndGetResource(String resourceName, File... files) argument
[all...]
H A DInMemoryDexClassLoaderTest.java61 File[] files = dir.listFiles();
62 for (File file : files) {
115 * @param files The .dex files to use for the class path.
117 private static ClassLoader createLoaderDirect(File... files) throws IOException { argument
118 assertNotNull(files);
119 assertTrue(files.length > 0);
121 for (int i = 0; i < files.length; ++i) {
122 ByteBuffer buffer = ReadFileToByteBufferDirect(files[i]);
134 * @param files Th
136 createLoaderIndirect(File... files) argument
155 createLoaderDirectAndCallMethod( String className, String methodName, File... files) argument
173 createLoaderIndirectAndCallMethod( String className, String methodName, File... files) argument
[all...]
/libcore/ojluni/src/main/java/java/util/logging/
H A DFileHandler.java55 * or it can write to a rotating set of files.
57 * For a rotating set of files, as each file reaches a given size
59 * Successively older files are named by adding "0", "1", "2",
91 * specifies how many output files to cycle through (defaults to 1). </li>
97 * any existing files (defaults to false). </li>
127 * would typically cause log files to be written on Solaris to
159 private File files[]; field in class:FileHandler
256 * @exception IOException if there are IO problems opening the files.
279 * @exception IOException if there are IO problems opening the files.
311 * @exception IOException if there are IO problems opening the files
[all...]

Completed in 101 milliseconds