Searched refs:max_count (Results 1 – 9 of 9) sorted by relevance
/art/runtime/ |
D | indirect_reference_table.cc | 65 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()
|
D | indirect_reference_table.h | 234 IndirectReferenceTable(size_t max_count,
|
D | debugger.h | 376 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,
|
D | debugger.cc | 974 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()
|
D | class_linker.cc | 5773 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/ |
D | jdwp_handler.cc | 589 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/ |
D | heap.h | 357 int32_t max_count, 365 int32_t max_count,
|
D | heap.cc | 1819 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/ |
D | dex_file_verifier.cc | 288 size_t max_count = available_bytes_till_end_of_mem / elem_size; in CheckListSize() local 289 if (max_count < count) { in CheckListSize()
|