Searched defs:max_count (Results 1 - 6 of 6) sorted by relevance

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

Completed in 183 milliseconds