Home
last modified time | relevance | path

Searched refs:curSize (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/core/java/android/util/apk/
H A DReadFileDataSource.java63 for (long pos = start, curSize = Math.min(size, CHUNK_SIZE); in feedIntoDataDigester()
64 pos < end; curSize = Math.min(end - pos, CHUNK_SIZE)) { in feedIntoDataDigester()
65 final int readSize = Os.pread(mFd, buffer, 0, (int) curSize, pos); in feedIntoDataDigester()
/aosp14/frameworks/base/packages/LocalTransport/src/com/android/localtransport/
H A DLocalTransport.java303 final Integer curSize = datastore.get(op.key); in performBackupInternal() local
304 if (curSize != null) { in performBackupInternal()
305 updatedSize -= curSize.intValue(); in performBackupInternal()
315 Log.v(TAG, ((curSize == null) ? " new " : " replace ") in performBackupInternal()
/aosp14/frameworks/base/core/java/android/content/res/
H A DConfiguration.java474 int curSize = curLayout&SCREENLAYOUT_SIZE_MASK; in reduceScreenLayout() local
475 if (screenLayoutSize < curSize) { in reduceScreenLayout()
/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DDisplayContent.java2543 private int reduceCompatConfigWidthSize(int curSize, int rotation, in reduceCompatConfigWidthSize() argument
2551 if (curSize == 0 || size < curSize) { in reduceCompatConfigWidthSize()
2552 curSize = size; in reduceCompatConfigWidthSize()
2554 return curSize; in reduceCompatConfigWidthSize()