diff options
author | 2016-01-23 14:16:58 +0000 | |
---|---|---|
committer | 2016-01-23 14:16:58 +0000 | |
commit | 5d5dbeb0344fa57f34cee40f01f96829eae4b514 (patch) | |
tree | 5e4a1f49fe8e59c105397b53da3a5a963a22a9ff /runtime/class_table.h | |
parent | 01ebf4a0197ab221cb5af348607696458c5b927a (diff) | |
parent | 1bc977cf2f8199311a97f2ba9431a184540e3e9c (diff) |
Merge "Revert "Load app images""
Diffstat (limited to 'runtime/class_table.h')
-rw-r--r-- | runtime/class_table.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/runtime/class_table.h b/runtime/class_table.h index 0b420352c3..911f3c22db 100644 --- a/runtime/class_table.h +++ b/runtime/class_table.h @@ -84,14 +84,9 @@ class ClassTable { bool Visit(ClassVisitor* visitor) SHARED_REQUIRES(Locks::classlinker_classes_lock_, Locks::mutator_lock_); - // Return the first class that matches the descriptor. Returns null if there are none. mirror::Class* Lookup(const char* descriptor, size_t hash) SHARED_REQUIRES(Locks::classlinker_classes_lock_, Locks::mutator_lock_); - // Return the first class that matches the descriptor of klass. Returns null if there are none. - mirror::Class* LookupByDescriptor(mirror::Class* klass) - SHARED_REQUIRES(Locks::classlinker_classes_lock_, Locks::mutator_lock_); - void Insert(mirror::Class* klass) REQUIRES(Locks::classlinker_classes_lock_) SHARED_REQUIRES(Locks::mutator_lock_); @@ -112,17 +107,10 @@ class ClassTable { // Combines all of the tables into one class set. size_t WriteToMemory(uint8_t* ptr) const SHARED_REQUIRES(Locks::classlinker_classes_lock_, Locks::mutator_lock_); - - // Read a table from ptr and put it at the front of the class set. size_t ReadFromMemory(uint8_t* ptr) REQUIRES(Locks::classlinker_classes_lock_) SHARED_REQUIRES(Locks::mutator_lock_); - // Change the class loader of all the contained classes. - void SetClassLoader(mirror::ClassLoader* class_loader) - REQUIRES(Locks::classlinker_classes_lock_) - SHARED_REQUIRES(Locks::mutator_lock_); - private: class ClassDescriptorHashEquals { public: |