// Copyright 2011 Google Inc. All Rights Reserved. | |
#include "dex_cache.h" | |
#include "heap.h" | |
#include "globals.h" | |
#include "logging.h" | |
#include "object.h" | |
namespace art { | |
void DexCache::Init(ObjectArray* strings, | |
ObjectArray* classes, | |
ObjectArray* methods, | |
ObjectArray* fields) { | |
Set(kStrings, strings); | |
Set(kClasses, classes); | |
Set(kMethods, methods); | |
Set(kFields, fields); | |
} | |
} // namespace art |