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

  /libcore/dalvik/src/main/java/dalvik/system/profiler/
SamplingProfiler.java 44 * ThreadSet threadSet = SamplingProfiler.newArrayThreadSet(Thread.currentThread());
45 * SamplingProfiler profiler = new SamplingProfiler(12, threadSet);
89 * The {@code ThreadSet} that identifies which threads to sample.
91 private final ThreadSet threadSet;
147 * @param threadSet The thread set specifies which threads to
149 * should be sample with a ThreadSet such as provided by {@link
155 public SamplingProfiler(int depth, ThreadSet threadSet) {
    [all...]
  /external/vogar/src/vogar/android/
AndroidProfiler.java 39 Class<?> ThreadSet = Class.forName(packageName + ".SamplingProfiler$ThreadSet");
46 newThreadSet = SamplingProfiler.getConstructor(Integer.TYPE, ThreadSet);
62 Object threadSet;
64 threadSet = newThreadGroupThreadSet.invoke(null, t.getThreadGroup());
66 threadSet = newArrayThreadSet.invoke(null, (Object)thread);
68 this.profiler = newThreadSet.newInstance(depth, threadSet);
  /frameworks/base/core/java/com/android/internal/os/
SamplingProfilerIntegration.java 109 SamplingProfiler.ThreadSet threadSet = SamplingProfiler.newThreadGroupThreadSet(group);
110 samplingProfiler = new SamplingProfiler(samplingProfilerDepth, threadSet);
  /libcore/dalvik/src/test/java/dalvik/system/profiler/
SamplingProfilerTest.java 26 import dalvik.system.profiler.SamplingProfiler.ThreadSet;
52 ThreadSet threadSet = SamplingProfiler.newArrayThreadSet(Thread.currentThread());
53 SamplingProfiler profiler = new SamplingProfiler(12, threadSet);

Completed in 80 milliseconds