/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...] |
/frameworks/base/core/java/com/android/internal/os/ |
Zygote.java | 20 import android.os.Trace; 98 Trace.setTracingEnabled(true); 101 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "PostFork"); 141 Trace.setTracingEnabled(true);
|
/frameworks/base/graphics/java/android/graphics/ |
BitmapFactory.java | 21 import android.os.Trace; 520 Trace.traceBegin(Trace.TRACE_TAG_GRAPHICS, "decodeBitmap"); 529 Trace.traceEnd(Trace.TRACE_TAG_GRAPHICS); 605 Trace.traceBegin(Trace.TRACE_TAG_GRAPHICS, "decodeBitmap"); 620 Trace.traceEnd(Trace.TRACE_TAG_GRAPHICS); 669 Trace.traceBegin(Trace.TRACE_TAG_GRAPHICS, "decodeFileDescriptor") [all...] |
/frameworks/opt/bitmap/src/com/android/bitmap/ |
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...] |
DecodeTask.java | 32 import com.android.bitmap.util.Trace; 126 Trace.beginSection("create fd"); 128 Trace.endSection(); 143 Trace.beginSection("poll for reusable bitmap"); 145 Trace.endSection(); 152 Trace.beginSection("get bytesize"); 159 Trace.endSection(); 161 Trace.beginSection("get orientation"); 167 Trace.beginSection("create orientation fd and stream"); 170 Trace.endSection() [all...] |
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...] |
UnrefedBitmapCache.java | 23 import com.android.bitmap.util.Trace; 91 Trace.beginSection("sleep"); 101 Trace.endSection();
|
/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...] |
/art/runtime/ |
trace.cc | 17 #include "trace.h" 23 #include "cutils/trace.h" 58 method_trace_(Trace::AllocStackTrace()) {} 69 // Returns a stack trace where the topmost frame corresponds with the first element of the vector. 86 TraceClockSource Trace::default_clock_source_ = kDefaultTraceClockSource; 88 Trace* volatile Trace::the_trace_ = nullptr; 89 pthread_t Trace::sampling_pthread_ = 0U; 90 std::unique_ptr<std::vector<ArtMethod*>> Trace::temp_stack_trace_; 99 ArtMethod* Trace::DecodeTraceMethod(uint32_t tmid) [all...] |
/external/linux-tools-perf/src/tools/perf/scripts/perl/ |
check-perf-trace.pl | 10 use lib "$ENV{'PERF_EXEC_PATH'}/scripts/perl/Perf-Trace-Util/lib"; 11 use lib "./Perf-Trace-Util/lib"; 12 use Perf::Trace::Core; 13 use Perf::Trace::Context; 14 use Perf::Trace::Util; 62 # print trace fields not included in handler args
|
/packages/apps/Messaging/src/com/android/messaging/util/ |
Trace.java | 34 public final class Trace { 43 // Static initializer to pick the correct trace class to handle tracing. 56 * Writes a trace message to indicate that a given section of code has begun. This call must 61 * these characters they will be replaced with a space character in the trace. 63 * @param sectionName The name of the code section to appear in the trace. This may be at 74 * Writes a trace message to indicate that a given section of code has ended. This call must 94 android.os.Trace.beginSection(sectionName); 99 android.os.Trace.endSection();
|
/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...] |
/frameworks/base/core/java/android/webkit/ |
WebViewFactory.java | 33 import android.os.Trace; 156 Trace.traceBegin(Trace.TRACE_TAG_WEBVIEW, "WebViewFactory.getProvider()"); 161 Trace.traceBegin(Trace.TRACE_TAG_WEBVIEW, "providerClass.newInstance()"); 171 Trace.traceEnd(Trace.TRACE_TAG_WEBVIEW); 175 Trace.traceEnd(Trace.TRACE_TAG_WEBVIEW); 187 Trace.traceBegin(Trace.TRACE_TAG_WEBVIEW, "WebViewFactory.loadNativeLibrary()") [all...] |
WebViewDelegate.java | 26 import android.os.Trace; 64 * Returns true if the WebView trace tag is enabled and false otherwise. 67 return Trace.isTagEnabled(Trace.TRACE_TAG_WEBVIEW);
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/activity/ |
RequestPermissionsActivityBase.java | 27 import android.os.Trace; 126 Trace.beginSection("requestPermissions"); 144 Trace.endSection(); 149 Trace.beginSection("hasPermission"); 159 Trace.endSection();
|
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/ |
BasicBitmapDrawable.java | 39 import com.android.bitmap.util.Trace; 175 Trace.beginSection("bind"); 177 Trace.endSection(); 181 Trace.endSection(); 205 Trace.beginSection("unbind"); 210 Trace.endSection(); 217 Trace.beginSection("set image"); 218 Trace.beginSection("release reference"); 223 Trace.endSection(); 239 Trace.endSection() [all...] |
/packages/apps/Dialer/src/com/android/dialer/list/ |
ListsFragment.java | 11 import android.os.Trace; 164 Trace.beginSection(TAG + " onCreate"); 167 Trace.beginSection(TAG + " getCurrentCountryIso"); 169 Trace.endSection(); 178 Trace.endSection(); 183 Trace.beginSection(TAG + " onResume"); 194 Trace.endSection(); 200 Trace.beginSection(TAG + " onCreateView"); 201 Trace.beginSection(TAG + " inflate view"); 203 Trace.endSection() [all...] |
/external/linux-tools-perf/src/tools/perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/ |
Context.pm | 1 package Perf::Trace::Context; 23 XSLoader::load('Perf::Trace::Context', $VERSION); 29 Perf::Trace::Context - Perl extension for accessing functions in perf. 33 use Perf::Trace::Context;
|
Util.pm | 1 package Perf::Trace::Util; 68 Perf::Trace::Util - Perl extension for perf script 72 use Perf::Trace::Util;
|
/external/valgrind/gdbserver_tests/ |
nlcontrolc.stdoutB.exp | 2 Program received signal SIGTRAP, Trace/breakpoint trap. 17 Program received signal SIGTRAP, Trace/breakpoint trap.
|
/frameworks/base/libs/hwui/thread/ |
Task.h | 21 #include <utils/Trace.h>
|
/frameworks/base/libs/hwui/utils/ |
TraceUtils.h | 19 #include <utils/Trace.h>
|
/external/libpng/contrib/gregbook/ |
readpng2.h | 67 # define Trace(x) {fprintf x ; fflush(stderr); fflush(stdout);} 69 # define Trace(x) ;
|
writepng.h | 67 # define Trace(x) {fprintf x ; fflush(stderr); fflush(stdout);} 69 # define Trace(x) ;
|