Searched refs: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/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.cc4348 uint32_t num_methods = klass->GetIfTable()->GetInterface(i)->NumVirtualMethods(); local
4349 for (uint32_t j = 0; j < num_methods; ++j) {
5198 size_t num_methods = iftable->GetInterface(i)->NumVirtualMethods(); local
5199 if (num_methods > 0) {
5216 method_array = hs.NewHandle(AllocArtMethodArray(self, num_methods));
5231 for (size_t j = 0; j < num_methods; ++j) {
/art/compiler/
H A Doat_writer.cc1162 uint32_t num_methods = compiled_methods.size(); local
1163 CHECK_LE(num_non_null_compiled_methods, num_methods);
1166 oat_method_offsets_offsets_from_oat_class_.resize(num_methods);
1176 } else if (num_non_null_compiled_methods == num_methods) {
1188 method_bitmap_ = new BitVector(num_methods, false, Allocator::GetMallocAllocator());
1197 for (size_t i = 0; i < num_methods; i++) {
/art/dex2oat/
H A Ddex2oat.cc1509 size_t num_methods = 0; local
1513 num_methods += dex_file->NumMethodIds();
1515 if (num_methods <= compiler_options->GetNumDexMethodsThreshold()) {

Completed in 7319 milliseconds