Searched defs:sPool (Results 1 - 18 of 18) sorted by last modified time

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DRIL.java79 private static RILRequest sPool = null; field in class:RILRequest
101 if (sPool != null) {
102 rr = sPool;
103 sPool = rr.mNext;
139 this.mNext = sPool;
140 sPool = this;
/frameworks/base/services/java/com/android/server/accessibility/
H A DScreenMagnifier.java778 private static MotionEventInfo sPool; field in class:ScreenMagnifier.MotionEventInfo
795 info = sPool;
796 sPool = info.mNext;
823 mNext = sPool;
824 sPool = this;
/frameworks/base/core/java/android/hardware/
H A DSystemSensorManager.java52 static SensorEventPool sPool; field in class:SystemSensorManager
205 sPool.returnToPool(t);
232 SensorEvent t = sPool.getFromPool();
276 sPool = new SensorEventPool( sFullSensorsList.size()*2 );
/frameworks/base/core/java/android/os/
H A DMessage.java97 private static Message sPool; field in class:Message
108 if (sPool != null) {
109 Message m = sPool;
110 sPool = m.next;
253 next = sPool;
254 sPool = this;
/frameworks/base/core/java/android/view/
H A DGLES20RecordingCanvas.java43 private static final Pool<GLES20RecordingCanvas> sPool = Pools.synchronizedPool( field in class:GLES20RecordingCanvas
66 GLES20RecordingCanvas canvas = sPool.acquire();
74 sPool.release(this);
H A DVelocityTracker.java35 private static final Pool<VelocityTracker> sPool = Pools.synchronizedPool( field in class:VelocityTracker
76 return sPool.acquire();
101 sPool.release(this);
H A DView.java17639 private static final Pool<InvalidateInfo> sPool = Pools.synchronizedPool( field in class:View.AttachInfo.InvalidateInfo
17673 return sPool.acquire();
17677 sPool.release(this);
H A DViewGroup.java6124 private static ChildListForAccessibility sPool; field in class:ViewGroup.ChildListForAccessibility
6139 if (sPool != null) {
6140 list = sPool;
6141 sPool = list.mNext;
6160 mNext = sPool;
6162 sPool = this;
6221 private static ViewLocationHolder sPool; field in class:ViewGroup.ViewLocationHolder
6238 if (sPool != null) {
6239 holder = sPool;
6240 sPool
[all...]
H A DWindowInfo.java36 private static WindowInfo sPool; field in class:WindowInfo
107 WindowInfo info = sPool;
108 sPool = info.mNext;
126 mNext = sPool;
127 sPool = this;
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityEvent.java690 private static AccessibilityEvent sPool; field in class:AccessibilityEvent
920 if (sPool != null) {
921 AccessibilityEvent event = sPool;
922 sPool = sPool.mNext;
948 mNext = sPool;
949 sPool = this;
H A DAccessibilityNodeInfo.java358 private static AccessibilityNodeInfo sPool; field in class:AccessibilityNodeInfo
1521 if (sPool != null) {
1522 AccessibilityNodeInfo info = sPool;
1523 sPool = sPool.mNext;
1561 mNext = sPool;
1562 sPool = this;
H A DAccessibilityRecord.java75 private static AccessibilityRecord sPool; field in class:AccessibilityRecord
727 if (sPool != null) {
728 AccessibilityRecord record = sPool;
729 sPool = sPool.mNext;
753 mNext = sPool;
754 sPool = this;
/frameworks/base/core/java/android/webkit/
H A DByteArrayBuilder.java34 private static final LinkedList<SoftReference<Chunk>> sPool = field in class:ByteArrayBuilder
100 // Must be called with lock held on sPool.
107 sPool.remove(entry);
116 synchronized (sPool) {
119 if (!sPool.isEmpty()) {
120 Chunk c = sPool.removeFirst().get();
145 synchronized (sPool) {
148 sPool.offer(new SoftReference<Chunk>(this, sQueue));
149 sPool.notifyAll();
/frameworks/base/core/java/android/widget/
H A DExpandableListConnector.java957 private static ArrayList<PositionMetadata> sPool = field in class:ExpandableListConnector.PositionMetadata
1005 synchronized (sPool) {
1006 if (sPool.size() > 0) {
1007 pm = sPool.remove(0);
1018 synchronized (sPool) {
1019 if (sPool.size() < MAX_POOL_SIZE) {
1020 sPool.add(this);
H A DExpandableListPosition.java31 private static ArrayList<ExpandableListPosition> sPool = field in class:ExpandableListPosition
117 synchronized (sPool) {
118 if (sPool.size() > 0) {
119 elp = sPool.remove(0);
133 synchronized (sPool) {
134 if (sPool.size() < MAX_POOL_SIZE) {
135 sPool.add(this);
H A DProgressBar.java616 private static final Pool<RefreshData> sPool = Pools.synchronizedPool( field in class:ProgressBar.RefreshData
633 RefreshData rd = sPool.acquire();
641 sPool.release(this);
H A DRelativeLayout.java1681 private static final Pool<Node> sPool = Pools.synchronizedPool( field in class:RelativeLayout.DependencyGraph.Node
1715 final Node node = sPool.acquire();
1726 sPool.release(this);
/frameworks/base/core/java/com/android/internal/os/
H A DSomeArgs.java30 private static SomeArgs sPool; field in class:SomeArgs
56 SomeArgs args = sPool;
57 sPool = sPool.mNext;
75 mNext = sPool;
77 sPool = this;

Completed in 227 milliseconds