Home
last modified time | relevance | path

Searched refs:read_count (Results 1 – 6 of 6) sorted by relevance

/art/runtime/
Dintern_table-inl.h44 size_t read_count = 0; in AddTableFromMemory() local
45 UnorderedSet set(ptr, /*make copy*/false, &read_count); in AddTableFromMemory()
56 return read_count; in AddTableFromMemory()
Dclass_table.cc271 size_t read_count; in WriteToMemory() local
272 ClassSet class_set(ptr, /*make copy*/false, &read_count); in WriteToMemory()
279 size_t read_count = 0; in ReadFromMemory() local
280 AddClassSet(ClassSet(ptr, /*make copy*/false, &read_count)); in ReadFromMemory()
281 return read_count; in ReadFromMemory()
Dclass_linker.cc1616 size_t read_count; in VerifyInternedStringReferences() local
1618 InternTable::UnorderedSet image_set(data, /*make_copy_of_data=*/ false, &read_count); in VerifyInternedStringReferences()
2229 size_t read_count = 0; in AddImageSpace() local
2232 &read_count); in AddImageSpace()
/art/runtime/gc/space/
Dimage_space_test.cc161 size_t read_count; in TEST_F() local
162 InternTable::UnorderedSet temp_set(data, /*make_copy_of_data=*/ false, &read_count); in TEST_F()
Dimage_space.cc1460 size_t read_count = 0u; in RelocateInPlace() local
1464 ClassTable::ClassSet temp_set(data, /*make_copy_of_data=*/ false, &read_count); in RelocateInPlace()
2891 size_t read_count; in DoRelocateSpaces() local
2892 InternTable::UnorderedSet temp_set(data, /*make_copy_of_data=*/ false, &read_count); in DoRelocateSpaces()
2903 size_t read_count; in DoRelocateSpaces() local
2904 ClassTable::ClassSet temp_set(data, /*make_copy_of_data=*/ false, &read_count); in DoRelocateSpaces()
/art/libartbase/base/
Dhash_set.h265 HashSet(const uint8_t* ptr, bool make_copy_of_data, size_t* read_count) noexcept { in HashSet() argument
290 *read_count = offset; in HashSet()