History log of /frameworks/base/libs/utils/StreamingZipInflater.cpp
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
431bb2269532f2514861b908d5fafda8fa64da79 19-Oct-2010 Joe Onorato <joeo@google.com> Reduce logging.

Remember, the system and main logs are
- Shared resources
- Primarily for recording problems
- To be used only for large grained events during normal operation

Bug: 3104855
Change-Id: I136fbd101917dcbc8ebc3f96f276426b48bde7b7
/frameworks/base/libs/utils/StreamingZipInflater.cpp
466b22b76e438b3419cedbe782ab71b8ade18260 29-Jul-2010 Christopher Tate <ctate@google.com> Attempt to fix the SDK build

On the assumption that the local min() function declaration is in
conflict with some 'min' #define floating around, rename the local
function to min_of().

Change-Id: I62aa27f213c6093cc78805de611cf4aa75f0eef2
/frameworks/base/libs/utils/StreamingZipInflater.cpp
a4879bad704981da014206380eca93163f4c5a2b 29-Jul-2010 Kenny Root <kroot@google.com> Change unistd.h to stddef.h to be correct

size_t should be defined through inclusion of stddef.h instead of unistd.h

Change-Id: Ieaadacfca1e1c44c2533ea95f73fc060c1519b52
/frameworks/base/libs/utils/StreamingZipInflater.cpp
9d90ed71ccf45bc1e422ee2abc9acf0a806b9319 29-Jul-2010 Kenny Root <kroot@google.com> Add unistd.h for size_t typedef to fix sim-eng

Change-Id: Ida4f1742547f39539b601f13182c722aa7cf863e
/frameworks/base/libs/utils/StreamingZipInflater.cpp
b100cbf178e91d6652ebbad3ed36684cacb9d10e 26-Jul-2010 Christopher Tate <ctate@google.com> Support streaming of compressed assets > 1 megabyte

Compressed assets larger than one megabyte are now decompressed on demand
rather than being decompressed in their entirety and held in memory. Reading
the data in order is relatively efficient, as is seeking forward in the stream.
Seeking backwards is supported, but requires reprocessing the compressed data
from the beginning, so is very inefficient.

In addition, the size limit on compressed assets has been eliminated.

Change-Id: I6e68247957e6c53e7e8ba70d12764695f1723bad
/frameworks/base/libs/utils/StreamingZipInflater.cpp