Home
last modified time | relevance | path

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

/packages/apps/Gallery2/src/com/android/photos/data/
DSparseArrayBitmapPool.java50 Node nextInPool; field in SparseArrayBitmapPool.Node
102 n.prevInPool.nextInPool = n.nextInPool; in unlinkAndRecycleNode()
105 mPoolNodesHead = n.nextInPool; in unlinkAndRecycleNode()
107 if (n.nextInPool != null) { in unlinkAndRecycleNode()
109 n.nextInPool.prevInPool = n.prevInPool; in unlinkAndRecycleNode()
117 n.nextInPool = null; in unlinkAndRecycleNode()
183 newNode.nextInPool = mPoolNodesHead; in put()
195 if (newNode.nextInPool == null) { in put()
199 newNode.nextInPool.prevInPool = newNode; in put()