liblog: use log/log.h when utilizing ALOG macros
Test: compile Bug: 30465923 Change-Id: I67046a75be057e7905570748a1ed6bfd03c0e1c8
This commit is contained in:
parent
04e53a1ca2
commit
a4842ace39
10 changed files with 25 additions and 11 deletions
|
@ -1,5 +1,6 @@
|
|||
#define LOG_TAG "android.hardware.boot@1.0-impl"
|
||||
#include <android/log.h>
|
||||
|
||||
#include <log/log.h>
|
||||
|
||||
#include <hardware/hardware.h>
|
||||
#include <hardware/boot_control.h>
|
||||
|
|
|
@ -15,10 +15,12 @@
|
|||
*/
|
||||
|
||||
#define LOG_TAG "ConsumerIrService"
|
||||
#include <android/log.h>
|
||||
|
||||
#include <log/log.h>
|
||||
|
||||
#include <hardware/hardware.h>
|
||||
#include <hardware/consumerir.h>
|
||||
|
||||
#include "ConsumerIr.h"
|
||||
|
||||
namespace android {
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#define LOG_TAG "android.hardware.nfc@1.0-impl"
|
||||
#include <android/log.h>
|
||||
|
||||
#include <log/log.h>
|
||||
|
||||
#include <hardware/hardware.h>
|
||||
#include <hardware/nfc.h>
|
||||
|
|
|
@ -2,9 +2,11 @@
|
|||
#define LOG_TAG "hidl_test"
|
||||
|
||||
#include "Bar.h"
|
||||
#include <android/log.h>
|
||||
|
||||
#include <inttypes.h>
|
||||
|
||||
#include <log/log.h>
|
||||
|
||||
namespace android {
|
||||
namespace hardware {
|
||||
namespace tests {
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#define LOG_TAG "hidl_test"
|
||||
#include <android/log.h>
|
||||
|
||||
#include <log/log.h>
|
||||
|
||||
#include "Child.h"
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#define LOG_TAG "hidl_test"
|
||||
#include <android/log.h>
|
||||
|
||||
#include <log/log.h>
|
||||
|
||||
#include "Parent.h"
|
||||
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
|
||||
#include "MemoryTest.h"
|
||||
|
||||
#include <log/log.h>
|
||||
|
||||
#include <hidlmemory/mapping.h>
|
||||
|
||||
#include <android/hidl/memory/1.0/IMemory.h>
|
||||
|
||||
#include <android/log.h>
|
||||
|
||||
using android::hidl::memory::V1_0::IMemory;
|
||||
|
||||
namespace android {
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
#define LOG_TAG "hidl_test"
|
||||
|
||||
#include "Graph.h"
|
||||
#include <android/log.h>
|
||||
|
||||
#include <log/log.h>
|
||||
|
||||
#include <hidl-test/PointerHelper.h>
|
||||
|
||||
#define PUSH_ERROR_IF(__cond__) if(__cond__) { errors.push_back(std::to_string(__LINE__) + ": " + #__cond__); }
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
#define LOG_TAG "hidl_test"
|
||||
|
||||
#include "Pointer.h"
|
||||
#include <android/log.h>
|
||||
|
||||
#include <log/log.h>
|
||||
|
||||
namespace android {
|
||||
namespace hardware {
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
#define LOG_TAG "hidl_test"
|
||||
#include <android/log.h>
|
||||
|
||||
#include <log/log.h>
|
||||
|
||||
#include "PointerHelper.h"
|
||||
|
||||
namespace android {
|
||||
|
||||
void simpleGraph(IGraph::Graph& g) {
|
||||
|
|
Loading…
Reference in a new issue