summaryrefslogtreecommitdiffstats
path: root/vm/native/dalvik_system_DexFile.cpp
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 /vm/native/dalvik_system_DexFile.cpp
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 'vm/native/dalvik_system_DexFile.cpp')
-rw-r--r--vm/native/dalvik_system_DexFile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm/native/dalvik_system_DexFile.cpp b/vm/native/dalvik_system_DexFile.cpp
index 335b3dd14..ad03e8119 100644
--- a/vm/native/dalvik_system_DexFile.cpp
+++ b/vm/native/dalvik_system_DexFile.cpp
@@ -192,7 +192,7 @@ static void Dalvik_dalvik_system_DexFile_openDexFile(const u4* args,
* if the caller specifies their own output file.
*/
if (dvmClassPathContains(gDvm.bootClassPath, sourceName)) {
- LOGW("Refusing to reopen boot DEX '%s'", sourceName);
+ ALOGW("Refusing to reopen boot DEX '%s'", sourceName);
dvmThrowIOException(
"Re-opening BOOTCLASSPATH DEX files is not allowed");
free(sourceName);
@@ -318,7 +318,7 @@ static void Dalvik_dalvik_system_DexFile_closeDexFile(const u4* args,
u4 hash = (u4) pDexOrJar;
dvmHashTableLock(gDvm.userDexFiles);
if (!dvmHashTableRemove(gDvm.userDexFiles, hash, pDexOrJar)) {
- LOGW("WARNING: could not remove '%s' from DEX hash table",
+ ALOGW("WARNING: could not remove '%s' from DEX hash table",
pDexOrJar->fileName);
}
dvmHashTableUnlock(gDvm.userDexFiles);