HomeSort by relevance Sort by last modified time
    Searched defs:Trace (Results 26 - 50 of 143) sorted by null

12 3 4 5 6

  /external/zlib/src/
zutil.h 224 # define Trace(x) {if (z_verbose>=0) fprintf x ;}
231 # define Trace(x)
  /frameworks/base/core/java/com/android/internal/os/
Zygote.java 20 import android.os.Trace;
100 Trace.setTracingEnabled(true);
103 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "PostFork");
143 Trace.setTracingEnabled(true);
  /frameworks/base/services/core/java/com/android/server/
SystemServiceManager.java 20 import android.os.Trace;
82 Trace.traceBegin(Trace.TRACE_TAG_SYSTEM_SERVER, "StartService " + name);
119 Trace.traceEnd(Trace.TRACE_TAG_SYSTEM_SERVER);
137 Trace.traceBegin(Trace.TRACE_TAG_SYSTEM_SERVER, "OnBootPhase " + phase);
151 Trace.traceEnd(Trace.TRACE_TAG_SYSTEM_SERVER);
  /frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
CompareActivity.java 30 import android.os.Trace;
78 Trace.traceBegin(Trace.TRACE_TAG_ALWAYS, "loadBitmaps");
87 Trace.traceBegin(Trace.TRACE_TAG_ALWAYS, "softwareDraw");
89 Trace.traceEnd(Trace.TRACE_TAG_ALWAYS);
105 Trace.traceBegin(Trace.TRACE_TAG_ALWAYS, "copyInto");
107 Trace.traceEnd(Trace.TRACE_TAG_ALWAYS)
    [all...]
  /frameworks/opt/bitmap/src/com/android/bitmap/
UnrefedBitmapCache.java 23 import com.android.bitmap.util.Trace;
91 Trace.beginSection("sleep");
101 Trace.endSection();
ContiguousFIFOAggregator.java 22 import com.android.bitmap.util.Trace;
99 Trace.beginSection("pool expect");
115 Trace.endSection();
135 Trace.beginSection("pool forget");
150 Trace.endSection();
166 Trace.beginSection("pool execute");
173 Trace.endSection();
181 Trace.endSection();
194 Trace.beginSection("pool maybeExecuteNow loop");
204 Trace.endSection()
    [all...]
UnrefedPooledCache.java 22 import com.android.bitmap.util.Trace;
73 Trace.beginSection("cache get");
82 Trace.endSection();
89 Trace.beginSection("cache put");
92 Trace.endSection();
104 Trace.endSection();
111 Trace.beginSection("pool offer");
113 Trace.endSection();
117 Trace.endSection();
122 Trace.beginSection("pool poll")
    [all...]
  /frameworks/opt/bitmap/src/com/android/bitmap/util/
