OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ObjectRegistry
(Results
1 - 3
of
3
) sorted by null
/art/runtime/jdwp/
object_registry.h
53
class
ObjectRegistry
{
55
ObjectRegistry
();
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
...]
/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 67 milliseconds