HomeSort by relevance Sort by last modified time
    Searched refs:SafeMap (Results 1 - 25 of 28) sorted by null

1 2

  /art/runtime/
safe_map.h 33 class SafeMap {
35 typedef SafeMap<K, V, Comparator, Allocator> Self;
47 SafeMap() = default;
48 SafeMap(const SafeMap&) = default;
49 explicit SafeMap(const key_compare& cmp, const allocator_type& allocator = allocator_type())
149 bool operator==(const SafeMap<K, V, Comparator, Allocator>& lhs,
150 const SafeMap<K, V, Comparator, Allocator>& rhs) {
155 bool operator!=(const SafeMap<K, V, Comparator, Allocator>& lhs,
156 const SafeMap<K, V, Comparator, Allocator>& rhs)
    [all...]
oat.h 55 const SafeMap<std::string, std::string>* variable_data);
124 const SafeMap<std::string, std::string>* variable_data);
129 void Flatten(const SafeMap<std::string, std::string>* variable_data);
oat.cc 33 static size_t ComputeOatHeaderSize(const SafeMap<std::string, std::string>* variable_data) {
36 SafeMap<std::string, std::string>::const_iterator it = variable_data->begin();
37 SafeMap<std::string, std::string>::const_iterator end = variable_data->end();
49 const SafeMap<std::string, std::string>* variable_data) {
66 const SafeMap<std::string, std::string>* variable_data)
499 void OatHeader::Flatten(const SafeMap<std::string, std::string>* key_value_store) {
502 SafeMap<std::string, std::string>::const_iterator it = key_value_store->begin();
503 SafeMap<std::string, std::string>::const_iterator end = key_value_store->end();
trace.h 286 SafeMap<pid_t, std::string> exited_threads_;
instrumentation.h 554 typedef SafeMap<const char*, InstrumentationLevel> InstrumentationLevelTable;
  /art/compiler/dex/
verified_method.h 41 typedef SafeMap<uint32_t, MethodReference> DevirtualizationMap;
44 typedef SafeMap<uint32_t, DexFileReference> DequickenMap;
verification_results.h 62 typedef SafeMap<MethodReference, const VerifiedMethod*,
  /art/compiler/linker/
multi_oat_relative_patcher.h 40 SafeMap<MethodReference, uint32_t, MethodReferenceComparator>::const_iterator;
126 SafeMap<MethodReference, uint32_t, MethodReferenceComparator> map;
relative_patcher_test.h 258 SafeMap<MethodReference, uint32_t, MethodReferenceComparator> map;
274 SafeMap<uint32_t, uint32_t> string_index_to_offset_map_;
  /art/runtime/jit/
profile_saver.h 119 SafeMap<std::string, std::set<std::string>> tracked_dex_base_locations_
139 SafeMap<std::string, ProfileCompilationInfo> profile_cache_;
offline_profiling_info.h 109 using DexFileToProfileInfoMap = SafeMap<const std::string, DexFileData>;
jit_code_cache.h 283 SafeMap<const void*, ArtMethod*> method_code_map_ GUARDED_BY(lock_);
285 SafeMap<ArtMethod*, const void*> osr_code_map_ GUARDED_BY(lock_);
profile_saver.cc 272 SafeMap<std::string, std::set<std::string>> tracked_locations;
  /art/compiler/
oat_writer.h 153 SafeMap<std::string, std::string>* key_value_store,
243 SafeMap<std::string, std::string>* key_value_store);
313 SafeMap<const DexFile*, size_t> dex_cache_arrays_offsets_; // DexFiles not owned.
oat_test.cc 129 SafeMap<std::string, std::string>& key_value_store,
148 SafeMap<std::string, std::string>& key_value_store,
163 SafeMap<std::string, std::string>& key_value_store,
175 SafeMap<std::string, std::string>& key_value_store,
369 SafeMap<std::string, std::string> key_value_store;
500 SafeMap<std::string, std::string> key_value_store;
561 SafeMap<std::string, std::string> key_value_store;
663 SafeMap<std::string, std::string> key_value_store;
    [all...]
image_test.cc 103 SafeMap<std::string, std::string> key_value_store;
image_writer.h 286 SafeMap<const DexFile*, size_t> dex_cache_array_starts_;
oat_writer.cc 421 SafeMap<std::string, std::string>* key_value_store,
827 SafeMap<const CompiledMethod*, uint32_t, CodeOffsetsKeyComparator> dedupe_map_;
871 SafeMap<const uint8_t*, uint32_t> dedupe_map_;
    [all...]
  /art/runtime/jdwp/
object_registry.h 130 SafeMap<JDWP::ObjectId, ObjectRegistryEntry*> id_to_entry_ GUARDED_BY(lock_);
  /art/compiler/dex/quick/
dex_file_method_inliner.h 390 SafeMap<uint32_t, InlineMethod> inline_methods_ GUARDED_BY(lock_);
  /art/runtime/base/
arena_containers.h 61 SafeMap<K, V, Comparator, ArenaAllocatorAdapter<std::pair<const K, V>>>;
scoped_arena_containers.h 59 SafeMap<K, V, Comparator, ScopedArenaAllocatorAdapter<std::pair<const K, V>>>;
mutex.cc 267 SafeMap<uint64_t, size_t> most_common_blocker;
268 SafeMap<uint64_t, size_t> most_common_blocked;
    [all...]
  /art/compiler/driver/
compiler_driver.h 645 typedef SafeMap<const ClassReference, CompiledClass*> ClassTable;
650 typedef SafeMap<const MethodReference, CompiledMethod*, MethodReferenceComparator> MethodTable;
  /art/runtime/verifier/
method_verifier.h 381 SafeMap<uint32_t, std::set<uint32_t>>& FindStringInitMap()
    [all...]

Completed in 379 milliseconds

1 2