summaryrefslogtreecommitdiffstats
path: root/vm/reflect/Proxy.cpp
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-10-20 11:55:54 +0100
committerSteve Block <steveblock@google.com>2011-10-26 11:28:18 +0100
commit92c1f6f1b4249e4e379452ee7b49f027052bf4ce (patch)
tree87cba8cfe24fcdc10e3f2018f0571087989f6429 /vm/reflect/Proxy.cpp
parent1663a6c12fdf4732d7ea0a0406af6085b3c408e4 (diff)
downloadandroid_dalvik-92c1f6f1b4249e4e379452ee7b49f027052bf4ce.tar.gz
android_dalvik-92c1f6f1b4249e4e379452ee7b49f027052bf4ce.tar.bz2
android_dalvik-92c1f6f1b4249e4e379452ee7b49f027052bf4ce.zip
Rename (IF_)LOGV(_IF) to (IF_)ALOGV(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/#/c/143865 Bug: 5449033 Change-Id: I8bd96961e369a08e86ff78b82d90f20f42787eb1
Diffstat (limited to 'vm/reflect/Proxy.cpp')
-rw-r--r--vm/reflect/Proxy.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/vm/reflect/Proxy.cpp b/vm/reflect/Proxy.cpp
index f23dd75fc..56f88c56b 100644
--- a/vm/reflect/Proxy.cpp
+++ b/vm/reflect/Proxy.cpp
@@ -75,7 +75,7 @@ ClassObject* dvmGenerateProxyClass(StringObject* str, ArrayObject* interfaces,
return NULL;
}
- LOGV("+++ Generate proxy class '%s' %p from %d interface classes",
+ ALOGV("+++ Generate proxy class '%s' %p from %d interface classes",
nameStr, loader, interfaces->length);
@@ -419,7 +419,7 @@ static int copyWithoutDuplicates(Method** allMethods, int allCount,
* type or void, the types must match exactly, or we throw
* an exception now.
*/
- LOGV("MATCH on %s.%s and %s.%s",
+ ALOGV("MATCH on %s.%s and %s.%s",
allMethods[i]->clazz->descriptor, allMethods[i]->name,
allMethods[j]->clazz->descriptor, allMethods[j]->name);
dupe = true;
@@ -437,7 +437,7 @@ static int copyWithoutDuplicates(Method** allMethods, int allCount,
*/
if (dupe) {
if (best) {
- LOGV("BEST %d %s.%s -> %d", i,
+ ALOGV("BEST %d %s.%s -> %d", i,
allMethods[i]->clazz->descriptor, allMethods[i]->name,
outCount);
@@ -458,7 +458,7 @@ static int copyWithoutDuplicates(Method** allMethods, int allCount,
if (dvmCompareMethodNamesAndParameterProtos(allMethods[i],
allMethods[j]) == 0)
{
- LOGV("DEL %d %s.%s", j,
+ ALOGV("DEL %d %s.%s", j,
allMethods[j]->clazz->descriptor,
allMethods[j]->name);
@@ -514,13 +514,13 @@ static int copyWithoutDuplicates(Method** allMethods, int allCount,
dvmPointerSetFree(commonThrows);
} else {
- LOGV("BEST not %d", i);
+ ALOGV("BEST not %d", i);
}
} else {
/*
* Singleton. Copy the entry and NULL it out.
*/
- LOGV("COPY singleton %d %s.%s -> %d", i,
+ ALOGV("COPY singleton %d %s.%s -> %d", i,
allMethods[i]->clazz->descriptor, allMethods[i]->name,
outCount);
@@ -544,7 +544,7 @@ static int copyWithoutDuplicates(Method** allMethods, int allCount,
*/
for (i = 0; i < allCount; i++) {
if (allMethods[i] != NULL) {
- LOGV("BAD DUPE: %d %s.%s", i,
+ ALOGV("BAD DUPE: %d %s.%s", i,
allMethods[i]->clazz->descriptor, allMethods[i]->name);
dvmThrowIllegalArgumentException(
"incompatible return types in proxied interfaces");
@@ -897,7 +897,7 @@ static void proxyInvoker(const u4* args, JValue* pResult,
dvmAbort();
}
- LOGV("invoke: %s.%s, this=%p, handler=%s",
+ ALOGV("invoke: %s.%s, this=%p, handler=%s",
method->clazz->descriptor, method->name,
thisObj, handler->clazz->descriptor);
@@ -930,7 +930,7 @@ static void proxyInvoker(const u4* args, JValue* pResult,
assert(dvmCheckException(self));
goto bail;
}
- LOGV(" return type will be %s", returnType->descriptor);
+ ALOGV(" return type will be %s", returnType->descriptor);
/*
* Convert "args" array into Object[] array, using the method