OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IndirectRef
(Results
1 - 2
of
2
) sorted by null
/art/runtime/
indirect_reference_table.h
39
* When an object is added we return an
IndirectRef
that is not a valid
100
typedef void*
IndirectRef
;
107
* Indirect reference kind, used as the two low bits of
IndirectRef
.
122
static inline IndirectRefKind GetIndirectRefKind(
IndirectRef
iref) {
174
* Common alternative implementation: make
IndirectRef
a pointer to the
261
IndirectRef
Add(uint32_t cookie, const mirror::Object* obj)
265
* Given an
IndirectRef
in the table, return the Object it refers to.
269
const mirror::Object* Get(
IndirectRef
iref) const {
288
bool Remove(uint32_t cookie,
IndirectRef
iref);
328
static uint32_t ExtractIndex(
IndirectRef
iref)
[
all
...]
/dalvik/vm/
IndirectRefTable.h
25
* When an object is added we return an
IndirectRef
that is not a valid
88
typedef void*
IndirectRef
;
96
* Indirect reference kind, used as the two low bits of
IndirectRef
.
111
INLINE IndirectRefKind indirectRefKind(
IndirectRef
iref)
169
* Common alternative implementation: make
IndirectRef
a pointer to the
274
IndirectRef
add(u4 cookie, Object* obj);
277
* Given an
IndirectRef
in the table, return the Object it refers to.
281
Object* get(
IndirectRef
iref) const;
297
bool remove(u4 cookie,
IndirectRef
iref);
347
static inline u4 extractIndex(
IndirectRef
iref)
[
all
...]
Completed in 326 milliseconds