Home
last modified time | relevance | path

Searched refs:files (Results 1 – 25 of 64) sorted by relevance

123

/art/test/968-default-partial-compile-gen/util-src/
Dgenerate_java.py64 def compile_files(self, args, files): argument
69 files = list(map(str, files))
70 cmd = ['sh', '-a', '-e', '--', str(self.javac)] + args + files
73 print("Compiled {} files".format(len(files)))
93 files = []
98 files.append(self.temp_dir / out.get_file_name())
104 files.append(self.temp_dir / out.get_file_name())
105 self.compile_files("-d {outdir} -cp {outdir}".format(outdir = self.classes_dir), files)
/art/test/971-iface-super/util-src/
Dgenerate_java.py64 def compile_files(self, args, files): argument
69 files = list(map(str, files))
70 cmd = ['sh', '-a', '-e', '--', str(self.javac)] + args + files
73 print("Compiled {} files".format(len(files)))
97 files = []
102 files.append(self.temp_dir / out.get_file_name())
108 files.append(self.temp_dir / out.get_file_name())
109 self.compile_files("-d {outdir} -cp {outdir}".format(outdir = self.classes_dir), files)
/art/test/151-OpenFileLimit/src/
DMain.java29 List<File> files = new ArrayList<File>(); in main() local
34 files.add(file); in main()
63 for (int i = 0; i < files.size(); i++) { in main()
64 files.get(i).delete(); in main()
/art/test/677-fsi/
Drun19 exec ${RUN} $@ -Xcompiler-option --copy-dex-files=always --runtime-option -Xonly-use-system-oat-fil…
/art/tools/dexfuzz/
DREADME4 DexFuzz is primarily a tool for fuzzing DEX files. Fuzzing is the introduction of
16 In typical operation, you provide DexFuzz with a set of DEX files that are the "seeds"
18 ADB-connected Android device, and it will fuzz these seed files, and execute the
32 having DEX files pushed to it and executed with the dalvikvm command.
35 4. Create a new directory, and place some DEX files in here. These are the seed files
37 5. Create a directory on your device that mutated test files can be pushed to and
76 OAT files after compilation.
89 Iterations - number of attempts we've made to mutate DEX files.
90 VerifyFail - the number of mutated files that ended up failing to verify, either
96 Timed Out - mutated files that timed out for one or more backends.
[all …]
/art/test/693-vdex-inmem-loader-evict/
Dinfo.txt2 of vdex files in the data folder. Least recently used vdex files should be unlinked.
/art/build/
DAndroid.cpplint.mk32 … := $(addprefix $(LOCAL_PATH)/, $(call all-subdir-named-files,*.h) $(call all-subdir-named-files,*…
36 ART_CPPLINT_CFG := $(addprefix $(LOCAL_PATH)/, $(call all-subdir-named-files,CPPLINT.cfg))
/art/tools/
Dtest_presubmit.py98 def run_gen_srcs(files): argument
102 if len(files) == 0:
110 for f in files:
Dgenerate_cmake_lists.py78 for root, dirs, files in os.walk(out_art_cmakelists_dir):
79 for name in files:
/art/libnativeloader/test/
DAndroid.mk43 LOCAL_SRC_FILES := $(call all-java-files-under, src)
53 LOCAL_SRC_FILES := $(call all-java-files-under, src)
/art/runtime/interpreter/mterp/
DREADME.txt4 All the architecture-specific template files are concatenated to create
17 generated files in the "out" directory.
22 The assembly instruction files are simply fragments of assembly sources.
57 combined source files in the "out" directory. Make sure the files in
64 output files without requiring this separate step, but we're not yet
/art/test/677-fsi2/
Drun17 ${RUN} $@ --runtime-option -Xonly-use-system-oat-files
Dinfo.txt1 Test that -Xonly-use-system-oat-files works.
/art/test/462-checker-inlining-dex-files/
Dinfo.txt1 Check our inlining heuristics across dex files in optimizing.
/art/test/151-OpenFileLimit/
Dexpected.txt1 Message includes "Too many open files"
/art/test/071-dexfile-get-static-size/
Dinfo.txt3 test1.dex and test2.dex are arbitrary valid dex files.
/art/test/113-multidex/
Dinfo.txt1 Test whether we can run code from an application split into multiple dex files (similar to
/art/test/960-default-smali/
Dinfo.txt11 files.
16 To update the test files do the following steps:
/art/test/674-vdex-uncompress/
Dinfo.txt1 Test that dex2oat can compile an APK that has uncompressed dex files,
/art/test/121-modifiers/
Dinfo.txt5 To reproduce, compile the source files. Asm.java needs the ASM libraries (core and tree). Then
6 run Asm.java, which produces Inf.out and NonInf.out. Rename these to class files and put them
/art/test/981-dedup-original-dex/
Dinfo.txt4 classes original dex files.
/art/compiler/debug/
Delf_debug_line_writer.h60 std::vector<dwarf::FileEntry> files; in WriteCompilationUnit() local
201 file_index = 1 + files.size(); in WriteCompilationUnit()
203 files.push_back(dwarf::FileEntry { in WriteCompilationUnit()
264 WriteDebugLineTable(directories, files, opcodes, &buffer); in WriteCompilationUnit()
/art/test/973-default-multidex/
Dinfo.txt5 Tests that we handle referenced throws across dex files.
/art/test/800-smali/
Dinfo.txt2 Will compile and run all the smali files in smali/ and run the test cases mentioned in src/Main.jav…
/art/test/692-vdex-inmem-loader/
Dinfo.txt1 Test that dex files loaded with InMemoryDexClassLoader get verified and the verification results

123