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()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()
124 ThunkMap thunk_map_ GUARDED_BY(thunk_map_lock_);
284 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