Home
last modified time | relevance | path

Searched refs:file (Results 126 – 150 of 645) sorted by relevance

12345678910>>...26

/art/compiler/driver/
Dcompiler_options_map.def5 * you may not use this file except in compliance with the License.
18 #error "Please #define COMPILER_OPTIONS_KEY before #including this file"
19 #define COMPILER_OPTIONS_KEY(...) // Don't display errors in this file in IDEs.
22 // This file defines the list of keys for CompilerOptionsMap.
/art/dex2oat/linker/
Delf_writer.h46 static void GetOatElfInformation(File* file,
53 static bool Fixup(File* file, uintptr_t oat_data_begin);
/art/openjdkjvmti/
Dti_search.cc287 art::File file(art::memfd_create_compat("JVMTI InMemory Added dex file", 0), /*check-usage*/true); in AddToDexClassLoaderInMemory() local
288 if (file.Fd() < 0) { in AddToDexClassLoaderInMemory()
291 if (file.FlushClose() < 0) { in AddToDexClassLoaderInMemory()
297 if (!file.WriteFully(dex_bytes, dex_bytes_length) || file.Flush() != 0) { in AddToDexClassLoaderInMemory()
299 if (file.FlushClose() < 0) { in AddToDexClassLoaderInMemory()
306 oss << "/proc/self/fd/" << file.Fd(); in AddToDexClassLoaderInMemory()
314 if (file.Close() != 0) { in AddToDexClassLoaderInMemory()
Dti_logging.h60 const char* file, in JvmtiLogMessage() argument
66 real_log_(file, line, severity, tag, error), in JvmtiLogMessage()
/art/test/707-checker-invalid-profile/
Dexpected.txt1 Invalid inline cache in profile file.
/art/test/545-tracing-and-jit/src/
DMain.java33 private static File file; field in Main
41 file = createTempFile(); in main()
46 if (file != null) { in main()
47 file.delete(); in main()
91 VMDebug.startMethodTracing(file.getPath(), 0, 0, false, 0); in doLoadsOfStuff()
/art/test/370-dex-v37/
Dinfo.txt1 Print "Hello, World!" with a version 37 dex file.
/art/test/674-HelloWorld-Dm/
Dinfo.txt1 Hello World test with --dm-file passed to dex2oat.
/art/build/
DAndroid.cpplint.mk65 $(foreach file, $(ART_CPPLINT_SRC), $(eval $(call declare-art-cpplint-target,$(file))))
/art/test/501-null-constant-dce/
Dinfo.txt1 Regression test for the optimizing compiler. See comment in smali file.
/art/test/970-iface-super-resolution-gen/
Dexpected.txt1 This file is generated by util-src/generate_smali.py do not directly modify!
/art/test/971-iface-super/
Dexpected.txt1 This file is generated by util-src/generate_smali.py do not directly modify!
/art/test/677-fsi/
Dexpected.txt1 oat file has dex code, but APK has uncompressed dex code
/art/test/992-source-data/
Dinfo.txt1 Tests that we can get the source file of a class from JVMTI.
/art/test/1992-retransform-no-such-field/
Dexpected.txt1 This file was written in the year 2019!
/art/test/304-method-tracing/
Drun18 exec ${RUN} "$@" --runtime-option -Xmethod-trace --runtime-option -Xmethod-trace-file:${DEX_LOCATIO…
/art/test/961-default-iface-resolution-gen/
Dexpected.txt1 This file is generated by util-src/generate_smali.py do not directly modify!
/art/test/968-default-partial-compile-gen/
Dexpected.txt1 This file is generated by util-src/generate_smali.py do not directly modify!
/art/test/964-default-iface-init-gen/
Dexpected.txt1 This file is generated by util-src/generate_smali.py do not directly modify!
/art/test/2036-jni-filechannel/
Dinfo.txt2 from a zero length file.
/art/test/431-type-propagation/
Dinfo.txt2 compiler. See comment in smali file.
/art/test/503-dead-instructions/
Dinfo.txt2 compiler. See comment in smali file.
/art/test/498-type-propagation/
Dinfo.txt2 compiler. See comment in smali file.
/art/test/520-equivalent-phi/
Dinfo.txt2 compiler. See comment in smali file.
/art/tools/dexfuzz/src/dexfuzz/rawdex/
DInstruction.java116 public void read(DexRandomAccessFile file) throws IOException { in read() argument
119 long offset = file.getFilePointer(); in read()
120 int opcodeValue = readOpcode(file); in read()
128 file.seek(offset); in read()
129 file.read(rawBytes); in read()
146 public void write(DexRandomAccessFile file) throws IOException { in write() argument
150 file.write(rawBytes); in write()
152 info.format.writeToFile(file, this); in write()
168 private int readOpcode(DexRandomAccessFile file) throws IOException { in readOpcode() argument
169 short firstCodeWord = file.readUShort(); in readOpcode()
[all …]

12345678910>>...26