Home
last modified time | relevance | path

Searched refs:IndirectReferenceTable (Results 1 – 9 of 9) sorted by relevance

/art/runtime/
Dindirect_reference_table.cc60 void IndirectReferenceTable::AbortIfNoCheckJNI() { in AbortIfNoCheckJNI()
69 IndirectReferenceTable::IndirectReferenceTable(size_t initialCount, in IndirectReferenceTable() function in art::IndirectReferenceTable
97 IndirectReferenceTable::~IndirectReferenceTable() { in ~IndirectReferenceTable()
100 bool IndirectReferenceTable::IsValid() const { in IsValid()
104 IndirectRef IndirectReferenceTable::Add(uint32_t cookie, mirror::Object* obj) { in Add()
117 << MutatorLockedDumpable<IndirectReferenceTable>(*this); in Add()
154 void IndirectReferenceTable::AssertEmpty() { in AssertEmpty()
159 << MutatorLockedDumpable<IndirectReferenceTable>(*this); in AssertEmpty()
172 bool IndirectReferenceTable::Remove(uint32_t cookie, IndirectRef iref) { in Remove()
263 void IndirectReferenceTable::Trim() { in Trim()
[all …]
Dindirect_reference_table-inl.h33 inline bool IndirectReferenceTable::GetChecked(IndirectRef iref) const { in GetChecked()
63 inline bool IndirectReferenceTable::CheckEntry(const char* what, IndirectRef iref, int idx) const { in CheckEntry()
76 inline mirror::Object* IndirectReferenceTable::Get(IndirectRef iref) const { in Get()
86 inline void IndirectReferenceTable::Update(IndirectRef iref, mirror::Object* obj) { in Update()
Dindirect_reference_table.h263 class IndirectReferenceTable {
267 IndirectReferenceTable(size_t initialCount, size_t maxCount, IndirectRefKind kind,
270 ~IndirectReferenceTable();
351 return Offset(OFFSETOF_MEMBER(IndirectReferenceTable, segment_state_)); in SegmentStateOffset()
Djava_vm_ext.h164 IndirectReferenceTable globals_;
176 IndirectReferenceTable weak_globals_ GUARDED_BY(weak_globals_lock_);
Dreference_table.h60 friend class IndirectReferenceTable; // For Dump. variable
Djni_env_ext.h73 IndirectReferenceTable locals GUARDED_BY(Locks::mutator_lock_);
Djni_env_ext.cc104 IndirectReferenceTable::SegmentStateOffset().Int32Value()); in SegmentStateOffset()
Dindirect_reference_table_test.cc28 static void CheckDump(IndirectReferenceTable* irt, size_t num_objects, size_t num_unique) in CheckDump()
53 IndirectReferenceTable irt(kTableInitial, kTableMax, kGlobal); in TEST_F()
Dthread.cc1544 IndirectReferenceTable& locals = tlsPtr_.jni_env->locals; in DecodeJObject()