Loading services/jni/com_android_server_AlarmManagerService.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -290,7 +290,7 @@ static jlong init_timerfd() epollfd = epoll_create(N_ANDROID_TIMERFDS); if (epollfd < 0) { ALOGV("epoll_create(%u) failed: %s", N_ANDROID_TIMERFDS, ALOGV("epoll_create(%zu) failed: %s", N_ANDROID_TIMERFDS, strerror(errno)); return 0; } Loading services/jni/com_android_server_input_InputManagerService.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -1244,7 +1244,7 @@ static void nativeVibrate(JNIEnv* env, size_t patternSize = env->GetArrayLength(patternObj); if (patternSize > MAX_VIBRATE_PATTERN_SIZE) { ALOGI("Skipped requested vibration because the pattern size is %d " ALOGI("Skipped requested vibration because the pattern size is %zd " "which is more than the maximum supported size of %d.", patternSize, MAX_VIBRATE_PATTERN_SIZE); return; // limit to reasonable size Loading Loading
services/jni/com_android_server_AlarmManagerService.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -290,7 +290,7 @@ static jlong init_timerfd() epollfd = epoll_create(N_ANDROID_TIMERFDS); if (epollfd < 0) { ALOGV("epoll_create(%u) failed: %s", N_ANDROID_TIMERFDS, ALOGV("epoll_create(%zu) failed: %s", N_ANDROID_TIMERFDS, strerror(errno)); return 0; } Loading
services/jni/com_android_server_input_InputManagerService.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -1244,7 +1244,7 @@ static void nativeVibrate(JNIEnv* env, size_t patternSize = env->GetArrayLength(patternObj); if (patternSize > MAX_VIBRATE_PATTERN_SIZE) { ALOGI("Skipped requested vibration because the pattern size is %d " ALOGI("Skipped requested vibration because the pattern size is %zd " "which is more than the maximum supported size of %d.", patternSize, MAX_VIBRATE_PATTERN_SIZE); return; // limit to reasonable size Loading