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

/art/runtime/
H A Dreflection.cc63 const DexFile::TypeList* classes = mh.GetParameterTypeList(); local
64 uint32_t classes_size = classes == NULL ? 0 : classes->Size();
78 mirror::Class* dst_class = mh.GetClassFromTypeIdx(classes->GetTypeItem(i).type_idx_);
H A Dclass_linker.cc251 // Create storage for root classes, save away our work so far (requires descriptors).
261 // Setup the primitive type classes.
271 // Create array interface entries to populate once we can load system classes.
307 // Set up array classes for string, field, method
354 // Setup the primitive array type classes - can't be done until Object has a vtable.
426 // End of special init trickery, subsequent classes may be loaded via FindSystemClass.
432 // java.lang.ref classes need to be specially flagged, but otherwise are normal classes
924 // If no classes.dex found in dex_location, it has been stripped, assume oat is up-to-date.
939 // not found in /foo/bar/baz.odex? try /data/dalvik-cache/foo@bar@baz.jar@classes
1142 std::set<mirror::Class*>* classes = reinterpret_cast<std::set<mirror::Class*>*>(arg); local
1148 std::set<mirror::Class*> classes; local
[all...]
H A Ddebugger.cc651 // Set ACC_SUPER; dex files don't contain this flag, but all classes are supposed to have it set.
763 std::vector<mirror::Class*> classes; local
771 classes.push_back(c);
775 Runtime::Current()->GetHeap()->CountInstances(classes, false, &counts[0]);
846 void Dbg::GetClassList(std::vector<JDWP::RefTypeId>& classes) { argument
847 // Get the complete list of reference classes (i.e. all classes except
851 explicit ClassListCreator(std::vector<JDWP::RefTypeId>& classes) : classes(classes) { argument
867 std::vector<JDWP::RefTypeId>& classes; member in struct:art::ClassListCreator
900 std::vector<mirror::Class*> classes; local
[all...]
/art/runtime/native/
H A Ddalvik_system_VMDebug.cc236 std::vector<mirror::Class*> classes; local
237 classes.push_back(c);
239 Runtime::Current()->GetHeap()->CountInstances(classes, countAssignable, &count);
/art/runtime/jdwp/
H A Djdwp_handler.cc391 std::vector<JDWP::RefTypeId> classes; local
392 Dbg::GetClassList(classes);
394 expandBufAdd4BE(pReply, classes.size());
396 for (size_t i = 0; i < classes.size(); ++i) {
401 JDWP::JdwpError status = Dbg::GetClassInfo(classes[i], &type_tag, &class_status, &descriptor);
407 expandBufAddRefTypeId(pReply, classes[i]);
1227 // TODO: we should only return classes which have the given class loader as a defining or
1292 // Restrict events to matching classes.
1301 // Restrict events to non-matching classes.
/art/runtime/gc/
H A Dheap.cc996 InstanceCounter(const std::vector<mirror::Class*>& classes, bool use_is_assignable_from, uint64_t* counts)
998 : classes_(classes), use_is_assignable_from_(use_is_assignable_from), counts_(counts) {
1024 void Heap::CountInstances(const std::vector<mirror::Class*>& classes, bool use_is_assignable_from, argument
1033 InstanceCounter counter(classes, use_is_assignable_from, counts);

Completed in 2251 milliseconds