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

/art/runtime/jdwp/
H A Djdwp_handler.cc627 int32_t max_count = request.ReadSigned32("max count"); local
628 if (max_count < 0) {
633 JdwpError rc = Dbg::GetInstances(class_id, max_count, instances);
907 int32_t max_count = request.ReadSigned32("max count"); local
908 if (max_count < 0) {
913 JdwpError rc = Dbg::GetReferringObjects(object_id, max_count, referring_objects);
/art/runtime/
H A Ddex_file_verifier.cc184 size_t max_count = available_bytes_till_end_of_mem / elem_size; local
185 if (max_count < count) {
H A Dclass_linker.cc4560 uint32_t max_count = klass->NumVirtualMethods() + local
4563 CHECK_LE(actual_count, max_count);
4568 vtable = hs.NewHandle(AllocArtMethodArray(self, max_count));
4579 vtable = hs.NewHandle(super_class->GetVTable()->CopyOf(self, max_count));
4627 CHECK_LE(actual_count, max_count);
4628 if (actual_count < max_count) {
/art/runtime/gc/
H A Dheap.cc1451 InstanceCollector(mirror::Class* c, int32_t max_count, std::vector<mirror::Object*>& instances)
1453 : class_(c), max_count_(max_count), instances_(instances) {
1475 void Heap::GetInstances(mirror::Class* c, int32_t max_count, argument
1480 InstanceCollector collector(c, max_count, instances);
1488 ReferringObjectsFinder(mirror::Object* object, int32_t max_count,
1491 : object_(object), max_count_(max_count), referring_objects_(referring_objects) {
1522 void Heap::GetReferringObjects(mirror::Object* o, int32_t max_count, argument
1527 ReferringObjectsFinder finder(o, max_count, referring_objects);

Completed in 94 milliseconds