Home
last modified time | relevance | path

Searched refs:files (Results 1 – 25 of 58) 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()
62 for (int i = 0; i < files.size(); i++) { in main()
63 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/test/677-fsi2/
Drun18 ${RUN} $@ --runtime-option -Xonly-use-system-oat-files
22 ${RUN} $@ --no-dex2oat --runtime-option -Xonly-use-system-oat-files
Dinfo.txt1 Test that -Xonly-use-system-oat-files works.
/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
78 OAT files after compilation.
91 Iterations - number of attempts we've made to mutate DEX files.
92 VerifyFail - the number of mutated files that ended up failing to verify, either
98 Timed Out - mutated files that timed out for one or more backends.
[all …]
/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/amm/
DAndroid.mk20 LOCAL_SRC_FILES := $(call all-c-files-under, AmmTest/jni)
28 LOCAL_SRC_FILES := $(call all-java-files-under, AmmTest/src)
/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/test/151-OpenFileLimit/
Dexpected.txt1 Message includes "Too many open files"
/art/test/462-checker-inlining-dex-files/
Dinfo.txt1 Check our inlining heuristics across dex files in optimizing.
/art/runtime/interpreter/mterp/
DMakefile_mterp34 # Accumulate all possible dependencies for the generated files in a very
35 # conservative fashion. If it's not one of the generated files in "out",
40 # Source files generated by the script. There's always one C and one
/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/674-vdex-uncompress/
Dinfo.txt1 Test that dex2oat can compile an APK that has uncompressed dex files,
/art/test/981-dedup-original-dex/
Dinfo.txt4 classes original dex files.
/art/test/960-default-smali/
Dinfo.txt11 files.
16 To update the test files do the following steps:
/art/tools/amm/models/
DSoCode.md4 sizes of all loaded `.so` files. It is calculated by reading `/proc/self/maps`.
10 or what is causing a library to remain loaded. Individual `.so` files can be
DDexCode.md4 sizes of all loaded dex files. It is calculated using the best approximation
11 `dalvik.system.DexFile` instance. Further breakdown of individual 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/tools/ahat/
DAndroid.mk23 LOCAL_SRC_FILES := $(call all-java-files-under, src/main)
45 LOCAL_SRC_FILES := $(call all-java-files-under, src/main)
98 LOCAL_SRC_FILES := $(call all-java-files-under, src/test-dump)
150 LOCAL_SRC_FILES := $(call all-java-files-under, src/test)
/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…

123