aboutsummaryrefslogtreecommitdiff
path: root/dexopt
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 /dexopt
parent1663a6c12fdf4732d7ea0a0406af6085b3c408e4 (diff)
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 'dexopt')
-rw-r--r--dexopt/OptMain.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/dexopt/OptMain.cpp b/dexopt/OptMain.cpp
index e59d6742c..e0fdb6aa7 100644
--- a/dexopt/OptMain.cpp
+++ b/dexopt/OptMain.cpp
@@ -235,7 +235,7 @@ static int processZipFile(int zipFd, int cacheFd, const char* zipName,
int matchOffset = match - bcp;
if (matchOffset > 0 && bcp[matchOffset-1] == ':')
matchOffset--;
- LOGV("DexOptZ: found '%s' in bootclasspath, cutting off at %d",
+ ALOGV("DexOptZ: found '%s' in bootclasspath, cutting off at %d",
zipName, matchOffset);
bcpCopy = strdup(bcp);
bcpCopy[matchOffset] = '\0';
@@ -455,7 +455,7 @@ static int fromDex(int argc, char* const argv[])
GET_ARG(crc, strtoul, "bad crc");
GET_ARG(flags, strtol, "bad flags");
- LOGV("Args: fd=%d off=%ld len=%ld name='%s' mod=%#x crc=%#x flg=%d (argc=%d)",
+ ALOGV("Args: fd=%d off=%ld len=%ld name='%s' mod=%#x crc=%#x flg=%d (argc=%d)",
fd, offset, length, debugFileName, modWhen, crc, flags, argc);
assert(argc > 0);
@@ -469,7 +469,7 @@ static int fromDex(int argc, char* const argv[])
bcpLen = 0;
for (i = 0, argp = argv; i < argc; i++) {
++argp;
- LOGV("DEP: '%s'", *argp);
+ ALOGV("DEP: '%s'", *argp);
bcpLen += strlen(*argp) + 1;
}
@@ -488,7 +488,7 @@ static int fromDex(int argc, char* const argv[])
assert((int) strlen(bootClassPath) == bcpLen-1);
}
- LOGV(" bootclasspath is '%s'", bootClassPath);
+ ALOGV(" bootclasspath is '%s'", bootClassPath);
/* start the VM partway */
@@ -547,7 +547,7 @@ bail:
#endif
free(bootClassPath);
- LOGV("DexOpt command complete (result=%d)", result);
+ ALOGV("DexOpt command complete (result=%d)", result);
return result;
}