Lines Matching refs:total
408 static void PreloadDexCachesStatsTotal(DexCacheStats* total) {
418 total->num_strings += dex_file->NumStringIds();
419 total->num_fields += dex_file->NumFieldIds();
420 total->num_methods += dex_file->NumMethodIds();
421 total->num_types += dex_file->NumTypeIds();
474 DexCacheStats total;
478 PreloadDexCachesStatsTotal(&total);
546 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches strings total=%d before=%d after=%d",
547 total.num_strings, before.num_strings, after.num_strings);
548 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches types total=%d before=%d after=%d",
549 total.num_types, before.num_types, after.num_types);
550 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches fields total=%d before=%d after=%d",
551 total.num_fields, before.num_fields, after.num_fields);
552 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches methods total=%d before=%d after=%d",
553 total.num_methods, before.num_methods, after.num_methods);