HomeSort by relevance Sort by last modified time
    Searched refs:ObjectRegistry (Results 1 - 5 of 5) 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 23 mirror::Object* const ObjectRegistry::kInvalidObject = reinterpret_cast<mirror::Object*>(1);
33 ObjectRegistry::ObjectRegistry()
34 : lock_("ObjectRegistry lock", kJdwpObjectRegistryLock), next_id_(1) {
37 JDWP::RefTypeId ObjectRegistry::AddRefType(mirror::Class* c) {
41 JDWP::ObjectId ObjectRegistry::Add(mirror::Object* o) {
45 JDWP::ObjectId ObjectRegistry::InternalAdd(mirror::Object* o) {
82 bool ObjectRegistry::Contains(mirror::Object* o) {
88 void ObjectRegistry::Clear() {
109 mirror::Object* ObjectRegistry::InternalGet(JDWP::ObjectId id)
    [all...]
object_registry.h 53 class ObjectRegistry {
55 ObjectRegistry();
  /art/runtime/
debugger.cc 184 static ObjectRegistry* gRegistry = NULL;
220 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
235 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
252 if (thread_peer == NULL || thread_peer == ObjectRegistry::kInvalidObject) {
445 gRegistry = new ObjectRegistry;
599 if (o == ObjectRegistry::kInvalidObject) {
635 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
663 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
799 if (o == NULL || o == ObjectRegistry::kInvalidObject) {
911 if (o == NULL || o == ObjectRegistry::kInvalidObject)
    [all...]

Completed in 168 milliseconds