Searched refs:thunk_map_ (Results 1 – 3 of 3) sorted by relevance
157 thunk_map_(std::less<ThunkMapKey>(), SwapAllocator<ThunkMapValueType>(swap_space_.get())) { in CompiledMethodStorage()237 auto it = thunk_map_.find(key); in GetThunkCode()238 if (it != thunk_map_.end()) { in GetThunkCode()262 thunk_map_.emplace(key, std::move(value)); in SetThunkCode()
124 ThunkMap thunk_map_ GUARDED_BY(thunk_map_lock_);
279 thunk_map_.emplace(ThunkKey(patch), ThunkValue(code, debug_name)); in SetThunkCode()285 auto it = thunk_map_.find(ThunkKey(patch)); in GetThunkCode()286 CHECK(it != thunk_map_.end()); in GetThunkCode()295 thunk_map_.clear(); in Reset()339 std::map<ThunkKey, ThunkValue> thunk_map_; variable