Searched defs:after (Results 1 - 2 of 2) sorted by last modified time

/art/tools/dexfuzz/src/dexfuzz/program/
H A DMutatableCode.java100 * Call this to update all instructions after the provided mInsn, to have their
169 * and points them to the 'after' MInsn, if so. 'twoWay' will check if 'after'
174 private void updateTryBlocksWithReplacementInsn(MInsn before, MInsn after, argument
180 mTryBlock.startInsn = after;
181 } else if (twoWay && mTryBlock.startInsn == after) {
187 mTryBlock.endInsn = after;
188 } else if (twoWay && mTryBlock.endInsn == after) {
194 mTryBlock.catchAllHandler = after;
195 } else if (twoWay && mTryBlock.catchAllHandler == after) {
[all...]
/art/runtime/native/
H A Ddalvik_system_VMRuntime.cc554 DexCacheStats after; local
555 PreloadDexCachesStatsFilled(&after);
556 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches strings total=%d before=%d after=%d",
557 total.num_strings, before.num_strings, after.num_strings);
558 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches types total=%d before=%d after=%d",
559 total.num_types, before.num_types, after.num_types);
560 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches fields total=%d before=%d after=%d",
561 total.num_fields, before.num_fields, after.num_fields);
562 LOG(INFO) << StringPrintf("VMRuntime.preloadDexCaches methods total=%d before=%d after=%d",
563 total.num_methods, before.num_methods, after
[all...]

Completed in 79 milliseconds