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 /services/jni | |
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 'services/jni')
-rw-r--r-- | services/jni/com_android_server_AlarmManagerService.cpp | 6 | ||||
-rw-r--r-- | services/jni/com_android_server_BatteryService.cpp | 26 | ||||
-rw-r--r-- | services/jni/com_android_server_InputManager.cpp | 14 | ||||
-rw-r--r-- | services/jni/com_android_server_PowerManagerService.cpp | 2 | ||||
-rw-r--r-- | services/jni/com_android_server_UsbDeviceManager.cpp | 10 | ||||
-rw-r--r-- | services/jni/com_android_server_UsbHostManager.cpp | 12 | ||||
-rw-r--r-- | services/jni/com_android_server_connectivity_Vpn.cpp | 28 | ||||
-rwxr-xr-x | services/jni/com_android_server_location_GpsLocationProvider.cpp | 24 | ||||
-rw-r--r-- | services/jni/onload.cpp | 2 |
9 files changed, 62 insertions, 62 deletions
diff --git a/services/jni/com_android_server_AlarmManagerService.cpp b/services/jni/com_android_server_AlarmManagerService.cpp index 5f189a2..c2f6151 100644 --- a/services/jni/com_android_server_AlarmManagerService.cpp +++ b/services/jni/com_android_server_AlarmManagerService.cpp @@ -46,7 +46,7 @@ static jint android_server_AlarmManagerService_setKernelTimezone(JNIEnv* env, jo int result = settimeofday(NULL, &tz); if (result < 0) { - LOGE("Unable to set kernel timezone to %d: %s\n", minswest, strerror(errno)); + ALOGE("Unable to set kernel timezone to %d: %s\n", minswest, strerror(errno)); return -1; } else { ALOGD("Kernel timezone updated to %d minutes west of GMT\n", minswest); @@ -74,7 +74,7 @@ static void android_server_AlarmManagerService_set(JNIEnv* env, jobject obj, jin int result = ioctl(fd, ANDROID_ALARM_SET(type), &ts); if (result < 0) { - LOGE("Unable to set alarm to %lld.%09lld: %s\n", seconds, nanoseconds, strerror(errno)); + ALOGE("Unable to set alarm to %lld.%09lld: %s\n", seconds, nanoseconds, strerror(errno)); } } @@ -89,7 +89,7 @@ static jint android_server_AlarmManagerService_waitForAlarm(JNIEnv* env, jobject if (result < 0) { - LOGE("Unable to wait on alarm: %s\n", strerror(errno)); + ALOGE("Unable to wait on alarm: %s\n", strerror(errno)); return 0; } diff --git a/services/jni/com_android_server_BatteryService.cpp b/services/jni/com_android_server_BatteryService.cpp index 6082fc7..1cadc4e 100644 --- a/services/jni/com_android_server_BatteryService.cpp +++ b/services/jni/com_android_server_BatteryService.cpp @@ -137,7 +137,7 @@ static int readFromFile(const char* path, char* buf, size_t size) return -1; int fd = open(path, O_RDONLY, 0); if (fd == -1) { - LOGE("Could not open '%s'", path); + ALOGE("Could not open '%s'", path); return -1; } @@ -232,7 +232,7 @@ int register_android_server_BatteryService(JNIEnv* env) DIR* dir = opendir(POWER_SUPPLY_PATH); if (dir == NULL) { - LOGE("Could not open %s\n", POWER_SUPPLY_PATH); + ALOGE("Could not open %s\n", POWER_SUPPLY_PATH); return -1; } while ((entry = readdir(dir))) { @@ -304,28 +304,28 @@ int register_android_server_BatteryService(JNIEnv* env) closedir(dir); if (!gPaths.acOnlinePath) - LOGE("acOnlinePath not found"); + ALOGE("acOnlinePath not found"); if (!gPaths.usbOnlinePath) - LOGE("usbOnlinePath not found"); + ALOGE("usbOnlinePath not found"); if (!gPaths.batteryStatusPath) - LOGE("batteryStatusPath not found"); + ALOGE("batteryStatusPath not found"); if (!gPaths.batteryHealthPath) - LOGE("batteryHealthPath not found"); + ALOGE("batteryHealthPath not found"); if (!gPaths.batteryPresentPath) - LOGE("batteryPresentPath not found"); + ALOGE("batteryPresentPath not found"); if (!gPaths.batteryCapacityPath) - LOGE("batteryCapacityPath not found"); + ALOGE("batteryCapacityPath not found"); if (!gPaths.batteryVoltagePath) - LOGE("batteryVoltagePath not found"); + ALOGE("batteryVoltagePath not found"); if (!gPaths.batteryTemperaturePath) - LOGE("batteryTemperaturePath not found"); + ALOGE("batteryTemperaturePath not found"); if (!gPaths.batteryTechnologyPath) - LOGE("batteryTechnologyPath not found"); + ALOGE("batteryTechnologyPath not found"); jclass clazz = env->FindClass("com/android/server/BatteryService"); if (clazz == NULL) { - LOGE("Can't find com/android/server/BatteryService"); + ALOGE("Can't find com/android/server/BatteryService"); return -1; } @@ -352,7 +352,7 @@ int register_android_server_BatteryService(JNIEnv* env) clazz = env->FindClass("android/os/BatteryManager"); if (clazz == NULL) { - LOGE("Can't find android/os/BatteryManager"); + ALOGE("Can't find android/os/BatteryManager"); return -1; } diff --git a/services/jni/com_android_server_InputManager.cpp b/services/jni/com_android_server_InputManager.cpp index 5116785..e163826 100644 --- a/services/jni/com_android_server_InputManager.cpp +++ b/services/jni/com_android_server_InputManager.cpp @@ -312,7 +312,7 @@ void NativeInputManager::dump(String8& dump) { bool NativeInputManager::checkAndClearExceptionFromCallback(JNIEnv* env, const char* methodName) { if (env->ExceptionCheck()) { - LOGE("An exception was thrown by callback '%s'.", methodName); + ALOGE("An exception was thrown by callback '%s'.", methodName); LOGE_EX(env); env->ExceptionClear(); return true; @@ -736,7 +736,7 @@ bool NativeInputManager::filterInputEvent(const InputEvent* inputEvent, uint32_t } if (!inputEventObj) { - LOGE("Failed to obtain input event object for filterInputEvent."); + ALOGE("Failed to obtain input event object for filterInputEvent."); return true; // dispatch the event normally } @@ -774,7 +774,7 @@ void NativeInputManager::interceptKeyBeforeQueueing(const KeyEvent* keyEvent, android_view_KeyEvent_recycle(env, keyEventObj); env->DeleteLocalRef(keyEventObj); } else { - LOGE("Failed to obtain key event object for interceptKeyBeforeQueueing."); + ALOGE("Failed to obtain key event object for interceptKeyBeforeQueueing."); wmActions = 0; } @@ -879,7 +879,7 @@ nsecs_t NativeInputManager::interceptKeyBeforeDispatching( } } } else { - LOGE("Failed to obtain key event object for interceptKeyBeforeDispatching."); + ALOGE("Failed to obtain key event object for interceptKeyBeforeDispatching."); } env->DeleteLocalRef(inputWindowHandleObj); } @@ -917,7 +917,7 @@ bool NativeInputManager::dispatchUnhandledKey(const sp<InputWindowHandle>& input env->DeleteLocalRef(fallbackKeyEventObj); } } else { - LOGE("Failed to obtain key event object for dispatchUnhandledKey."); + ALOGE("Failed to obtain key event object for dispatchUnhandledKey."); } env->DeleteLocalRef(inputWindowHandleObj); } @@ -958,7 +958,7 @@ static sp<NativeInputManager> gNativeInputManager; static bool checkInputManagerUnitialized(JNIEnv* env) { if (gNativeInputManager == NULL) { - LOGE("Input manager not initialized."); + ALOGE("Input manager not initialized."); jniThrowRuntimeException(env, "Input manager not initialized."); return true; } @@ -971,7 +971,7 @@ static void android_server_InputManager_nativeInit(JNIEnv* env, jclass clazz, sp<Looper> looper = android_os_MessageQueue_getLooper(env, messageQueueObj); gNativeInputManager = new NativeInputManager(contextObj, callbacksObj, looper); } else { - LOGE("Input manager already initialized."); + ALOGE("Input manager already initialized."); jniThrowRuntimeException(env, "Input manager already initialized."); } } diff --git a/services/jni/com_android_server_PowerManagerService.cpp b/services/jni/com_android_server_PowerManagerService.cpp index 08650e1..d2b3118 100644 --- a/services/jni/com_android_server_PowerManagerService.cpp +++ b/services/jni/com_android_server_PowerManagerService.cpp @@ -58,7 +58,7 @@ static const nsecs_t MIN_TIME_BETWEEN_USERACTIVITIES = 500 * 1000000L; // 500ms static bool checkAndClearExceptionFromCallback(JNIEnv* env, const char* methodName) { if (env->ExceptionCheck()) { - LOGE("An exception was thrown by callback '%s'.", methodName); + ALOGE("An exception was thrown by callback '%s'.", methodName); LOGE_EX(env); env->ExceptionClear(); return true; diff --git a/services/jni/com_android_server_UsbDeviceManager.cpp b/services/jni/com_android_server_UsbDeviceManager.cpp index 40f0dbd..0cd94b9 100644 --- a/services/jni/com_android_server_UsbDeviceManager.cpp +++ b/services/jni/com_android_server_UsbDeviceManager.cpp @@ -42,7 +42,7 @@ static struct parcel_file_descriptor_offsets_t static void checkAndClearExceptionFromCallback(JNIEnv* env, const char* methodName) { if (env->ExceptionCheck()) { - LOGE("An exception was thrown by callback '%s'.", methodName); + ALOGE("An exception was thrown by callback '%s'.", methodName); LOGE_EX(env); env->ExceptionClear(); } @@ -66,7 +66,7 @@ static jobjectArray android_server_UsbDeviceManager_getAccessoryStrings(JNIEnv * { int fd = open(DRIVER_NAME, O_RDWR); if (fd < 0) { - LOGE("could not open %s", DRIVER_NAME); + ALOGE("could not open %s", DRIVER_NAME); return NULL; } jclass stringClass = env->FindClass("java/lang/String"); @@ -88,7 +88,7 @@ static jobject android_server_UsbDeviceManager_openAccessory(JNIEnv *env, jobjec { int fd = open(DRIVER_NAME, O_RDWR); if (fd < 0) { - LOGE("could not open %s", DRIVER_NAME); + ALOGE("could not open %s", DRIVER_NAME); return NULL; } jobject fileDescriptor = jniCreateFileDescriptor(env, fd); @@ -103,7 +103,7 @@ static jboolean android_server_UsbDeviceManager_isStartRequested(JNIEnv *env, jo { int fd = open(DRIVER_NAME, O_RDWR); if (fd < 0) { - LOGE("could not open %s", DRIVER_NAME); + ALOGE("could not open %s", DRIVER_NAME); return false; } int result = ioctl(fd, ACCESSORY_IS_START_REQUESTED); @@ -125,7 +125,7 @@ int register_android_server_UsbDeviceManager(JNIEnv *env) { jclass clazz = env->FindClass("com/android/server/usb/UsbDeviceManager"); if (clazz == NULL) { - LOGE("Can't find com/android/server/usb/UsbDeviceManager"); + ALOGE("Can't find com/android/server/usb/UsbDeviceManager"); return -1; } diff --git a/services/jni/com_android_server_UsbHostManager.cpp b/services/jni/com_android_server_UsbHostManager.cpp index f1abf56..d0a6cdf 100644 --- a/services/jni/com_android_server_UsbHostManager.cpp +++ b/services/jni/com_android_server_UsbHostManager.cpp @@ -45,7 +45,7 @@ static jmethodID method_usbDeviceRemoved; static void checkAndClearExceptionFromCallback(JNIEnv* env, const char* methodName) { if (env->ExceptionCheck()) { - LOGE("An exception was thrown by callback '%s'.", methodName); + ALOGE("An exception was thrown by callback '%s'.", methodName); LOGE_EX(env); env->ExceptionClear(); } @@ -57,7 +57,7 @@ static int usb_device_added(const char *devname, void* client_data) { struct usb_device *device = usb_device_open(devname); if (!device) { - LOGE("usb_device_open failed\n"); + ALOGE("usb_device_open failed\n"); return 0; } @@ -135,7 +135,7 @@ static void android_server_UsbHostManager_monitorUsbHostBus(JNIEnv *env, jobject { struct usb_host_context* context = usb_host_init(); if (!context) { - LOGE("usb_host_init failed"); + ALOGE("usb_host_init failed"); return; } // this will never return so it is safe to pass thiz directly @@ -175,17 +175,17 @@ int register_android_server_UsbHostManager(JNIEnv *env) { jclass clazz = env->FindClass("com/android/server/usb/UsbHostManager"); if (clazz == NULL) { - LOGE("Can't find com/android/server/usb/UsbHostManager"); + ALOGE("Can't find com/android/server/usb/UsbHostManager"); return -1; } method_usbDeviceAdded = env->GetMethodID(clazz, "usbDeviceAdded", "(Ljava/lang/String;IIIII[I[I)V"); if (method_usbDeviceAdded == NULL) { - LOGE("Can't find usbDeviceAdded"); + ALOGE("Can't find usbDeviceAdded"); return -1; } method_usbDeviceRemoved = env->GetMethodID(clazz, "usbDeviceRemoved", "(Ljava/lang/String;)V"); if (method_usbDeviceRemoved == NULL) { - LOGE("Can't find usbDeviceRemoved"); + ALOGE("Can't find usbDeviceRemoved"); return -1; } diff --git a/services/jni/com_android_server_connectivity_Vpn.cpp b/services/jni/com_android_server_connectivity_Vpn.cpp index d9b8a14..ab8c959 100644 --- a/services/jni/com_android_server_connectivity_Vpn.cpp +++ b/services/jni/com_android_server_connectivity_Vpn.cpp @@ -63,21 +63,21 @@ static int create_interface(int mtu) // Allocate interface. ifr4.ifr_flags = IFF_TUN | IFF_NO_PI; if (ioctl(tun, TUNSETIFF, &ifr4)) { - LOGE("Cannot allocate TUN: %s", strerror(errno)); + ALOGE("Cannot allocate TUN: %s", strerror(errno)); goto error; } // Activate interface. ifr4.ifr_flags = IFF_UP; if (ioctl(inet4, SIOCSIFFLAGS, &ifr4)) { - LOGE("Cannot activate %s: %s", ifr4.ifr_name, strerror(errno)); + ALOGE("Cannot activate %s: %s", ifr4.ifr_name, strerror(errno)); goto error; } // Set MTU if it is specified. ifr4.ifr_mtu = mtu; if (mtu > 0 && ioctl(inet4, SIOCSIFMTU, &ifr4)) { - LOGE("Cannot set MTU on %s: %s", ifr4.ifr_name, strerror(errno)); + ALOGE("Cannot set MTU on %s: %s", ifr4.ifr_name, strerror(errno)); goto error; } @@ -92,7 +92,7 @@ static int get_interface_name(char *name, int tun) { ifreq ifr4; if (ioctl(tun, TUNGETIFF, &ifr4)) { - LOGE("Cannot get interface name: %s", strerror(errno)); + ALOGE("Cannot get interface name: %s", strerror(errno)); return SYSTEM_ERROR; } strncpy(name, ifr4.ifr_name, IFNAMSIZ); @@ -104,7 +104,7 @@ static int get_interface_index(const char *name) ifreq ifr4; strncpy(ifr4.ifr_name, name, IFNAMSIZ); if (ioctl(inet4, SIOGIFINDEX, &ifr4)) { - LOGE("Cannot get index of %s: %s", name, strerror(errno)); + ALOGE("Cannot get index of %s: %s", name, strerror(errno)); return SYSTEM_ERROR; } return ifr4.ifr_ifindex; @@ -176,11 +176,11 @@ static int set_addresses(const char *name, const char *addresses) } if (count == BAD_ARGUMENT) { - LOGE("Invalid address: %s/%d", address, prefix); + ALOGE("Invalid address: %s/%d", address, prefix); } else if (count == SYSTEM_ERROR) { - LOGE("Cannot add address: %s/%d: %s", address, prefix, strerror(errno)); + ALOGE("Cannot add address: %s/%d: %s", address, prefix, strerror(errno)); } else if (*addresses) { - LOGE("Invalid address: %s", addresses); + ALOGE("Invalid address: %s", addresses); count = BAD_ARGUMENT; } @@ -265,12 +265,12 @@ static int set_routes(const char *name, const char *routes) } if (count == BAD_ARGUMENT) { - LOGE("Invalid route: %s/%d", address, prefix); + ALOGE("Invalid route: %s/%d", address, prefix); } else if (count == SYSTEM_ERROR) { - LOGE("Cannot add route: %s/%d: %s", + ALOGE("Cannot add route: %s/%d: %s", address, prefix, strerror(errno)); } else if (*routes) { - LOGE("Invalid route: %s", routes); + ALOGE("Invalid route: %s", routes); count = BAD_ARGUMENT; } @@ -284,7 +284,7 @@ static int reset_interface(const char *name) ifr4.ifr_flags = 0; if (ioctl(inet4, SIOCSIFFLAGS, &ifr4) && errno != ENODEV) { - LOGE("Cannot reset %s: %s", name, strerror(errno)); + ALOGE("Cannot reset %s: %s", name, strerror(errno)); return SYSTEM_ERROR; } return 0; @@ -297,7 +297,7 @@ static int check_interface(const char *name) ifr4.ifr_flags = 0; if (ioctl(inet4, SIOCGIFFLAGS, &ifr4) && errno != ENODEV) { - LOGE("Cannot check %s: %s", name, strerror(errno)); + ALOGE("Cannot check %s: %s", name, strerror(errno)); } return ifr4.ifr_flags; } @@ -305,7 +305,7 @@ static int check_interface(const char *name) static int bind_to_interface(int socket, const char *name) { if (setsockopt(socket, SOL_SOCKET, SO_BINDTODEVICE, name, strlen(name))) { - LOGE("Cannot bind socket to %s: %s", name, strerror(errno)); + ALOGE("Cannot bind socket to %s: %s", name, strerror(errno)); return SYSTEM_ERROR; } return 0; diff --git a/services/jni/com_android_server_location_GpsLocationProvider.cpp b/services/jni/com_android_server_location_GpsLocationProvider.cpp index 2e5b5d6..50bd46e 100755 --- a/services/jni/com_android_server_location_GpsLocationProvider.cpp +++ b/services/jni/com_android_server_location_GpsLocationProvider.cpp @@ -62,7 +62,7 @@ namespace android { static void checkAndClearExceptionFromCallback(JNIEnv* env, const char* methodName) { if (env->ExceptionCheck()) { - LOGE("An exception was thrown by callback '%s'.", methodName); + ALOGE("An exception was thrown by callback '%s'.", methodName); LOGE_EX(env); env->ExceptionClear(); } @@ -196,7 +196,7 @@ static void gps_ni_notify_callback(GpsNiNotification *notification) notification->requestor_id_encoding, notification->text_encoding, extras); } else { - LOGE("out of memory in gps_ni_notify_callback\n"); + ALOGE("out of memory in gps_ni_notify_callback\n"); } if (requestor_id) @@ -376,7 +376,7 @@ static void android_location_GpsLocationProvider_agps_set_reference_location_cel AGpsRefLocation location; if (!sAGpsRilInterface) { - LOGE("no AGPS RIL interface in agps_set_reference_location_cellid"); + ALOGE("no AGPS RIL interface in agps_set_reference_location_cellid"); return; } @@ -390,7 +390,7 @@ static void android_location_GpsLocationProvider_agps_set_reference_location_cel location.u.cellID.cid = cid; break; default: - LOGE("Neither a GSM nor a UMTS cellid (%s:%d).",__FUNCTION__,__LINE__); + ALOGE("Neither a GSM nor a UMTS cellid (%s:%d).",__FUNCTION__,__LINE__); return; break; } @@ -403,7 +403,7 @@ static void android_location_GpsLocationProvider_agps_send_ni_message(JNIEnv* en size_t sz; if (!sAGpsRilInterface) { - LOGE("no AGPS RIL interface in send_ni_message"); + ALOGE("no AGPS RIL interface in send_ni_message"); return; } if (size < 0) @@ -418,7 +418,7 @@ static void android_location_GpsLocationProvider_agps_set_id(JNIEnv *env, jobject obj, jint type, jstring setid_string) { if (!sAGpsRilInterface) { - LOGE("no AGPS RIL interface in agps_set_id"); + ALOGE("no AGPS RIL interface in agps_set_id"); return; } @@ -463,7 +463,7 @@ static void android_location_GpsLocationProvider_inject_xtra_data(JNIEnv* env, j jbyteArray data, jint length) { if (!sGpsXtraInterface) { - LOGE("no XTRA interface in inject_xtra_data"); + ALOGE("no XTRA interface in inject_xtra_data"); return; } @@ -475,7 +475,7 @@ static void android_location_GpsLocationProvider_inject_xtra_data(JNIEnv* env, j static void android_location_GpsLocationProvider_agps_data_conn_open(JNIEnv* env, jobject obj, jstring apn) { if (!sAGpsInterface) { - LOGE("no AGPS interface in agps_data_conn_open"); + ALOGE("no AGPS interface in agps_data_conn_open"); return; } if (apn == NULL) { @@ -490,7 +490,7 @@ static void android_location_GpsLocationProvider_agps_data_conn_open(JNIEnv* env static void android_location_GpsLocationProvider_agps_data_conn_closed(JNIEnv* env, jobject obj) { if (!sAGpsInterface) { - LOGE("no AGPS interface in agps_data_conn_open"); + ALOGE("no AGPS interface in agps_data_conn_open"); return; } sAGpsInterface->data_conn_closed(); @@ -499,7 +499,7 @@ static void android_location_GpsLocationProvider_agps_data_conn_closed(JNIEnv* e static void android_location_GpsLocationProvider_agps_data_conn_failed(JNIEnv* env, jobject obj) { if (!sAGpsInterface) { - LOGE("no AGPS interface in agps_data_conn_open"); + ALOGE("no AGPS interface in agps_data_conn_open"); return; } sAGpsInterface->data_conn_failed(); @@ -509,7 +509,7 @@ static void android_location_GpsLocationProvider_set_agps_server(JNIEnv* env, jo jint type, jstring hostname, jint port) { if (!sAGpsInterface) { - LOGE("no AGPS interface in agps_data_conn_open"); + ALOGE("no AGPS interface in agps_data_conn_open"); return; } const char *c_hostname = env->GetStringUTFChars(hostname, NULL); @@ -521,7 +521,7 @@ static void android_location_GpsLocationProvider_send_ni_response(JNIEnv* env, j jint notifId, jint response) { if (!sGpsNiInterface) { - LOGE("no NI interface in send_ni_response"); + ALOGE("no NI interface in send_ni_response"); return; } diff --git a/services/jni/onload.cpp b/services/jni/onload.cpp index 4178039..286ae91 100644 --- a/services/jni/onload.cpp +++ b/services/jni/onload.cpp @@ -43,7 +43,7 @@ extern "C" jint JNI_OnLoad(JavaVM* vm, void* reserved) jint result = -1; if (vm->GetEnv((void**) &env, JNI_VERSION_1_4) != JNI_OK) { - LOGE("GetEnv failed!"); + ALOGE("GetEnv failed!"); return result; } LOG_ASSERT(env, "Could not retrieve the env!"); |