Home
last modified time | relevance | path

Searched refs:file (Results 201 – 225 of 645) sorted by relevance

12345678910>>...26

/art/libdexfile/
DAndroid.bp5 // you may not use this file except in compliance with the License.
380 // time dependency on dex file logic. It is therefore safe to use from binaries
381 // compiled without dex file support, given they won't encounter any dex file
402 // The same source file is used in two tests here.
471 // The same source file is used in two tests here.
/art/test/952-invoke-custom/util-src/transformer/
DIndyTransformer.java28 import java.nio.file.Files;
29 import java.nio.file.Path;
30 import java.nio.file.Paths;
/art/tools/veridex/
DREADME.md14 > ./art/tools/veridex/appcompat.sh --dex-file=test.apk
/art/test/1948-obsolete-const-method-handle/
Dinfo.txt5 have any coverage on them. To get this coverage we use ASM to build a class file
/art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
DFormat22cs.java27 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { in writeToFile() argument
/art/tools/hiddenapi/
Dhiddenapi_test.cc108 std::unique_ptr<const DexFile> OpenDex(const ScratchFile& file) { in OpenDex() argument
112 File fd(file.GetFilename(), O_RDONLY, /* check_usage= */ false); in OpenDex()
114 PLOG(FATAL) << "Unable to open file '" << file.GetFilename() << "'"; in OpenDex()
119 fd.Release(), /* location= */ file.GetFilename(), /* verify= */ true, in OpenDex()
122 LOG(FATAL) << "Open failed for '" << file.GetFilename() << "' " << error_msg; in OpenDex()
125 LOG(FATAL) << "Expected a standard dex file '" << file.GetFilename() << "'"; in OpenDex()
132 std::ofstream OpenStream(const ScratchFile& file) { in OpenStream() argument
133 std::ofstream ofs(file.GetFilename(), std::ofstream::out); in OpenStream()
135 PLOG(FATAL) << "Open failed for '" << file.GetFilename() << "'"; in OpenStream()
141 std::map<std::string, std::string> ReadFlagsCsvFile(const ScratchFile& file) { in ReadFlagsCsvFile() argument
[all …]
/art/test/1964-add-to-dex-classloader-file/src/
DMain.java174 public void addSingleUrl(String file) throws Exception { in addSingleUrl() argument
175 this.addURL(new URL("file://" + file)); in addSingleUrl()
/art/dex2oat/linker/
Doat_writer.h290 bool WriteDexFiles(File* file,
294 bool WriteDexFile(File* file,
298 bool WriteDexFile(File* file,
301 bool WriteDexFile(File* file,
307 bool OpenDexFiles(File* file,
/art/tools/jvmti-agents/ti-alloc-sample/
DREADME.md25 * log_path is an absolute file path specifying where the log is to be written.
29 The resulting file is a sequence of object allocations, with a limited form of
33 +0,jthread[main], jclass[[I file: <UNKNOWN_FILE>], size[24, hex: 0x18]
/art/test/922-properties/
Dexpected.txt16 "file.encoding": OK
18 "file.separator": OK
/art/tools/cpp-define-generator/
DAndroid.bp5 // you may not use this file except in compliance with the License.
40 // Produce text file rather than binary.
/art/test/utils/python/testgen/
Dutils.py28 print("ANDROID_BUILD_TOP not set. Please run build/envsetup.sh", file=sys.stderr)
/art/test/979-const-method-handle/util-src/transformer/
DConstantTransformer.java29 import java.nio.file.Files;
30 import java.nio.file.Path;
31 import java.nio.file.Paths;
/art/test/166-bad-interface-super/jasmin/
DBadSuper1.j4 ; you may not use this file except in compliance with the License.
DBadSuper2.j4 ; you may not use this file except in compliance with the License.
/art/test/VerifierDeps/
DMySub1SoftVerificationFailure.smali4 # you may not use this file except in compliance with the License.
DMyClassWithNoSuper.smali4 # you may not use this file except in compliance with the License.
DMySub2SoftVerificationFailure.smali4 # you may not use this file except in compliance with the License.
DMyClassExtendingInterface.smali4 # you may not use this file except in compliance with the License.
/art/test/800-smali/smali/
Db_22411633_4.smali13 # file b_22411633_bwdok.smali.
/art/test/HiddenApiStubs/
DHiddenApi5 * you may not use this file except in compliance with the License.
/art/test/976-conflict-no-methods/smali/
DNoMethods.smali5 # * you may not use this file except in compliance with the License.
/art/test/978-virtual-interface/smali/
DIface.smali5 # * you may not use this file except in compliance with the License.
17 # // Methods are sorted in alphabetical order in dex file. We need 10 padding
/art/tools/
Dlibcore_gcstress_debug_failures.txt2 * This file contains expectations for ART's buildbot when running gcstress in debug mode.
3 * The script that uses this file is art/tools/run-libcore-tests.sh.
/art/dex2oat/
Ddex2oat_test.cc540 std::unique_ptr<File> file(OS::OpenFileForReading(app_image_file.c_str())); in CheckResult() local
565 if (file != nullptr) { in CheckResult()
566 EXPECT_EQ(file->GetLength(), 0u); in CheckResult()
570 ASSERT_TRUE(file != nullptr) << app_image_file; in CheckResult()
571 EXPECT_GT(file->GetLength(), 0u); in CheckResult()
709 std::unique_ptr<File> file(OS::OpenFileForReading(image_file_name.c_str())); in GetImageObjectSectionSize() local
710 CHECK(file != nullptr); in GetImageObjectSectionSize()
712 const bool success = file->ReadFully(&image_header, sizeof(image_header)); in GetImageObjectSectionSize()
837 std::unique_ptr<File> file(OS::OpenFileForReading(app_image_file_name.c_str())); in CheckResult() local
839 bool success = file->ReadFully(&image_header, sizeof(image_header)); in CheckResult()
[all …]

12345678910>>...26