Searched defs:num_methods (Results 1 - 5 of 5) sorted by relevance

/art/runtime/native/
H A Ddalvik_system_VMRuntime.cc340 uint32_t num_methods; member in struct:art::DexCacheStats
344 num_methods(0) {}
370 total->num_methods += dex_file->NumMethodIds();
407 filled->num_methods++;
504 total.num_methods, before.num_methods, after.num_methods);
/art/compiler/
H A Doat_writer.cc1153 uint32_t num_methods = compiled_methods.size(); local
1154 CHECK_LE(num_non_null_compiled_methods, num_methods);
1157 oat_method_offsets_offsets_from_oat_class_.resize(num_methods);
1167 } else if (num_non_null_compiled_methods == num_methods) {
1179 method_bitmap_ = new BitVector(num_methods, false, Allocator::GetMallocAllocator());
1188 for (size_t i = 0; i < num_methods; i++) {
/art/runtime/
H A Dprofiler.cc298 uint32_t num_methods = DumpProfile(os); local
324 return num_methods;
577 uint32_t num_methods = 0; local
601 ++num_methods;
662 ++num_methods;
684 ++num_methods;
686 return num_methods;
H A Dclass_linker.cc4276 uint32_t num_methods = klass->GetIfTable()->GetInterface(i)->NumVirtualMethods(); local
4277 for (uint32_t j = 0; j < num_methods; ++j) {
4788 size_t num_methods = iftable->GetInterface(i)->NumVirtualMethods(); local
4789 if (num_methods > 0) {
4792 method_array(hs.NewHandle(AllocArtMethodArray(self, num_methods)));
4800 for (size_t j = 0; j < num_methods; ++j) {
/art/dex2oat/
H A Ddex2oat.cc1368 size_t num_methods = 0; local
1372 num_methods += dex_file->NumMethodIds();
1374 if (num_methods <= compiler_options->GetNumDexMethodsThreshold()) {

Completed in 7916 milliseconds