Merge "Remove dependency on JNIHelp header side effects." into klp-dev
This commit is contained in:
@ -19,6 +19,7 @@
|
||||
#include <jni.h>
|
||||
#include <JNIHelp.h>
|
||||
#include <android_runtime/AndroidRuntime.h>
|
||||
#include <android_runtime/Log.h>
|
||||
|
||||
#include <utils/Log.h>
|
||||
#include <utils/String8.h>
|
||||
|
@ -24,6 +24,7 @@
|
||||
|
||||
#include <android_runtime/AndroidRuntime.h>
|
||||
#include <android_runtime/android_view_Surface.h>
|
||||
#include <android_runtime/Log.h>
|
||||
|
||||
#include <binder/IServiceManager.h>
|
||||
|
||||
|
@ -21,6 +21,7 @@
|
||||
#include "utils/misc.h"
|
||||
#include "cutils/debugger.h"
|
||||
|
||||
#include <cutils/log.h>
|
||||
#include <fcntl.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
@ -19,6 +19,7 @@
|
||||
#include "JNIHelp.h"
|
||||
|
||||
#include <android_runtime/AndroidRuntime.h>
|
||||
#include <android_runtime/Log.h>
|
||||
#include <utils/Log.h>
|
||||
#include <input/Input.h>
|
||||
#include "android_view_KeyEvent.h"
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
#include <SkMatrix.h>
|
||||
#include <android_runtime/AndroidRuntime.h>
|
||||
#include <android_runtime/Log.h>
|
||||
#include <utils/Log.h>
|
||||
#include <input/Input.h>
|
||||
#include "android_os_Parcel.h"
|
||||
|
@ -21,6 +21,7 @@
|
||||
#include "android_view_PointerIcon.h"
|
||||
|
||||
#include <android_runtime/AndroidRuntime.h>
|
||||
#include <android_runtime/Log.h>
|
||||
#include <utils/Log.h>
|
||||
#include <android/graphics/GraphicsJNI.h>
|
||||
|
||||
|
@ -26,6 +26,7 @@
|
||||
#include <android_runtime/AndroidRuntime.h>
|
||||
#include <android_runtime/android_view_Surface.h>
|
||||
#include <android_runtime/android_graphics_SurfaceTexture.h>
|
||||
#include <android_runtime/Log.h>
|
||||
|
||||
#include <binder/Parcel.h>
|
||||
|
||||
|
35
include/android_runtime/Log.h
Normal file
35
include/android_runtime/Log.h
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Copyright (C) 2013 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#ifndef _RUNTIME_ANDROID_LOG_H
|
||||
#define _RUNTIME_ANDROID_LOG_H
|
||||
|
||||
// This relies on JNIHelp.h
|
||||
|
||||
/* Logging macros.
|
||||
*
|
||||
* Logs an exception. If the exception is omitted or NULL, logs the current exception
|
||||
* from the JNI environment, if any.
|
||||
*/
|
||||
#define LOG_EX(env, priority, tag, ...) \
|
||||
jniLogException(env, ANDROID_##priority, tag, ##__VA_ARGS__)
|
||||
#define LOGV_EX(env, ...) LOG_EX(env, LOG_VERBOSE, LOG_TAG, ##__VA_ARGS__)
|
||||
#define LOGD_EX(env, ...) LOG_EX(env, LOG_DEBUG, LOG_TAG, ##__VA_ARGS__)
|
||||
#define LOGI_EX(env, ...) LOG_EX(env, LOG_INFO, LOG_TAG, ##__VA_ARGS__)
|
||||
#define LOGW_EX(env, ...) LOG_EX(env, LOG_WARN, LOG_TAG, ##__VA_ARGS__)
|
||||
#define LOGE_EX(env, ...) LOG_EX(env, LOG_ERROR, LOG_TAG, ##__VA_ARGS__)
|
||||
|
||||
#endif // _RUNTIME_ANDROID_LOG_H
|
@ -21,6 +21,7 @@
|
||||
#include "android_media_MediaDrm.h"
|
||||
|
||||
#include "android_runtime/AndroidRuntime.h"
|
||||
#include "android_runtime/Log.h"
|
||||
#include "android_os_Parcel.h"
|
||||
#include "jni.h"
|
||||
#include "JNIHelp.h"
|
||||
|
@ -22,6 +22,7 @@
|
||||
|
||||
#include "android_media_Utils.h"
|
||||
#include "android_runtime/AndroidRuntime.h"
|
||||
#include "android_runtime/Log.h"
|
||||
#include "jni.h"
|
||||
#include "JNIHelp.h"
|
||||
|
||||
|
@ -31,6 +31,7 @@
|
||||
#include "JNIHelp.h"
|
||||
#include "android_runtime/AndroidRuntime.h"
|
||||
#include "android_runtime/android_view_Surface.h"
|
||||
#include "android_runtime/Log.h"
|
||||
#include "utils/Errors.h" // for status_t
|
||||
#include "utils/KeyedVector.h"
|
||||
#include "utils/String8.h"
|
||||
|
@ -25,6 +25,7 @@
|
||||
#include "jni.h"
|
||||
#include "JNIHelp.h"
|
||||
#include "android_runtime/AndroidRuntime.h"
|
||||
#include "android_runtime/Log.h"
|
||||
|
||||
using namespace android;
|
||||
|
||||
|
@ -26,6 +26,7 @@
|
||||
#include "jni.h"
|
||||
#include "JNIHelp.h"
|
||||
#include "android_runtime/AndroidRuntime.h"
|
||||
#include "android_runtime/Log.h"
|
||||
|
||||
#include "MtpDatabase.h"
|
||||
#include "MtpDataPacket.h"
|
||||
|
@ -28,6 +28,7 @@
|
||||
#include "jni.h"
|
||||
#include "JNIHelp.h"
|
||||
#include "android_runtime/AndroidRuntime.h"
|
||||
#include "android_runtime/Log.h"
|
||||
#include "private/android_filesystem_config.h"
|
||||
|
||||
#include "MtpTypes.h"
|
||||
|
@ -14,6 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#define LOG_TAG "VideoEditorClasses"
|
||||
|
||||
#include <VideoEditorClasses.h>
|
||||
#include <VideoEditorJava.h>
|
||||
|
@ -14,6 +14,8 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#define LOG_TAG "VideoEditorJava"
|
||||
|
||||
#include <VideoEditorClasses.h>
|
||||
#include <VideoEditorJava.h>
|
||||
#include <VideoEditorLogging.h>
|
||||
|
@ -17,6 +17,16 @@
|
||||
#ifndef VIDEO_EDITOR_LOGGING_H
|
||||
#define VIDEO_EDITOR_LOGGING_H
|
||||
|
||||
#ifndef LOG_TAG
|
||||
#error "No LOG_TAG defined!"
|
||||
#endif
|
||||
|
||||
/*
|
||||
* This file is used as a proxy for cutils/log.h. Include cutils/log.h here to
|
||||
* avoid relying on import ordering.
|
||||
*/
|
||||
#include <cutils/log.h>
|
||||
|
||||
//#define VIDEOEDIT_LOGGING_ENABLED
|
||||
|
||||
#define VIDEOEDIT_LOG_INDENTATION (3)
|
||||
|
@ -14,6 +14,8 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#define LOG_TAG "VideoEditorOsal"
|
||||
|
||||
#include <VideoEditorJava.h>
|
||||
#include <VideoEditorLogging.h>
|
||||
#include <VideoEditorOsal.h>
|
||||
|
@ -14,6 +14,8 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#define LOG_TAG "VideoEditorPropertiesMain"
|
||||
|
||||
#include <dlfcn.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
@ -20,6 +20,7 @@
|
||||
#include "JNIHelp.h"
|
||||
|
||||
#include <android_view_GraphicBuffer.h>
|
||||
#include <cutils/log.h>
|
||||
|
||||
#include <GLES2/gl2.h>
|
||||
#include <GLES2/gl2ext.h>
|
||||
|
@ -20,6 +20,7 @@
|
||||
#include "jni.h"
|
||||
#include "JNIHelp.h"
|
||||
#include "android_runtime/AndroidRuntime.h"
|
||||
#include "android_runtime/Log.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <asm/byteorder.h>
|
||||
|
@ -20,6 +20,7 @@
|
||||
#include "jni.h"
|
||||
#include "JNIHelp.h"
|
||||
#include "android_runtime/AndroidRuntime.h"
|
||||
#include "android_runtime/Log.h"
|
||||
#include "utils/Vector.h"
|
||||
|
||||
#include <usbhost/usbhost.h>
|
||||
|
@ -29,6 +29,7 @@
|
||||
#include "jni.h"
|
||||
#include <limits.h>
|
||||
#include <android_runtime/AndroidRuntime.h>
|
||||
#include <android_runtime/Log.h>
|
||||
|
||||
#include <utils/Log.h>
|
||||
#include <utils/Looper.h>
|
||||
|
@ -23,6 +23,7 @@
|
||||
#include "jni.h"
|
||||
#include "JNIHelp.h"
|
||||
#include "android_runtime/AndroidRuntime.h"
|
||||
#include "android_runtime/Log.h"
|
||||
#include "hardware/fused_location.h"
|
||||
#include "hardware_legacy/power.h"
|
||||
|
||||
|
@ -26,6 +26,7 @@
|
||||
#include "utils/Log.h"
|
||||
#include "utils/misc.h"
|
||||
#include "android_runtime/AndroidRuntime.h"
|
||||
#include "android_runtime/Log.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <pthread.h>
|
||||
|
@ -26,6 +26,7 @@
|
||||
#include <limits.h>
|
||||
|
||||
#include <android_runtime/AndroidRuntime.h>
|
||||
#include <android_runtime/Log.h>
|
||||
#include <utils/Timers.h>
|
||||
#include <utils/misc.h>
|
||||
#include <utils/String8.h>
|
||||
|
Reference in New Issue
Block a user