Home
last modified time | relevance | path

Searched refs:file (Results 101 – 125 of 645) sorted by relevance

12345678910>>...26

/art/libartbase/base/
Dscoped_flock.cc52 std::unique_ptr<File> file(OS::OpenFileWithFlags(filename, flags, /* auto_flush= */ false)); in Open()
53 if (file.get() == nullptr) { in Open()
59 int flock_result = TEMP_FAILURE_RETRY(flock(file->Fd(), operation)); in Open()
69 int fstat_result = TEMP_FAILURE_RETRY(fstat(file->Fd(), &fstat_stat)); in Open()
98 return ScopedFlock(new LockedFile(std::move((*file.get())))); in Open()
Dos_linux.cc65 std::unique_ptr<File> file( in OpenFileWithFlags() local
67 if (!file->IsOpened()) { in OpenFileWithFlags()
70 return file.release(); in OpenFileWithFlags()
Dlogging.h93 static void LogLineLowStack(const char* file,
118 const char* file, in VlogMessage() argument
125 msg_.emplace<::android::base::LogMessage>(file, line, severity, tag, error); in VlogMessage()
/art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
DFormat11n.java26 public void writeToFile(DexRandomAccessFile file, Instruction insn) throws IOException { in writeToFile() argument
27 file.writeByte((byte) insn.info.value); in writeToFile()
28 file.writeByte((byte) (insn.vregA | (insn.vregB << 4))); in writeToFile()
/art/test/097-duplicate-method/
Dinfo.txt1 This is a test to verify that duplicate methods in a dex file are handled
4 We need to build a dex file with duplicate methods. We cannot do that
7 dex file allows to run the test on whatever toolchain.
/art/test/970-iface-super-resolution-gen/util-src/
Dgenerate_java.py28 print("ANDROID_BUILD_TOP not set. Please run build/envsetup.sh", file=sys.stderr)
56 print("{} is not a valid java dir".format(final_java_dir), file=sys.stderr)
60 print("{} is not a valid java dir".format(initial_java_dir), file=sys.stderr)
65 print(mainclass.get_expected(), file=out)
/art/libdexfile/dex/
Dclass_reference.h32 ClassReference(const DexFile* file, uint32_t class_def_idx) in ClassReference() argument
33 : DexFileReference(file, class_def_idx) {} in ClassReference()
Ddex_file_reference.h28 DexFileReference(const DexFile* file, uint32_t idx) : dex_file(file), index(idx) {} in DexFileReference() argument
Dstring_reference.h34 StringReference(const DexFile* file, dex::StringIndex index) in StringReference() argument
35 : DexFileReference(file, index.index_) {} in StringReference()
/art/tools/dexfuzz/src/dexfuzz/rawdex/
DRawDexObject.java30 public void read(DexRandomAccessFile file) throws IOException; in read() argument
37 public void write(DexRandomAccessFile file) throws IOException; in write() argument
/art/runtime/
Delf_file_impl.h46 static ElfFileImpl* Open(File* file,
51 static ElfFileImpl* Open(File* file,
116 bool Load(File* file,
133 bool Strip(File* file, std::string* error_msg);
136 ElfFileImpl(File* file, bool writable, bool program_header_only);
142 bool Setup(File* file, int prot, int flags, bool low_4gb, std::string* error_msg);
144 bool SetMap(File* file, MemMap&& map, std::string* error_msg);
168 bool CheckSectionsExist(File* file, std::string* error_msg) const;
/art/test/MultiDexModifiedSecondary/
DREADME.txt1 MultiDexModifiedSecondary is designed to result in a multidex file that has
2 the same classes.dex file as MultiDex, but a different classes2.dex.
/art/test/606-erroneous-class/jasmin-multidex/
DClassA.j4 ; you may not use this file except in compliance with the License.
21 ; Obtain the ErrClass type from Dex cache of the first Dex file. Note that
22 ; because the first Dex file has already been verified, we know the class
26 ; the Dex cache of the second Dex file.
/art/tools/ahat/src/ri-test-dump/
DMain.java33 String file = args[0]; in main() local
41 bean.dumpHeap(file, false); in main()
/art/test/683-clinit-inline-static-invoke/
Dinfo.txt2 call to a static method used a type index from the wrong dex file because the
3 current dex file does not have a TypeId for it. This was likely to crash.
/art/tools/checker/common/
Dlogger.py52 print(content, file=out)
54 print(content, end="", file=out)
58 def fail(msg, file=None, line=-1, lineText=None, variables=None): argument
64 if file:
65 loc += file + ":"
/art/libelffile/dwarf/
Dheaders.h147 for (const FileEntry& file : files) { in WriteDebugLineTable() local
148 writer.PushData(file.file_name.data(), file.file_name.size() + 1); in WriteDebugLineTable()
149 writer.PushUleb128(file.directory_index); in WriteDebugLineTable()
150 writer.PushUleb128(file.modification_time); in WriteDebugLineTable()
151 writer.PushUleb128(file.file_size); in WriteDebugLineTable()
/art/build/
DAndroid.gtest.mk187 $(foreach file,$(ART_GTEST_$(1)_DEX_DEPS),$(ART_TEST_HOST_GTEST_$(file)_DEX)) \
269 $(foreach file,$(ART_GTEST_$(1)_DEX_DEPS),$(ART_TEST_TARGET_GTEST_$(file)_DEX)) \
318 $(foreach file,$(ART_HOST_GTEST_FILES), $(eval $(call define-art-gtest-host,$(file),)))
320 $(foreach file,$(2ND_ART_HOST_GTEST_FILES), $(eval $(call define-art-gtest-host,$(file),2ND_)))
323 …$(foreach file,$(ART_HOST_GTEST_FILES), $(eval $(call define-art-gtest-host-both,$$(notdir $$(base…
330 $(foreach file,$(art_target_gtest_files),\
331 $(eval testdir := $$(notdir $$(patsubst %/,%,$$(dir $$(file)))))\
332 $(eval testfile := $$(notdir $$(basename $$(file))))\
/art/tools/
Dcompile-jar.sh39 --dex-file=${FILE} --dex-location=/system/framework/${FILE} \
40 --oat-file=${OUTPUT} \
Dwrap-logcat.py42 print("Must have some command to run.", file=sys.stderr)
43 parser.print_help(file=sys.stderr)
/art/test/971-iface-super/util-src/
Dgenerate_java.py28 print("ANDROID_BUILD_TOP not set. Please run build/envsetup.sh", file=sys.stderr)
118 print("{} is not a shell script".format(javac_exec), file=sys.stderr)
122 print("{} is not a valid source dir".format(temp_dir), file=sys.stderr)
126 print("{} is not a valid classes directory".format(classes_dir), file=sys.stderr)
132 print(mainclass.get_expected(), file=out)
/art/test/968-default-partial-compile-gen/util-src/
Dgenerate_java.py28 print("ANDROID_BUILD_TOP not set. Please run build/envsetup.sh", file=sys.stderr)
114 print("{} is not a shell script".format(javac_exec), file=sys.stderr)
118 print("{} is not a valid source dir".format(temp_dir), file=sys.stderr)
122 print("{} is not a valid classes directory".format(classes_dir), file=sys.stderr)
128 print(mainclass.get_expected(), file=out)
/art/tools/checker/
Dchecker.py24 from match.file import MatchFiles
79 for file in files:
80 extension = os.path.splitext(file)[1]
82 foundFiles.append(os.path.join(root, file))
/art/libprofile/profile/
Dprofile_boot_info_test.cc69 for (const std::unique_ptr<const DexFile>& file : dex_files) { in TEST_F() local
70 dex_files2.push_back(file.get()); in TEST_F()
107 for (const std::unique_ptr<const DexFile>& file : dex_files) { in TEST_F() local
108 dex_files2.push_back(file.get()); in TEST_F()
/art/test/098-ddmc/
Dexpected.txt2 …er of class name strings: 0 number of method name strings: 0 number of source file name strings: 0]
14 …er of class name strings: 0 number of method name strings: 0 number of source file name strings: 0]
23 …er of class name strings: 0 number of method name strings: 0 number of source file name strings: 0]

12345678910>>...26