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

  /packages/apps/Settings/src/com/android/settings/bluetooth/
Utf8ByteLengthFilter.java 41 private final int mMaxBytes;
44 mMaxBytes = maxBytes;
64 int keepBytes = mMaxBytes - destByteCount;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
BlobCache.java 113 private int mMaxBytes;
213 mMaxBytes = readInt(buf, IH_MAX_BYTES);
229 if (mMaxBytes <= 0) {
241 if (mActiveBytes < DATA_HEADER_SIZE || mActiveBytes > mMaxBytes) {
363 if (DATA_HEADER_SIZE + BLOB_HEADER_SIZE + data.length > mMaxBytes) {
367 if (mActiveBytes + BLOB_HEADER_SIZE + data.length > mMaxBytes
460 if (mActiveBytes + BLOB_HEADER_SIZE + req.length > mMaxBytes
513 if (length < 0 || length > mMaxBytes - offset - BLOB_HEADER_SIZE) {
  /packages/apps/Mms/src/com/android/mms/util/
BlobCache.java 114 private int mMaxBytes;
214 mMaxBytes = readInt(buf, IH_MAX_BYTES);
230 if (mMaxBytes <= 0) {
242 if (mActiveBytes < DATA_HEADER_SIZE || mActiveBytes > mMaxBytes) {
364 if (DATA_HEADER_SIZE + BLOB_HEADER_SIZE + data.length > mMaxBytes) {
368 if (mActiveBytes + BLOB_HEADER_SIZE + data.length > mMaxBytes
451 if (mActiveBytes + BLOB_HEADER_SIZE + req.length > mMaxBytes
501 if (length < 0 || length > mMaxBytes - offset - BLOB_HEADER_SIZE) {
  /packages/apps/SoundRecorder/src/com/android/soundrecorder/
SoundRecorder.java 74 private long mMaxBytes;
104 mMaxBytes = maxBytes;
148 // based on how long it will take us to reach mMaxBytes.
157 long result2 = (mMaxBytes - fileSize)/mBytesPerSecond;

Completed in 134 milliseconds