summaryrefslogtreecommitdiffstats
path: root/vm/LinearAlloc.cpp
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-12-20 16:22:13 +0000
committerSteve Block <steveblock@google.com>2012-01-03 22:29:27 +0000
commit062bf509a77fce9dfcb7e7b2e401cf2a124d83d5 (patch)
tree6015cb53c42eb9ae2d13811da33381701a7c353a /vm/LinearAlloc.cpp
parent26f957278b34144a3f90989ccddb0102fc1fdd62 (diff)
downloadandroid_dalvik-062bf509a77fce9dfcb7e7b2e401cf2a124d83d5.tar.gz
android_dalvik-062bf509a77fce9dfcb7e7b2e401cf2a124d83d5.tar.bz2
android_dalvik-062bf509a77fce9dfcb7e7b2e401cf2a124d83d5.zip
Rename (IF_)LOGD(_IF) to (IF_)ALOGD(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/156016 Bug: 5449033 Change-Id: Ic663376d1ad6a6cb14bf81405ad9afd247cf2f60
Diffstat (limited to 'vm/LinearAlloc.cpp')
-rw-r--r--vm/LinearAlloc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm/LinearAlloc.cpp b/vm/LinearAlloc.cpp
index 51c8fcd22..6e53ac632 100644
--- a/vm/LinearAlloc.cpp
+++ b/vm/LinearAlloc.cpp
@@ -238,7 +238,7 @@ void dvmLinearAllocDestroy(Object* classLoader)
if (gDvm.verboseShutdown) {
ALOGV("Unmapping linear allocator base=%p", pHdr->mapAddr);
- LOGD("LinearAlloc %p used %d of %d (%d%%)",
+ ALOGD("LinearAlloc %p used %d of %d (%d%%)",
classLoader, pHdr->curOffset, pHdr->mapLength,
(pHdr->curOffset * 100) / pHdr->mapLength);
}
@@ -644,7 +644,7 @@ void dvmLinearAllocDump(Object* classLoader)
printf(" %d-%d: zero\n", zstart, i-1);
}
- LOGD("LinearAlloc %p using %d of %d (%d%%)",
+ ALOGD("LinearAlloc %p using %d of %d (%d%%)",
classLoader, pHdr->curOffset, pHdr->mapLength,
(pHdr->curOffset * 100) / pHdr->mapLength);