Searched defs:before (Results 1 - 3 of 3) sorted by relevance

/art/runtime/
H A Dmonitor_pool.cc78 Monitor* before = reinterpret_cast<Monitor*>(reinterpret_cast<uintptr_t>(last) - local
80 before->next_free_ = last;
82 before->monitor_id_ = OffsetToMonitorId(MonitorIdToOffset(last->monitor_id_) -
85 last = before;
/art/tools/dexfuzz/src/dexfuzz/program/
H A DMutatableCode.java168 * Checks if any MTryBlock's instruction refs pointed at the 'before' MInsn,
170 * was pointed to, and point refs to the 'before' insn.
174 private void updateTryBlocksWithReplacementInsn(MInsn before, MInsn after, argument
178 if (mTryBlock.startInsn == before) {
183 mTryBlock.startInsn = before;
185 if (mTryBlock.endInsn == before) {
190 mTryBlock.endInsn = before;
192 if (mTryBlock.catchAllHandler == before) {
197 mTryBlock.catchAllHandler = before;
208 if (handler == before) {
[all...]
/art/runtime/native/
H A Ddalvik_system_VMRuntime.cc485 DexCacheStats before; local
489 PreloadDexCachesStatsFilled(&before);
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
[all...]

Completed in 88 milliseconds