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

/art/runtime/
H A Dindirect_reference_table.cc62 IndirectReferenceTable::IndirectReferenceTable(size_t max_count, argument
68 max_entries_(max_count),
74 const size_t table_bytes = max_count * sizeof(IrtEntry);
H A Dindirect_reference_table.h231 IndirectReferenceTable(size_t max_count,
H A Ddebugger.h356 static JDWP::JdwpError GetInstances(JDWP::RefTypeId class_id, int32_t max_count,
359 static JDWP::JdwpError GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count,
H A Ddex_file_verifier.cc288 size_t max_count = available_bytes_till_end_of_mem / elem_size; local
289 if (max_count < count) {
H A Ddebugger.cc904 JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, argument
916 Runtime::Current()->GetHeap()->GetInstances(hs, hs.NewHandle(c), max_count, raw_instances);
923 JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count, argument
934 heap->GetReferringObjects(hs, hs.NewHandle(o), max_count, raw_instances);
H A Dclass_linker.cc5859 const size_t max_count = num_virtual_methods + super_vtable_length; local
5864 vtable = hs.NewHandle(AllocPointerArray(self, max_count));
5893 super_vtable->CopyOf(self, max_count)));
6027 CHECK_LE(actual_count, max_count);
6028 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/runtime/gc/
H A Dheap.cc1918 int32_t max_count,
1923 max_count_(max_count),
1948 int32_t max_count,
1950 InstanceCollector collector(scope, c, max_count, instances);
1958 int32_t max_count,
1963 max_count_(max_count),
2003 int32_t max_count,
2005 ReferringObjectsFinder finder(scope, o, max_count, referring_objects);
1946 GetInstances(VariableSizedHandleScope& scope, Handle<mirror::Class> c, int32_t max_count, std::vector<Handle<mirror::Object>>& instances) argument
2001 GetReferringObjects(VariableSizedHandleScope& scope, Handle<mirror::Object> o, int32_t max_count, std::vector<Handle<mirror::Object>>& referring_objects) argument
H A Dheap.h348 int32_t max_count,
356 int32_t max_count,

Completed in 1257 milliseconds