HomeSort by relevance Sort by last modified time
    Searched refs:EndOfCentralDir (Results 1 - 6 of 6) sorted by null

  /build/make/tools/ziptime/
ZipFile.h 50 class EndOfCentralDir {
52 EndOfCentralDir(void) : mTotalNumEntries(0), mCentralDirOffset(0) {}
61 kEOCDLen = 22, // EndOfCentralDir len, excl. comment
64 kMaxEOCDSearch = kMaxCommentLen + EndOfCentralDir::kEOCDLen,
79 EndOfCentralDir mEOCD;
ZipFile.cpp 86 if (fileLength < EndOfCentralDir::kEOCDLen) {
92 buf = new uint8_t[EndOfCentralDir::kMaxEOCDSearch];
95 EndOfCentralDir::kMaxEOCDSearch);
100 if (fileLength > EndOfCentralDir::kMaxEOCDSearch) {
101 seekStart = fileLength - EndOfCentralDir::kMaxEOCDSearch;
102 readAmount = EndOfCentralDir::kMaxEOCDSearch;
123 ZipEntry::getLongLE(&buf[i]) == EndOfCentralDir::kSignature)
189 if (ZipEntry::getLongLE(checkBuf) != EndOfCentralDir::kSignature) {
202 * ZipFile::EndOfCentralDir
212 status_t ZipFile::EndOfCentralDir::readBuf(const uint8_t* buf, int len
    [all...]
  /build/make/tools/zipalign/
ZipFile.h 166 class EndOfCentralDir {
168 EndOfCentralDir(void) :
178 virtual ~EndOfCentralDir(void) {
197 kEOCDLen = 22, // EndOfCentralDir len, excl. comment
200 kMaxEOCDSearch = kMaxCommentLen + EndOfCentralDir::kEOCDLen,
245 EndOfCentralDir mEOCD;
ZipFile.cpp 114 * Newly-created. The EndOfCentralDir constructor actually
219 if (fileLength < EndOfCentralDir::kEOCDLen) {
225 buf = new uint8_t[EndOfCentralDir::kMaxEOCDSearch];
228 EndOfCentralDir::kMaxEOCDSearch);
233 if (fileLength > EndOfCentralDir::kMaxEOCDSearch) {
234 seekStart = fileLength - EndOfCentralDir::kMaxEOCDSearch;
235 readAmount = EndOfCentralDir::kMaxEOCDSearch;
256 ZipEntry::getLongLE(&buf[i]) == EndOfCentralDir::kSignature)
334 if (ZipEntry::getLongLE(checkBuf) != EndOfCentralDir::kSignature) {
    [all...]
  /frameworks/base/tools/aapt/
ZipFile.h 172 class EndOfCentralDir {
174 EndOfCentralDir(void) :
184 virtual ~EndOfCentralDir(void) {
203 kEOCDLen = 22, // EndOfCentralDir len, excl. comment
206 kMaxEOCDSearch = kMaxCommentLen + EndOfCentralDir::kEOCDLen,
252 EndOfCentralDir mEOCD;
ZipFile.cpp 112 * Newly-created. The EndOfCentralDir constructor actually
217 if (fileLength < EndOfCentralDir::kEOCDLen) {
223 buf = new unsigned char[EndOfCentralDir::kMaxEOCDSearch];
226 EndOfCentralDir::kMaxEOCDSearch);
231 if (fileLength > EndOfCentralDir::kMaxEOCDSearch) {
232 seekStart = fileLength - EndOfCentralDir::kMaxEOCDSearch;
233 readAmount = EndOfCentralDir::kMaxEOCDSearch;
254 ZipEntry::getLongLE(&buf[i]) == EndOfCentralDir::kSignature)
332 if (ZipEntry::getLongLE(checkBuf) != EndOfCentralDir::kSignature) {
    [all...]

Completed in 144 milliseconds