HomeSort by relevance Sort by last modified time
    Searched defs:ThreadSet (Results 1 - 3 of 3) sorted by null

  /external/webkit/WebKitTools/DumpRenderTree/pthreads/
JavaScriptThreadingPthreads.cpp 45 typedef HashSet<pthread_t> ThreadSet;
47 static ThreadSet* javaScriptThreads()
50 static ThreadSet staticJavaScriptThreads;
  /packages/apps/Gallery3D/src/com/cooliris/media/
BitmapManager.java 36 * You can also cancel decoding for a set of threads using ThreadSet as the
37 * parameter for cancelThreadDecoding. To put a thread into a ThreadSet, use the
38 * add() method. A ThreadSet holds (weak) references to the threads, so you
67 public static class ThreadSet implements Iterable<Thread> {
119 public synchronized void allowThreadDecoding(ThreadSet threads) {
125 public synchronized void cancelThreadDecoding(ThreadSet threads) {
  /libcore/dalvik/src/main/java/dalvik/system/
SamplingProfiler.java 55 * ThreadSet threadSet = SamplingProfiler.newArrayThreadSet(Thread.currentThread());
56 * SamplingProfiler profiler = new SamplingProfiler(12, threadSet);
119 * The {@code ThreadSet} that identifies which threads to sample.
121 private final ThreadSet threadSet;
138 public SamplingProfiler(int depth, ThreadSet threadSet) {
140 this.threadSet = threadSet;
    [all...]

Completed in 3519 milliseconds