HomeSort by relevance Sort by last modified time
    Searched refs:iref0 (Results 1 - 2 of 2) sorted by null

  /art/runtime/
indirect_reference_table_test.cc 65 IndirectRef iref0 = (IndirectRef) 0x11110; local
66 EXPECT_FALSE(irt.Remove(cookie, iref0)) << "unexpectedly successful removal";
69 iref0 = irt.Add(cookie, obj0);
70 EXPECT_TRUE(iref0 != NULL);
79 EXPECT_EQ(obj0, irt.Get(iref0));
83 EXPECT_TRUE(irt.Remove(cookie, iref0));
94 EXPECT_EQ(kInvalidIndirectRefObject, irt.Get(iref0));
97 iref0 = irt.Add(cookie, obj0);
98 EXPECT_TRUE(iref0 != NULL);
109 ASSERT_TRUE(irt.Remove(cookie, iref0));
    [all...]
  /dalvik/vm/test/
TestIndirectRefTable.cpp 66 IndirectRef iref0, iref1, iref2, iref3; local
80 iref0 = (IndirectRef) 0x11110;
81 if (irt.remove(cookie, iref0)) {
90 iref0 = irt.add(cookie, obj0);
93 if (iref0 == NULL || iref1 == NULL || iref2 == NULL) {
98 if (irt.get(iref0) != obj0 ||
102 irt.get(iref0), irt.get(iref1), irt.get(iref2),
109 if (!irt.remove(cookie, iref0) ||
124 if (irt.get(iref0) != kInvalidIndirectRefObject) {
133 iref0 = irt.add(cookie, obj0)
    [all...]

Completed in 876 milliseconds