HomeSort by relevance Sort by last modified time
    Searched refs:sPool (Results 1 - 22 of 22) sorted by null

  /frameworks/base/core/java/com/android/internal/os/
SomeArgs.java 30 private static SomeArgs sPool;
57 SomeArgs args = sPool;
58 sPool = sPool.mNext;
76 mNext = sPool;
78 sPool = this;
  /frameworks/base/core/java/android/widget/
ExpandableListPosition.java 31 private static ArrayList<ExpandableListPosition> sPool =
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);
ExpandableListConnector.java     [all...]
ProgressBar.java 611 private static final SynchronizedPool<RefreshData> sPool =
619 RefreshData rd = sPool.acquire();
630 sPool.release(this);
    [all...]
RelativeLayout.java     [all...]
  /frameworks/base/core/java/android/webkit/
ByteArrayBuilder.java 34 private static final LinkedList<SoftReference<Chunk>> sPool =
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();
  /external/webkit/Source/WebKit/mac/Carbon/
CarbonUtils.m 38 static NSAutoreleasePool* sPool;
58 sPool = [[NSAutoreleasePool allocWithZone:NULL] init];
87 [sPool drain];
89 sPool = [[NSAutoreleasePool allocWithZone:NULL] init];
  /frameworks/base/core/java/android/view/
MagnificationSpec.java 30 private static final SynchronizedPool<MagnificationSpec> sPool =
63 MagnificationSpec spec = sPool.acquire();
69 sPool.release(this);
VelocityTracker.java 32 private static final SynchronizedPool<VelocityTracker> sPool =
58 VelocityTracker instance = sPool.acquire();
85 sPool.release(this);
GLES20RecordingCanvas.java 40 private static final SynchronizedPool<GLES20RecordingCanvas> sPool =
50 GLES20RecordingCanvas canvas = sPool.acquire();
61 sPool.release(this);
ViewGroup.java     [all...]
View.java     [all...]
  /frameworks/base/core/java/android/os/
Message.java 97 private static Message sPool;
108 if (sPool != null) {
109 Message m = sPool;
110 sPool = m.next;
253 next = sPool;
254 sPool = this;
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityRecord.java 75 private static AccessibilityRecord sPool;
727 if (sPool != null) {
728 AccessibilityRecord record = sPool;
729 sPool = sPool.mNext;
753 mNext = sPool;
754 sPool = this;
AccessibilityEvent.java     [all...]
AccessibilityNodeInfo.java 456 private static final SynchronizedPool<AccessibilityNodeInfo> sPool =
    [all...]
  /developers/samples/android/input/multitouch/BasicMultitouch/BasicMultitouch/src/main/java/com/example/android/input/multitouch/basicMultitouch/
TouchDisplayView.java 68 private static final SimplePool<TouchHistory> sPool =
72 TouchHistory data = sPool.acquire();
99 sPool.release(this);
  /frameworks/base/graphics/java/android/graphics/
Region.java 27 private static final SynchronizedPool<Region> sPool =
308 Region region = sPool.acquire();
332 sPool.release(this);
  /frameworks/base/services/java/com/android/server/accessibility/
AccessibilityInputFilter.java 377 private static final SimplePool<MotionEventHolder> sPool =
386 MotionEventHolder holder = sPool.acquire();
401 sPool.release(this);
ScreenMagnifier.java     [all...]
  /frameworks/base/services/java/com/android/server/wm/
DisplayMagnifier.java 666 private static final SimplePool<WindowStateInfo> sPool =
675 WindowStateInfo info = sPool.acquire();
688 sPool.release(this);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
RIL.java 86 private static RILRequest sPool = null;
108 if (sPool != null) {
109 rr = sPool;
110 sPool = rr.mNext;
146 mNext = sPool;
147 sPool = this;
    [all...]

Completed in 1061 milliseconds