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

  /libcore/luni/src/main/java/java/util/zip/
ZipEntry.java 364 int gpbf = it.readShort() & 0xffff; local
366 if ((gpbf & ZipFile.GPBF_UNSUPPORTED_MASK) != 0) {
367 throw new ZipException("Invalid General Purpose Bit Flag: " + gpbf);
ZipFile.java 289 int gpbf = Short.reverseBytes(is.readShort()) & 0xffff;
290 if ((gpbf & ZipFile.GPBF_UNSUPPORTED_MASK) != 0) {
291 throw new ZipException("Invalid General Purpose Bit Flag: " + gpbf);
  /art/runtime/
zip_archive.cc 96 uint32_t gpbf = Le16ToHost(lfh_buf + ZipArchive::kLFHGPBFlags); local
97 if ((gpbf & ZipArchive::kGPFUnsupportedMask) != 0) {
98 LOG(WARNING) << "Invalid General Purpose Bit Flag: " << gpbf;
532 uint16_t gpbf = Le16ToHost(ptr + kCDEGPBFlags); local
533 if ((gpbf & kGPFUnsupportedMask) != 0) {
534 LOG(WARNING) << "Invalid General Purpose Bit Flag: " << gpbf;
  /dalvik/libdex/
ZipArchive.cpp 372 unsigned int gpbf = get2LE(ptr + kCDEGPBFlags); local
373 if ((gpbf & kGPFUnsupportedMask) != 0) {
374 ALOGW("Invalid General Purpose Bit Flag: %d", gpbf);
631 u4 gpbf = get2LE(lfhBuf + kLFHGPBFlags); local
632 if ((gpbf & kGPFUnsupportedMask) != 0) {
633 ALOGW("Invalid General Purpose Bit Flag: %d", gpbf);
  /frameworks/base/libs/androidfw/
ZipFileRO.cpp 378 unsigned int gpbf = get2LE(ptr + kCDEGPBFlags); local
379 if ((gpbf & kGPFUnsupportedMask) != 0) {
380 ALOGW("Invalid General Purpose Bit Flag: %d", gpbf);
626 unsigned int gpbf = get2LE(lfhBuf + kLFHGPBFlags); local
627 if ((gpbf & kGPFUnsupportedMask) != 0) {
628 ALOGW("Invalid General Purpose Bit Flag: %d", gpbf);

Completed in 97 milliseconds