summaryrefslogtreecommitdiffstats
path: root/libcutils/properties.c
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-10-20 11:54:09 +0100
committerSteve Block <steveblock@google.com>2011-10-26 09:59:23 +0100
commit69f4cd7f5add7a7c7f5915e5292aab7eb2a42e9f (patch)
tree08dc2a948f5e066639f1fab58080e7c6769de815 /libcutils/properties.c
parent55bcd2dd8b6f0a705cea1bddaf4cf92fcaeaef0d (diff)
downloadsystem_core-69f4cd7f5add7a7c7f5915e5292aab7eb2a42e9f.zip
system_core-69f4cd7f5add7a7c7f5915e5292aab7eb2a42e9f.tar.gz
system_core-69f4cd7f5add7a7c7f5915e5292aab7eb2a42e9f.tar.bz2
Rename (IF_)LOGV(_IF) to (IF_)ALOGV(_IF) DO NOT MERGE
Bug: 5449033 Change-Id: Ib453f869977a6e909095a578bbf0420851f887d2
Diffstat (limited to 'libcutils/properties.c')
-rw-r--r--libcutils/properties.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libcutils/properties.c b/libcutils/properties.c
index 98f356b..98dbf50 100644
--- a/libcutils/properties.c
+++ b/libcutils/properties.c
@@ -130,7 +130,7 @@ static void init(void)
if (gPropFd < 0) {
//LOGW("not connected to system property server\n");
} else {
- //LOGV("Connected to system property server\n");
+ //ALOGV("Connected to system property server\n");
}
}
@@ -140,7 +140,7 @@ int property_get(const char *key, char *value, const char *default_value)
char recvBuf[1+PROPERTY_VALUE_MAX];
int len = -1;
- //LOGV("PROPERTY GET [%s]\n", key);
+ //ALOGV("PROPERTY GET [%s]\n", key);
pthread_once(&gInitOnce, init);
if (gPropFd < 0) {
@@ -194,7 +194,7 @@ int property_get(const char *key, char *value, const char *default_value)
assert(0);
return -1;
}
- //LOGV("PROP [found=%d def='%s'] (%d) [%s]: [%s]\n",
+ //ALOGV("PROP [found=%d def='%s'] (%d) [%s]: [%s]\n",
// recvBuf[0], default_value, len, key, value);
return len;
@@ -207,7 +207,7 @@ int property_set(const char *key, const char *value)
char recvBuf[1];
int result = -1;
- //LOGV("PROPERTY SET [%s]: [%s]\n", key, value);
+ //ALOGV("PROPERTY SET [%s]: [%s]\n", key, value);
pthread_once(&gInitOnce, init);
if (gPropFd < 0)
@@ -241,7 +241,7 @@ int property_set(const char *key, const char *value)
int property_list(void (*propfn)(const char *key, const char *value, void *cookie),
void *cookie)
{
- //LOGV("PROPERTY LIST\n");
+ //ALOGV("PROPERTY LIST\n");
pthread_once(&gInitOnce, init);
if (gPropFd < 0)
return -1;