Home
last modified time | relevance | path

Searched refs:Find (Results 1 – 20 of 20) sorted by relevance

/art/libdexfile/dex/
Dtype_lookup_table_test.cc39 TEST_P(TypeLookupTableTest, Find) { in TEST_P() argument
Dart_dex_file_loader.cc118 std::unique_ptr<ZipEntry> zip_entry(zip_archive->Find(zip_entry_name.c_str(), error_msg)); in GetMultiDexChecksums()
138 zip_entry.reset(zip_archive->Find(zip_entry_name.c_str(), error_msg)); in GetMultiDexChecksums()
390 std::unique_ptr<ZipEntry> zip_entry(zip_archive.Find(entry_name, error_msg)); in OpenOneDexFileFromZip()
Ddex_file_loader.cc122 DexZipEntry* Find(const char* name, std::string* error_msg) const { in Find() function in art::DexZipArchive
399 std::unique_ptr<DexZipEntry> zip_entry(zip_archive.Find(entry_name, error_msg)); in OpenOneDexFileFromZip()
/art/libartbase/base/
Dzip_archive_test.cc39 std::unique_ptr<ZipEntry> zip_entry(zip_archive->Find("classes.dex", &error_msg)); in TEST_F()
Dzip_archive.h96 ZipEntry* Find(const char* name, std::string* error_msg) const;
Dzip_archive.cc264 ZipEntry* ZipArchive::Find(const char* name, std::string* error_msg) const { in Find() function in art::ZipArchive
/art/cmdline/
DAndroid.bp17 // TODO: this header library depends on libart. Find a way to express that.
/art/runtime/
Dintern_table.cc110 return strong_interns_.Find(string); in LookupStrong()
114 return weak_interns_.Find(s); in LookupWeakLocked()
118 return strong_interns_.Find(s); in LookupStrongLocked()
391 ObjPtr<mirror::String> InternTable::Table::Find(ObjPtr<mirror::String> s) { in Find() function in art::InternTable::Table
402 ObjPtr<mirror::String> InternTable::Table::Find(const Utf8String& string) { in Find() function in art::InternTable::Table
Dintern_table-inl.h66 CHECK(Find(string.Read<kWithoutReadBarrier>()) == nullptr) in AddInternStrings()
Dintern_table.h244 ObjPtr<mirror::String> Find(ObjPtr<mirror::String> s) REQUIRES_SHARED(Locks::mutator_lock_)
246 ObjPtr<mirror::String> Find(const Utf8String& string) REQUIRES_SHARED(Locks::mutator_lock_)
/art/openjdkjvmti/
Djvmti_weak_table.h121 ALWAYS_INLINE art::ObjPtr<art::mirror::Object> Find(T tag)
Djvmti_weak_table-inl.h389 art::ObjPtr<art::mirror::Object> JvmtiWeakTable<T>::Find(T tag) {
Dti_heap.cc1525 art::ObjPtr<art::mirror::Object> obj = tag_table->Find(tag); in GetObjectHeapId()
/art/test/
DREADME.md146 $ find out/host/ -type f -name art_runtime_tests # Find the path of the test.
/art/tools/hiddenapi/
Dhiddenapi_test.cc56 std::unique_ptr<ZipEntry> jar_classes_dex(jar->Find("classes.dex", &error)); in RunHiddenapiEncode()
/art/dex2oat/
Ddex2oat.cc1605 std::unique_ptr<ZipEntry> zip_entry(dm_file_->Find(VdexFile::kVdexNameInDmFile, &error_msg)); in OpenFile()
2920 std::unique_ptr<ZipEntry> zip_entry(zip_archive->Find(input_filename, error_msg)); in ReadCommentedInputFromZip()
Ddex2oat_test.cc2280 std::unique_ptr<ZipEntry> entry(zip_archive->Find(entry_name.c_str(), &error_msg)); in TEST_F()
/art/libprofile/profile/
Dprofile_compilation_info.cc1214 std::unique_ptr<ZipEntry> zip_entry(zip_archive->Find(kDexMetadataProfileEntry, error)); in OpenSource()
/art/runtime/interpreter/
Dunstarted_runtime.cc492 std::unique_ptr<ZipEntry> zip_entry(zip_archive->Find(entry_name, error_msg)); in FindAndExtractEntry()
/art/dex2oat/linker/
Doat_writer.cc568 std::unique_ptr<ZipEntry> entry(zip_archive->Find(entry_name.c_str(), &error_msg)); in AddDexFileSource()