Home
last modified time | relevance | path

Searched refs:max_count (Results 1 – 9 of 9) sorted by relevance

/art/runtime/
Dindirect_reference_table.cc65 IndirectReferenceTable::IndirectReferenceTable(size_t max_count, in IndirectReferenceTable() argument
71 max_entries_(max_count), in IndirectReferenceTable()
78 CHECK_LE(max_count, kMaxTableSizeInBytes / sizeof(IrtEntry)); in IndirectReferenceTable()
80 const size_t table_bytes = max_count * sizeof(IrtEntry); in IndirectReferenceTable()
Dindirect_reference_table.h234 IndirectReferenceTable(size_t max_count,
Ddebugger.h376 static JDWP::JdwpError GetInstances(JDWP::RefTypeId class_id, int32_t max_count,
379 static JDWP::JdwpError GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
Ddebugger.cc974 JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, in GetInstances() argument
989 max_count, in GetInstances()
997 JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count, in GetReferringObjects() argument
1008 heap->GetReferringObjects(hs, hs.NewHandle(o), max_count, raw_instances); in GetReferringObjects()
Dclass_linker.cc5773 const size_t max_count = num_virtual_methods + super_vtable_length; in LinkVirtualMethods() local
5778 vtable = hs.NewHandle(AllocPointerArray(self, max_count)); in LinkVirtualMethods()
5807 super_vtable->CopyOf(self, max_count))); in LinkVirtualMethods()
5941 CHECK_LE(actual_count, max_count); in LinkVirtualMethods()
5942 if (actual_count < max_count) { in LinkVirtualMethods()
/art/runtime/jdwp/
Djdwp_handler.cc589 int32_t max_count = request->ReadSigned32("max count"); in RT_Instances() local
590 if (max_count < 0) { in RT_Instances()
595 JdwpError rc = Dbg::GetInstances(class_id, max_count, &instances); in RT_Instances()
887 int32_t max_count = request->ReadSigned32("max count"); in OR_ReferringObjects() local
888 if (max_count < 0) { in OR_ReferringObjects()
893 JdwpError rc = Dbg::GetReferringObjects(object_id, max_count, &referring_objects); in OR_ReferringObjects()
/art/runtime/gc/
Dheap.h357 int32_t max_count,
365 int32_t max_count,
Dheap.cc1819 int32_t max_count, in GetInstances() argument
1821 DCHECK_GE(max_count, 0); in GetInstances()
1824 if (max_count == 0 || instances.size() < static_cast<size_t>(max_count)) { in GetInstances()
1834 int32_t max_count, in GetReferringObjects() argument
1870 ReferringObjectsFinder finder(scope, o, max_count, referring_objects); in GetReferringObjects()
/art/libdexfile/dex/
Ddex_file_verifier.cc288 size_t max_count = available_bytes_till_end_of_mem / elem_size; in CheckListSize() local
289 if (max_count < count) { in CheckListSize()