HomeSort by relevance Sort by last modified time
    Searched defs:ObjectRegistry (Results 1 - 3 of 3) sorted by null

  /art/runtime/jdwp/
object_registry.h 59 class ObjectRegistry {
61 ObjectRegistry();
object_registry.cc 25 mirror::Object* const ObjectRegistry::kInvalidObject = reinterpret_cast<mirror::Object*>(1);
35 ObjectRegistry::ObjectRegistry()
36 : lock_("ObjectRegistry lock", kJdwpObjectRegistryLock), next_id_(1) {
39 JDWP::RefTypeId ObjectRegistry::AddRefType(mirror::Class* c) {
43 JDWP::ObjectId ObjectRegistry::Add(mirror::Object* o) {
47 JDWP::ObjectId ObjectRegistry::InternalAdd(mirror::Object* o) {
91 bool ObjectRegistry::ContainsLocked(Thread* self, mirror::Object* o, int32_t identity_hash_code,
107 void ObjectRegistry::Clear() {
127 mirror::Object* ObjectRegistry::InternalGet(JDWP::ObjectId id)
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
ObjectRegistry.java 26 * - The only object that is always guaranteed to be valid is the ObjectRegistry itself.
27 * - There may be more than one ObjectRegistry, and there may be more than one instance of any of
28 * the systems managed by ObjectRegistry allocated at once. For example, separate threads may
29 * maintain their own separate ObjectRegistry instances.
31 public class ObjectRegistry extends BaseObject {
63 public ObjectRegistry() {

Completed in 123 milliseconds