Home
last modified time | relevance | path

Searched refs:thunk_map_ (Results 1 – 3 of 3) sorted by relevance

/art/compiler/driver/
Dcompiled_method_storage.cc157 thunk_map_(std::less<ThunkMapKey>(), SwapAllocator<ThunkMapValueType>(swap_space_.get())) { in CompiledMethodStorage()
240 auto it = thunk_map_.find(key); in GetThunkCode()
241 if (it != thunk_map_.end()) { in GetThunkCode()
265 thunk_map_.emplace(key, std::move(value)); in SetThunkCode()
Dcompiled_method_storage.h124 ThunkMap thunk_map_ GUARDED_BY(thunk_map_lock_);
/art/dex2oat/linker/
Drelative_patcher_test.h284 thunk_map_.emplace(ThunkKey(patch), ThunkValue(code, debug_name)); in SetThunkCode()
290 auto it = thunk_map_.find(ThunkKey(patch)); in GetThunkCode()
291 CHECK(it != thunk_map_.end()); in GetThunkCode()
300 thunk_map_.clear(); in Reset()
363 std::map<ThunkKey, ThunkValue> thunk_map_; variable