liblog: use log/log.h when utilizing ALOG macros

Test: compile
Bug: 30465923
Change-Id: I67046a75be057e7905570748a1ed6bfd03c0e1c8
This commit is contained in:
Mark Salyzyn 2017-01-10 10:16:48 -08:00
parent 04e53a1ca2
commit a4842ace39
10 changed files with 25 additions and 11 deletions

View file

@ -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>

View file

@ -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 {

View file

@ -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>

View file

@ -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 {

View file

@ -1,5 +1,6 @@
#define LOG_TAG "hidl_test"
#include <android/log.h>
#include <log/log.h>
#include "Child.h"

View file

@ -1,5 +1,6 @@
#define LOG_TAG "hidl_test"
#include <android/log.h>
#include <log/log.h>
#include "Parent.h"

View file

@ -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 {

View file

@ -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__); }

View file

@ -1,7 +1,8 @@
#define LOG_TAG "hidl_test"
#include "Pointer.h"
#include <android/log.h>
#include <log/log.h>
namespace android {
namespace hardware {

View file

@ -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) {