InputStreamBuffer.java 130 Trace.beginSection("get");
133 Trace.endSection();
136 Trace.endSection();
160 Trace.beginSection("has");
162 Trace.endSection();
171 Trace.endSection();
175 Trace.endSection();
188 Trace.beginSection("advance to");
192 Trace.endSection();
238 Trace.endSection()
    [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
InputStreamBuffer.java 130 Trace.beginSection("get");
133 Trace.endSection();
136 Trace.endSection();
160 Trace.beginSection("has");
162 Trace.endSection();
171 Trace.endSection();
175 Trace.endSection();
188 Trace.beginSection("advance to");
192 Trace.endSection();
238 Trace.endSection()
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/activity/
RequestPermissionsActivityBase.java 27 import android.os.Trace;
119 Trace.beginSection("requestPermissions");
138 Trace.endSection();
148 Trace.beginSection("hasPermission");
158 Trace.endSection();
  /packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/
ConversationListActivity.java 28 import com.android.messaging.util.Trace;
33 Trace.beginSection("ConversationListActivity.onCreate");
36 Trace.endSection();
  /art/test/044-proxy/src/
BasicTest.java 54 Trace trace = (Trace) proxy; local
55 trace.getTrace();
103 new Class[] { Quads.class, Colors.class, Trace.class });
164 interface Trace {
261 if (method.getDeclaringClass() == Trace.class) {
276 if (method.getDeclaringClass() == Trace.class) {
  /external/libchrome/sandbox/linux/bpf_dsl/
bpf_dsl.cc 258 ResultExpr Trace(uint16_t aux) {
  /external/libpng/contrib/gregbook/
writepng.h 67 # define Trace(x) {fprintf x ; fflush(stderr); fflush(stdout);}
69 # define Trace(x) ;
  /external/llvm/include/llvm/CodeGen/
MachineTraceMetrics.h 18 // by looking at a trace through the current basic block.
20 // For every block, the MachineTraceMetrics pass will pick a preferred trace
21 // that passes through the block. The trace is chosen based on loop structure,
25 // It is expensive to compute a full arbitrary trace for every block, so to
31 // Traces tend to align with loops. The trace through a block in an inner loop
33 // nested loops, the trace may begin and end at those instead.
35 // For each trace, we compute the critical path length, which is the number of
36 // cycles required to execute the trace when execution is limited by data
38 // of cycles required to execute all instructions in the trace when ignoring
77 class Trace;
    [all...]
  /external/llvm/lib/Target/Hexagon/
BitTracker.h 45 void trace(bool On = false) { Trace = On; } function in struct:llvm::BitTracker
68 bool Trace; // Enable tracing for debugging.
  /frameworks/base/core/java/android/content/
AbstractThreadedSyncAdapter.java 24 import android.os.Trace;
259 // Trace this sync instance. Note, conceptually this should be in
260 // SyncStorageEngine.insertStartSyncEvent(), but the trace functions require unique
262 Trace.traceBegin(Trace.TRACE_TAG_SYNC_MANAGER, mAuthority);
282 Trace.traceEnd(Trace.TRACE_TAG_SYNC_MANAGER);
  /frameworks/base/core/java/android/os/
Looper.java 151 Trace.traceBegin(traceTag, msg.target.getTraceName(msg));
157 Trace.traceEnd(traceTag);
Trace.java 20 * Writes trace events to the system trace buffer. These trace events can be
30 public final class Trace {
32 * Writes trace events to the kernel trace buffer. These trace events can be
36 private static final String TAG = "Trace";
38 // These tags must be kept in sync with system/core/include/cutils/trace.h.
101 // We configure two separate change callbacks, one in Trace.cpp and one here. Th
    [all...]
  /frameworks/base/graphics/java/android/graphics/
BitmapFactory.java 21 import android.os.Trace;
531 Trace.traceBegin(Trace.TRACE_TAG_GRAPHICS, "decodeBitmap");
540 Trace.traceEnd(Trace.TRACE_TAG_GRAPHICS);
616 Trace.traceBegin(Trace.TRACE_TAG_GRAPHICS, "decodeBitmap");
631 Trace.traceEnd(Trace.TRACE_TAG_GRAPHICS);
680 Trace.traceBegin(Trace.TRACE_TAG_GRAPHICS, "decodeFileDescriptor")
    [all...]
  /frameworks/base/services/core/java/com/android/server/lights/
LightsService.java 27 import android.os.Trace;
133 Trace.traceBegin(Trace.TRACE_TAG_POWER, "setLight(" + mId + ", 0x"
138 Trace.traceEnd(Trace.TRACE_TAG_POWER);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
MaterialColorMapUtils.java 25 import android.os.Trace;
110 Trace.beginSection("calculatePrimaryAndSecondaryColor");
128 Trace.endSection();
  /packages/apps/UnifiedEmail/src/com/android/mail/
SenderInfoLoader.java 36 import com.android.bitmap.util.Trace;
118 Trace.beginSection("load contact photos util");
121 Trace.beginSection("build first query");
135 Trace.endSection();
142 Trace.beginSection("query 1");
145 Trace.endSection();
148 Trace.endSection();
152 Trace.beginSection("get photo id");
169 Trace.endSection();
181 Trace.endSection()
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
ContactResolver.java 29 import com.android.ex.photo.util.Trace;
95 Trace.beginSection("ContactResolver run");
107 Trace.endSection();
176 Trace.beginSection("set up");
182 Trace.endSection();
184 Trace.beginSection("load contact photo bytes");
187 Trace.endSection();
190 Trace.beginSection("decode");
196 Trace.endSection();
204 Trace.endSection()
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
CallIntentProcessor.java 9 import android.os.Trace;
80 Trace.beginSection("processNewCallCallIntent");
86 Trace.endSection();

Completed in 2661 milliseconds

12 3 4 5 6