Searched defs:IS_GZIPPED (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/os/
H A DDropBoxManager.java53 /** Flag value: Content is human-readable UTF-8 text (can be combined with IS_GZIPPED). */
57 public static final int IS_GZIPPED = 4; field in class:DropBoxManager
183 public int getFlags() { return mFlags & ~IS_GZIPPED; } // getInputStream() decompresses.
221 return (mFlags & IS_GZIPPED) != 0 ? new GZIPInputStream(is) : is;

Completed in 2064 milliseconds