Home
last modified time | relevance | path

Searched refs:ThunkMapKey (Results 1 – 2 of 2) sorted by relevance

/art/dex2oat/driver/
Dcompiled_method_storage.h92 class ThunkMapKey;
94 using ThunkMapValueType = std::pair<const ThunkMapKey, ThunkMapValue>;
95 using ThunkMap = std::map<ThunkMapKey,
97 std::less<ThunkMapKey>,
101 static ThunkMapKey GetThunkMapKey(const linker::LinkerPatch& linker_patch);
Dcompiled_method_storage.cc107 class CompiledMethodStorage::ThunkMapKey { class in art::CompiledMethodStorage
109 ThunkMapKey(linker::LinkerPatch::Type type, uint32_t custom_value1, uint32_t custom_value2) in ThunkMapKey() function in art::CompiledMethodStorage::ThunkMapKey
112 bool operator<(const ThunkMapKey& other) const { in operator <()
157 thunk_map_(std::less<ThunkMapKey>(), SwapAllocator<ThunkMapValueType>(swap_space_.get())) { in CompiledMethodStorage()
234 CompiledMethodStorage::ThunkMapKey CompiledMethodStorage::GetThunkMapKey( in GetThunkMapKey()
253 return ThunkMapKey(linker_patch.GetType(), custom_value1, custom_value2); in GetThunkMapKey()
273 ThunkMapKey key = GetThunkMapKey(linker_patch); in GetThunkCode()
294 ThunkMapKey key = GetThunkMapKey(linker_patch); in SetThunkCode()