Merge "Re-unite sources with their headers" am: e43444a00b am: 946d11d216

am: b365b0db93

Change-Id: I5cbc54ea69e627a286fa1a2f855102146c3e044f
This commit is contained in:
John Reck
2016-11-04 21:57:05 +00:00
committed by android-build-merger
21 changed files with 23 additions and 31 deletions

View File

@@ -49,6 +49,8 @@ LOCAL_CFLAGS += -DSTATIC_ANDROIDFW_FOR_TOOLS
LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code
LOCAL_SRC_FILES:= $(hostSources)
LOCAL_C_INCLUDES := external/zlib
LOCAL_C_INCLUDES += $(LOCAL_PATH)/include
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
include $(BUILD_HOST_STATIC_LIBRARY)
@@ -71,6 +73,8 @@ LOCAL_SHARED_LIBRARIES := \
libutils \
libz
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
LOCAL_C_INCLUDES += $(LOCAL_PATH)/include
LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code
include $(BUILD_SHARED_LIBRARY)

View File

@@ -3539,7 +3539,7 @@ ssize_t ResTable::Theme::getAttribute(uint32_t resID, Res_value* outValue,
}
if (pi != NULL) {
if (kDebugTableTheme) {
ALOGI("Desired type index is %zd in avail %zu", t, Res_MAXTYPE + 1);
ALOGI("Desired type index is %u in avail %zu", t, Res_MAXTYPE + 1);
}
if (t <= Res_MAXTYPE) {
const type_info& ti = pi->types[t];

View File

@@ -48,7 +48,7 @@ public:
static int32_t getGlobalCount();
static String8 getAssetAllocations();
/* used when opening an asset */
typedef enum AccessMode {
ACCESS_UNKNOWN = 0,
@@ -210,7 +210,7 @@ private:
AccessMode mAccessMode; // how the asset was opened
String8 mAssetSource; // debug string
Asset* mNext; // linked list.
Asset* mPrev;
};
@@ -273,7 +273,7 @@ private:
FileMap* mMap; // for memory map
unsigned char* mBuf; // for read
const void* ensureAlignment(FileMap* map);
};
@@ -310,7 +310,7 @@ public:
virtual const void* getBuffer(bool wordAligned);
virtual off64_t getLength(void) const { return mUncompressedLen; }
virtual off64_t getRemainingLength(void) const { return mUncompressedLen-mOffset; }
virtual int openFileDescriptor(off64_t* outStart, off64_t* outLength) const { return -1; }
virtual int openFileDescriptor(off64_t* /* outStart */, off64_t* /* outLength */) const { return -1; }
virtual bool isAllocated(void) const { return mBuf != NULL; }
private:

View File

@@ -33,17 +33,8 @@
/*
* Native-app access is via the opaque typedef struct AAssetManager in the C namespace.
*/
#ifdef __cplusplus
extern "C" {
#endif
struct AAssetManager { };
#ifdef __cplusplus
};
#endif
/*
* Now the proper C++ android-namespace definitions
*/
@@ -93,8 +84,8 @@ public:
virtual ~AssetManager(void);
static int32_t getGlobalCount();
/*
/*
* Add a new source for assets. This can be called multiple times to
* look in multiple places for assets. It can be either a directory (for
* finding assets as raw files on the disk) or a ZIP file. This newly
@@ -209,7 +200,7 @@ public:
*/
FileType getFileType(const char* fileName);
/*
/*
* Return the complete resource table to find things in the package.
*/
const ResTable& getResources(bool required = true) const;
@@ -308,12 +299,12 @@ private:
ResTable* getResourceTable();
ResTable* setResourceTable(ResTable* res);
bool isUpToDate();
void addOverlay(const asset_path& ap);
bool getOverlay(size_t idx, asset_path* out) const;
protected:
~SharedZip();
@@ -365,7 +356,7 @@ private:
void addOverlay(const String8& path, const asset_path& overlay);
bool getOverlay(const String8& path, size_t idx, asset_path* out) const;
private:
void closeZip(int idx);

View File

@@ -124,20 +124,13 @@ private:
/* Flags for this OBB type. */
int32_t mFlags;
/* Whether the file is salted. */
bool mSalted;
/* The encryption salt. */
unsigned char mSalt[8];
const char* mFileName;
size_t mFileSize;
size_t mFooterStart;
unsigned char* mReadBuf;
bool parseObbFile(int fd);
};

View File

@@ -30,6 +30,7 @@ struct TypeVariant {
iterator& operator=(const iterator& rhs) {
mTypeVariant = rhs.mTypeVariant;
mIndex = rhs.mIndex;
return *this;
}
bool operator==(const iterator& rhs) const {

View File

@@ -24,7 +24,8 @@ LOCAL_SHARED_LIBRARIES += \
libprotobuf-cpp-lite \
libharfbuzz_ng \
libft2 \
libminikin
libminikin \
libandroidfw
ifneq (false,$(ANDROID_ENABLE_RENDERSCRIPT))
LOCAL_SHARED_LIBRARIES += libRS libRScpp

View File

@@ -46,7 +46,8 @@ LOCAL_SHARED_LIBRARIES := \
libusbhost \
libexif \
libpiex \
libstagefright_amrnb_common
libstagefright_amrnb_common \
libandroidfw
LOCAL_STATIC_LIBRARIES := \
libstagefright_amrnbenc

View File

@@ -20,7 +20,8 @@ LOCAL_SRC_FILES:= \
LOCAL_SHARED_LIBRARIES := \
libandroid_runtime \
libskia
libskia \
libandroidfw
LOCAL_C_INCLUDES += \
frameworks/base/native/include \

View File

@@ -73,7 +73,7 @@ LOCAL_MODULE := libsplit-select
LOCAL_MODULE_HOST_OS := darwin linux windows
LOCAL_SRC_FILES := $(sources)
LOCAL_STATIC_LIBRARIES := $(hostStaticLibs)
LOCAL_C_INCLUDES := $(cIncludes)
LOCAL_CFLAGS := $(cFlags) -D_DARWIN_UNLIMITED_STREAMS