summaryrefslogtreecommitdiffstats
path: root/vm/reflect/Proxy.cpp
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2012-01-06 19:16:58 +0000
committerSteve Block <steveblock@google.com>2012-01-08 11:26:30 +0000
commitc1a4ab9c313d8a3d12007f2dbef7b5a6fa4ac2ef (patch)
tree76e90a6ae1910835a56e4dad3f60f42392645703 /vm/reflect/Proxy.cpp
parente8e1ddccd616e8226b7cc1e4e9fdb327429249e8 (diff)
downloadandroid_dalvik-c1a4ab9c313d8a3d12007f2dbef7b5a6fa4ac2ef.tar.gz
android_dalvik-c1a4ab9c313d8a3d12007f2dbef7b5a6fa4ac2ef.tar.bz2
android_dalvik-c1a4ab9c313d8a3d12007f2dbef7b5a6fa4ac2ef.zip
Rename (IF_)LOGE(_IF) to (IF_)ALOGE(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/#/c/157220 Also fix an occurrence of LOGW missed in an earlier change. Bug: 5449033 Change-Id: I2e3b23839e6dcd09015d6402280e9300c75e3406
Diffstat (limited to 'vm/reflect/Proxy.cpp')
-rw-r--r--vm/reflect/Proxy.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/vm/reflect/Proxy.cpp b/vm/reflect/Proxy.cpp
index 94a87c286..02d43eb1d 100644
--- a/vm/reflect/Proxy.cpp
+++ b/vm/reflect/Proxy.cpp
@@ -200,7 +200,7 @@ ClassObject* dvmGenerateProxyClass(StringObject* str, ArrayObject* interfaces,
* with a duplicate name.
*/
if (!dvmAddClassToHash(newClass)) {
- LOGE("ERROR: attempted to generate %s more than once",
+ ALOGE("ERROR: attempted to generate %s more than once",
newClass->descriptor);
goto bail;
}
@@ -492,7 +492,7 @@ static int copyWithoutDuplicates(Method** allMethods, int allCount,
gDvm.classJavaLangClassArray, commonCount,
ALLOC_DEFAULT);
if (throwArray == NULL) {
- LOGE("common-throw array alloc failed");
+ ALOGE("common-throw array alloc failed");
return -1;
}
@@ -893,7 +893,7 @@ static void proxyInvoker(const u4* args, JValue* pResult,
invoke = dvmFindVirtualMethodHierByDescriptor(handler->clazz, "invoke",
"(Ljava/lang/Object;Ljava/lang/reflect/Method;[Ljava/lang/Object;)Ljava/lang/Object;");
if (invoke == NULL) {
- LOGE("Unable to find invoke()");
+ ALOGE("Unable to find invoke()");
dvmAbort();
}
@@ -925,7 +925,7 @@ static void proxyInvoker(const u4* args, JValue* pResult,
returnType = dvmGetBoxedReturnType(method);
if (returnType == NULL) {
char* desc = dexProtoCopyMethodDescriptor(&method->prototype);
- LOGE("Could not determine return type for '%s'", desc);
+ ALOGE("Could not determine return type for '%s'", desc);
free(desc);
assert(dvmCheckException(self));
goto bail;