Lines Matching refs:blk
796 ImageBlock blk = mCache.get(row); in clearLoaderQueue() local
797 Assert(blk != null); // We won't reuse the block if it has pending in clearLoaderQueue()
799 blk.cancelRequest(col); in clearLoaderQueue()
836 ImageBlock blk = mCache.get(row); in tryToLoad() local
837 if (blk == null) { in tryToLoad()
839 blk = getEmptyBlock(); in tryToLoad()
840 blk.setRow(row); in tryToLoad()
841 blk.invalidate(); in tryToLoad()
842 mCache.put(row, blk); in tryToLoad()
844 return blk.loadImages(); in tryToLoad()
882 ImageBlock blk = mCache.get(row); in invalidateImage() local
883 if (blk == null) return; in invalidateImage()
884 if ((blk.mCompletedMask & (1 << col)) != 0) { in invalidateImage()
885 blk.mCompletedMask &= ~(1 << col); in invalidateImage()
892 for (ImageBlock blk : mCache.values()) { in recycle()
893 blk.recycle(); in recycle()
915 ImageBlock blk = mCache.get(currentBlock); in doDraw() local
916 if (blk != null) { in doDraw()
917 blk.doDraw(canvas, 0, yPos); in doDraw()