Home
last modified time | relevance | path

Searched refs:key (Results 51 – 71 of 71) sorted by relevance

123

/art/build/apex/
DAndroid.bp187 name: "com.android.art.key",
214 key: "com.android.art.key",
340 key: "com.android.art.key",
Dart_apex_test.py918 for i, key in enumerate(key_list):
921 val = apex_map[key]
/art/libartbase/base/
Dutils.h155 std::string GetProcessStatus(const char* key);
Dmem_map.cc814 node.key() = base_begin_; in ReleaseReservedMemory()
1289 node.key() = aligned_base_begin; in AlignBy()
/art/runtime/
Doat_file.cc478 std::string_view key(oat_dex_file->GetDexFileLocation()); in Setup() local
479 oat_dex_files_.Put(key, oat_dex_file); in Setup()
915 std::string_view key = oat_dex_file_location; // References oat file data. in Setup() local
917 oat_dex_files_.Put(key, oat_dex_file); in Setup()
918 if (canonical_key != key) { in Setup()
1807 std::string_view key(dex_location); in GetOatDexFile() local
1810 auto primary_it = oat_dex_files_.find(key); in GetOatDexFile()
1819 auto secondary_lb = secondary_oat_dex_files_.lower_bound(key); in GetOatDexFile()
1820 if (secondary_lb != secondary_oat_dex_files_.end() && key == secondary_lb->first) { in GetOatDexFile()
1834 string_cache_.emplace_back(key.data(), key.length()); in GetOatDexFile()
Dintern_table.h82 std::size_t operator()(const Utf8String& key) const { in operator()
84 return static_cast<uint32_t>(key.GetHash()); in operator()
Dthread.h1287 TLSData* GetCustomTLS(const char* key) REQUIRES(!Locks::custom_tls_lock_);
1291 void SetCustomTLS(const char* key, TLSData* data) REQUIRES(!Locks::custom_tls_lock_);
Dthread.cc537 TLSData* Thread::GetCustomTLS(const char* key) { in GetCustomTLS() argument
539 auto it = custom_tls_.find(key); in GetCustomTLS()
543 void Thread::SetCustomTLS(const char* key, TLSData* data) { in SetCustomTLS() argument
549 custom_tls_.GetOrCreate(key, []() { return std::unique_ptr<TLSData>(); }).swap(old_data); in SetCustomTLS()
Dclass_linker.cc7531 size_t operator()(const PairType& key) const { in CheckVTableHasNoDuplicates()
7532 return BaseHashType::HashCombine(BaseHashType::HashCombine(0, key.first), key.second); in CheckVTableHasNoDuplicates()
7595 size_t operator()(const Entry& key) const { in CheckVTableHasNoDuplicates()
7596 return key.cached_hash; in CheckVTableHasNoDuplicates()
/art/libprofile/profile/
Dprofile_compilation_info.h92 DexReference(const std::string& key, uint32_t checksum, uint32_t num_methods) in DexReference()
93 : profile_key(key), dex_checksum(checksum), num_method_ids(num_methods) {} in DexReference()
601 const std::string& key, in DexFileData()
607 profile_key(key), in DexFileData()
/art/dex2oat/
Ddex2oat.cc1244 const Dex2oatArgumentMap::Key<T>& key, in AssignIfExists() argument
1246 map.AssignIfExists(key, out); in AssignIfExists()
1251 const Dex2oatArgumentMap::Key<std::string>& key, in AssignIfExists() argument
1253 if (map.Exists(key)) { in AssignIfExists()
1254 char_backing_storage_.push_front(std::move(*map.Get(key))); in AssignIfExists()
1259 const Dex2oatArgumentMap::Key<std::vector<std::string>>& key, in AssignIfExists() argument
1261 if (map.Exists(key)) { in AssignIfExists()
1262 for (auto& val : *map.Get(key)) { in AssignIfExists()
1271 const Dex2oatArgumentMap::Key<T>& key, in AssignTrueIfExists() argument
1273 if (map.Exists(key)) { in AssignTrueIfExists()
[all …]
/art/test/utils/python/
Dgenerate_java_main.py159 for f in sorted(self.funcs, key=lambda a: (a.func, a.farg)):
/art/tools/hiddenapi/
Dhiddenapi_test.cc157 std::string SafeMapGet(const std::string& key, const std::map<std::string, std::string>& map) { in SafeMapGet() argument
158 auto it = map.find(key); in SafeMapGet()
160 LOG(FATAL) << "Key not found: " << key; in SafeMapGet()
/art/runtime/interpreter/mterp/arm/
Dobject.S42 ldrd r0, r1, [r0] @ entry key (pc) and value (offset)
/art/runtime/jit/
Dprofile_saver.cc739 const std::string key = ProfileCompilationInfo::GetProfileDexFileBaseKey(location); in Start() local
741 if (code_paths_keys.find(key) != code_paths_keys.end()) { in Start()
Djit_code_cache.cc1754 JniStubKey key(method); in NotifyCompilationOf() local
1755 auto it = jni_stubs_map_.find(key); in NotifyCompilationOf()
1759 it = jni_stubs_map_.Put(key, JniStubData{}); in NotifyCompilationOf()
/art/runtime/hprof/
Dhprof.cc993 uint64_t key = (static_cast<uint64_t>(heap_tag) << 32) | PointerToLowMemUInt32(obj); in MarkRootObject() local
994 if (simple_roots_.insert(key).second) { in MarkRootObject()
/art/cmdline/
DREADME.md158 key.
/art/runtime/verifier/
Dmethod_verifier.cc1559 int32_t key = in CheckSwitchTargets() local
1562 if (UNLIKELY(key <= last_key)) { in CheckSwitchTargets()
1564 << ", this=" << key; in CheckSwitchTargets()
1567 last_key = key; in CheckSwitchTargets()
/art/oatdump/
Doatdump.cc467 const char* key; in Dump() local
469 while (oat_header.GetStoreKeyValuePairByIndex(index, &key, &value)) { in Dump()
470 os << key << " = " << value << "\n"; in Dump()
/art/libdexfile/dex/
Ddex_file_verifier.cc396 size_t operator()(const uint32_t key) const { in operator ()()
397 return key; in operator ()()

123