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

  /external/replicaisland/src/com/replica/replicaisland/
BaseObject.java 26 static ObjectRegistry sSystemRegistry = new ObjectRegistry();
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() {
  /art/runtime/jdwp/
object_registry.cc 24 mirror::Object* const ObjectRegistry::kInvalidObject = reinterpret_cast<mirror::Object*>(1);
34 ObjectRegistry::ObjectRegistry()
35 : lock_("ObjectRegistry lock", kJdwpObjectRegistryLock), next_id_(1) {
38 JDWP::RefTypeId ObjectRegistry::AddRefType(mirror::Class* c) {
42 JDWP::ObjectId ObjectRegistry::Add(mirror::Object* o) {
46 JDWP::ObjectId ObjectRegistry::InternalAdd(mirror::Object* o) {
85 bool ObjectRegistry::Contains(mirror::Object* o, ObjectRegistryEntry** out_entry) {
96 bool ObjectRegistry::ContainsLocked(Thread* self, mirror::Object* o, int32_t identity_hash_code,
112 void ObjectRegistry::Clear()
    [all...]
object_registry.h 59 class ObjectRegistry {
61 ObjectRegistry();
jdwp_event.cc 963 ObjectRegistry* registry = Dbg::GetObjectRegistry();
    [all...]
  /art/runtime/
debugger.cc 314 ObjectRegistry* Dbg::gRegistry = nullptr;
405 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
420 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
437 if (thread_peer == NULL || thread_peer == ObjectRegistry::kInvalidObject) {
648 gRegistry = new ObjectRegistry;
834 if (o == ObjectRegistry::kInvalidObject) {
878 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
909 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
    [all...]
debugger.h 46 class ObjectRegistry;
627 static ObjectRegistry* GetObjectRegistry() {
665 static ObjectRegistry* gRegistry;

Completed in 2833 milliseconds