diff options
author | Steve Block <steveblock@google.com> | 2012-01-06 19:20:56 +0000 |
---|---|---|
committer | Steve Block <steveblock@google.com> | 2012-01-08 13:19:13 +0000 |
commit | 3762c311729fe9f3af085c14c5c1fb471d994c03 (patch) | |
tree | 7d4caccad80ac7327c7bff96dafc857d5f4631ad /native | |
parent | 7a939077bd14521c7d351af98df7ed75a8ec9c15 (diff) | |
download | frameworks_base-3762c311729fe9f3af085c14c5c1fb471d994c03.zip frameworks_base-3762c311729fe9f3af085c14c5c1fb471d994c03.tar.gz frameworks_base-3762c311729fe9f3af085c14c5c1fb471d994c03.tar.bz2 |
Rename (IF_)LOGE(_IF) to (IF_)ALOGE(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/#/c/157220
Bug: 5449033
Change-Id: Ic9c19d30693bd56755f55906127cd6bd7126096c
Diffstat (limited to 'native')
-rw-r--r-- | native/android/looper.cpp | 4 | ||||
-rw-r--r-- | native/android/storage_manager.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/native/android/looper.cpp b/native/android/looper.cpp index 615493f..455e950 100644 --- a/native/android/looper.cpp +++ b/native/android/looper.cpp @@ -44,7 +44,7 @@ void ALooper_release(ALooper* looper) { int ALooper_pollOnce(int timeoutMillis, int* outFd, int* outEvents, void** outData) { sp<Looper> looper = Looper::getForThread(); if (looper == NULL) { - LOGE("ALooper_pollOnce: No looper for this thread!"); + ALOGE("ALooper_pollOnce: No looper for this thread!"); return ALOOPER_POLL_ERROR; } @@ -55,7 +55,7 @@ int ALooper_pollOnce(int timeoutMillis, int* outFd, int* outEvents, void** outDa int ALooper_pollAll(int timeoutMillis, int* outFd, int* outEvents, void** outData) { sp<Looper> looper = Looper::getForThread(); if (looper == NULL) { - LOGE("ALooper_pollAll: No looper for this thread!"); + ALOGE("ALooper_pollAll: No looper for this thread!"); return ALOOPER_POLL_ERROR; } diff --git a/native/android/storage_manager.cpp b/native/android/storage_manager.cpp index 5e05045..f2f36b62 100644 --- a/native/android/storage_manager.cpp +++ b/native/android/storage_manager.cpp @@ -87,13 +87,13 @@ public: bool initialize() { sp<IServiceManager> sm = defaultServiceManager(); if (sm == NULL) { - LOGE("Couldn't get default ServiceManager\n"); + ALOGE("Couldn't get default ServiceManager\n"); return false; } mMountService = interface_cast<IMountService>(sm->getService(String16("mount"))); if (mMountService == NULL) { - LOGE("Couldn't get connection to MountService\n"); + ALOGE("Couldn't get connection to MountService\n"); return false; } |