Home
last modified time | relevance | path

Searched refs:dummy (Results 1 – 4 of 4) sorted by relevance

/art/runtime/gc/space/
Dspace_test.cc89 size_t dummy = 0; in TEST_F() local
98 mirror::Object* ptr1 = space->Alloc(self, 1 * MB, &dummy); in TEST_F()
102 mirror::Object* ptr2 = space->Alloc(self, 8 * MB, &dummy); in TEST_F()
112 mirror::Object* ptr4 = space->Alloc(self, 8 * MB, &dummy); in TEST_F()
116 mirror::Object* ptr5 = space->AllocWithGrowth(self, 8 * MB, &dummy); in TEST_F()
126 void* ptr6 = space->AllocWithGrowth(self, 9 * MB, &dummy); in TEST_F()
135 space->Alloc(self, 1U * MB, &dummy); in TEST_F()
142 ptr1 = space->Alloc(self, 1 * MB, &dummy); in TEST_F()
146 ptr2 = space->Alloc(self, 8 * MB, &dummy); in TEST_F()
150 ptr3 = space->AllocWithGrowth(self, 2 * MB, &dummy); in TEST_F()
[all …]
/art/runtime/jdwp/
Dobject_registry.cc52 ObjectRegistryEntry dummy; in InternalAdd() local
53 dummy.jni_reference_type = JNIWeakGlobalRefType; in InternalAdd()
54 dummy.jni_reference = NULL; in InternalAdd()
55 dummy.reference_count = 0; in InternalAdd()
56 dummy.id = 0; in InternalAdd()
57 std::pair<object_iterator, bool> result = object_to_entry_.insert(std::make_pair(o, dummy)); in InternalAdd()
Djdwp_adb.cc137 char dummy = '!'; in ReceiveClientFd() local
144 iov.iov_base = &dummy; in ReceiveClientFd()
/art/test/046-reflect/src/
DMain.java466 public List<String> dummy; field in Main