blob: f2a476833219d1d5dc440a5e2cf2fbd3fa92a3af [file] [log] [blame]
Brian Carlstrom7e49dca2011-07-22 18:07:34 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
3#include "dex_cache.h"
4#include "heap.h"
5#include "globals.h"
6#include "logging.h"
7#include "object.h"
8
9namespace art {
10
11void DexCache::Init(ObjectArray* strings,
12 ObjectArray* classes,
13 ObjectArray* methods,
14 ObjectArray* fields) {
15 Set(kStrings, strings);
16 Set(kClasses, classes);
17 Set(kMethods, methods);
18 Set(kFields, fields);
19}
20
21} // namespace art