Home
last modified time | relevance | path

Searched refs:iref (Results 1 – 3 of 3) sorted by relevance

/dalvik/vm/
DIndirectRefTable.cpp140 Object* IndirectRefTable::get(IndirectRef iref) const { in get()
141 IndirectRefKind kind = indirectRefKind(iref); in get()
143 if (iref == NULL) { in get()
149 indirectRefKindToString(kind_), iref); in get()
158 u4 index = extractIndex(iref); in get()
162 indirectRefKindToString(kind_), iref, index, topIndex); in get()
170 indirectRefKindToString(kind_), iref); in get()
175 u4 serial = extractSerial(iref); in get()
178 indirectRefKindToString(kind_), iref); in get()
213 bool IndirectRefTable::remove(u4 cookie, IndirectRef iref) in remove() argument
[all …]
DIndirectRefTable.h111 INLINE IndirectRefKind indirectRefKind(IndirectRef iref) in indirectRefKind() argument
113 return (IndirectRefKind)((u4) iref & 0x03); in indirectRefKind()
281 Object* get(IndirectRef iref) const;
297 bool remove(u4 cookie, IndirectRef iref);
347 static inline u4 extractIndex(IndirectRef iref) { in extractIndex()
348 u4 uref = (u4) iref; in extractIndex()
352 static inline u4 extractSerial(IndirectRef iref) { in extractSerial()
353 u4 uref = (u4) iref; in extractSerial()
DCheckJni.cpp200 static const char* indirectRefKindName(IndirectRef iref) in indirectRefKindName() argument
202 return indirectRefKindToString(indirectRefKind(iref)); in indirectRefKindName()