summaryrefslogtreecommitdiffstats
path: root/dexopt
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2012-01-05 23:21:27 +0000
committerSteve Block <steveblock@google.com>2012-01-06 10:04:42 +0000
commite8e1ddccd616e8226b7cc1e4e9fdb327429249e8 (patch)
treebd6714388cbff4c72bb5d7dc3d6f90092afa5931 /dexopt
parentc6284c2f24d180091a824698c0b0869f491ceccc (diff)
downloadandroid_dalvik-e8e1ddccd616e8226b7cc1e4e9fdb327429249e8.tar.gz
android_dalvik-e8e1ddccd616e8226b7cc1e4e9fdb327429249e8.tar.bz2
android_dalvik-e8e1ddccd616e8226b7cc1e4e9fdb327429249e8.zip
Rename (IF_)LOGW(_IF) to (IF_)ALOGW(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/157065 Bug: 5449033 Change-Id: Ia5d301248024df26c2a29dabdfe738e39ec87c82
Diffstat (limited to 'dexopt')
-rw-r--r--dexopt/OptMain.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/dexopt/OptMain.cpp b/dexopt/OptMain.cpp
index 59b4d3556..bdbeff686 100644
--- a/dexopt/OptMain.cpp
+++ b/dexopt/OptMain.cpp
@@ -94,13 +94,13 @@ static int extractAndProcessZip(int zipFd, int cacheFd,
* Open the zip archive, find the DEX entry.
*/
if (dexZipPrepArchive(zipFd, debugFileName, &zippy) != 0) {
- LOGW("DexOptZ: unable to open zip archive '%s'", debugFileName);
+ ALOGW("DexOptZ: unable to open zip archive '%s'", debugFileName);
goto bail;
}
zipEntry = dexZipFindEntry(&zippy, kClassesDex);
if (zipEntry == NULL) {
- LOGW("DexOptZ: zip archive '%s' does not include %s",
+ ALOGW("DexOptZ: zip archive '%s' does not include %s",
debugFileName, kClassesDex);
goto bail;
}
@@ -111,7 +111,7 @@ static int extractAndProcessZip(int zipFd, int cacheFd,
if (dexZipGetEntryInfo(&zippy, zipEntry, NULL, &uncompLen, NULL, NULL,
&modWhen, &crc32) != 0)
{
- LOGW("DexOptZ: zip archive GetEntryInfo failed on %s", debugFileName);
+ ALOGW("DexOptZ: zip archive GetEntryInfo failed on %s", debugFileName);
goto bail;
}
@@ -123,7 +123,7 @@ static int extractAndProcessZip(int zipFd, int cacheFd,
* Extract the DEX data into the cache file at the current offset.
*/
if (dexZipExtractEntryToFile(&zippy, zipEntry, cacheFd) != 0) {
- LOGW("DexOptZ: extraction of %s from %s failed",
+ ALOGW("DexOptZ: extraction of %s from %s failed",
kClassesDex, debugFileName);
goto bail;
}