Home
last modified time | relevance | path

Searched refs:mSlotsOffset (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/base/libs/androidfw/
H A DCursorWindow.cpp111 uint32_t slotsSize = mSize - mSlotsOffset; in maybeInflate()
122 mSlotsOffset = newSlotsOffset; in maybeInflate()
221 size_t slotsSize = mSize - mSlotsOffset; in writeToParcel()
246 mSlotsOffset = mSize; in clear()
293 int32_t newOffset = mSlotsOffset - size; in allocRow()
296 newOffset = mSlotsOffset - size; in allocRow()
302 mSlotsOffset = newOffset; in allocRow()
313 size_t newOffset = mSlotsOffset + size; in freeLastRow()
317 mSlotsOffset = newOffset; in freeLastRow()
329 if (newOffset > mSlotsOffset) { in alloc()
[all …]
/aosp12/frameworks/base/libs/androidfw/include/androidfw/
H A DCursorWindow.h89 inline size_t freeSpace() { return mSlotsOffset - mAllocOffset; } in freeSpace()
142 mAshmemFd, mSize, mInflatedSize, mAllocOffset, mSlotsOffset, mNumRows, mNumColumns); in toString()
170 uint32_t mSlotsOffset = 0; variable