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

1 2 3 4 5 6

  /external/javasqlite/src/main/java/SQLite/
Trace.java 4 * Callback interface for SQLite's trace function.
7 public interface Trace {
10 * Callback to trace (ie log) one SQL statement.
15 public void trace(String stmt); method in interface:Trace
  /external/chromium-trace/catapult/firefighter/default/handlers/
trace.py 13 class Trace(webapp2.RequestHandler):
34 template = jinja.ENVIRONMENT.get_template('trace.html')
  /frameworks/opt/bitmap/src/com/android/bitmap/util/
Trace.java 22 * Stand-in for {@link android.os.Trace}.
24 public abstract class Trace {
31 * @see android.os.Trace#beginSection(String)
35 android.os.Trace.beginSection(tag);
43 * @see android.os.Trace#endSection()
47 android.os.Trace.endSection();
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
Trace.java 22 * Stand-in for {@link android.os.Trace}.
24 public abstract class Trace {
31 * @see android.os.Trace#beginSection(String)
35 android.os.Trace.beginSection(tag);
43 * @see android.os.Trace#endSection()
47 android.os.Trace.endSection();
  /cts/hostsidetests/atrace/AtraceTestApp/src/com/android/cts/atracetestapp/
AtraceTestAppActivity.java 20 import android.os.Trace;
25 Trace.beginSection("traceable-app-test-section");
27 Trace.endSection();
  /external/libpng/contrib/gregbook/
readpng.h 67 # define Trace(x) {fprintf x ; fflush(stderr); fflush(stdout);}
69 # define Trace(x) ;
readpng2.h 67 # define Trace(x) {fprintf x ; fflush(stderr); fflush(stdout);}
69 # define Trace(x) ;
  /external/webrtc/webrtc/system_wrappers/include/
trace.h 11 * Note: All log messages will be written to the same trace file.
25 // Disable all TRACE macros. The LOG macro is still functional.
26 #define WEBRTC_TRACE true ? (void) 0 : Trace::Add
28 #define WEBRTC_TRACE Trace::Add
31 class Trace {
33 // The length of the trace text preceeding the log message.
35 // The position of the timestamp text within a trace.
40 // Increments the reference count to the trace.
42 // Decrements the reference count to the trace.
44 // Note: any instance that writes to the trace file should increment an
    [all...]
  /frameworks/support/v17/leanback/jbmr2/android/support/v17/leanback/os/
TraceHelperJbmr2.java 18 import android.os.Trace;
23 Trace.beginSection(section);
27 Trace.endSection();
  /frameworks/support/v4/jellybean-mr2/android/support/v4/os/
TraceJellybeanMR2.java 16 import android.os.Trace;
20 Trace.beginSection(section);
24 Trace.endSection();
  /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();
  /frameworks/base/core/java/com/android/internal/os/
PathClassLoaderFactory.java 19 import android.os.Trace;
45 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "createClassloaderNamespace");
51 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
  /packages/apps/Dialer/src/com/android/dialer/
DialerApplication.java 21 import android.os.Trace;
39 Trace.beginSection(TAG + " onCreate");
41 Trace.beginSection(TAG + " ExtensionsFactory initialization");
43 Trace.endSection();
46 Trace.endSection();
  /frameworks/base/core/java/android/app/
ApplicationLoaders.java 19 import android.os.Trace;
56 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, zip);
66 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
68 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "setupVulkanLayerPath");
70 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
76 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, zip)
    [all...]
  /external/blktrace/doc/
blktrace.tex 81 As an example, bt/kernel contains blk-trace-2.6.14-rc1-git-G2, download
139 trace, hit control-C):
193 By default, \emph{btrace} runs the trace in quiet mode so it will not
227 go run you test cases. Stop the trace, and at your leisure utilize
375 a running trace -- via the \emph{-k} option.
389 -d \emph{dev} & --dev=\emph{dev} & Adds \emph{dev} as a device to trace \\ \hline
390 -k & --kill & Kill on-going trace \\ \hline
396 -I \emph{devs file}& --input-devs=\emph{devs file}& Adds devices found in \emph{devs file} to list of devices to trace. \\
416 notify & \emph{notify} trace messages \\ \hline
441 -- one where the trace events have been saved by a previous ru
    [all...]
  /external/clang/tools/libclang/
CLog.h 43 bool Trace;
58 bool trace = isStackTracingEnabled()) {
60 return new Logger(name, trace);
64 explicit Logger(llvm::StringRef name, bool trace)
65 : Name(name), Trace(trace), LogOS(Msg) { }
  /external/compiler-rt/lib/tsan/rtl/
tsan_trace.h 46 BufferedStackTrace stack0; // Start stack for the trace.
50 u64 epoch0; // Start epoch for the trace.
56 struct Trace {
67 Trace()
  /external/llvm/include/llvm/Analysis/
Trace.h 1 //===- llvm/Analysis/Trace.h - Represent one trace of LLVM code -*- C++ -*-===//
10 // This class represents a single trace of LLVM basic blocks. A trace is a
11 // single entry, multiple exit, region of code that is often hot. Trace-based
13 // block: because the trace path is assumed to be hot, optimizations for the
30 class Trace {
35 /// Trace ctor - Make a new trace from a vector of basic blocks,
39 Trace(const std::vector<BasicBlock *> &vBB) : BasicBlocks (vBB) {
    [all...]
  /external/mesa3d/src/gallium/tools/trace/
model.py 30 '''Trace data model.'''
115 class Trace:
  /external/v8/test/cctest/
trace-extension.cc 28 #include "test/cctest/trace-extension.h"
38 "native function trace();"
47 if (name->Equals(context, v8::String::NewFromUtf8(isolate, "trace",
51 return v8::FunctionTemplate::New(isolate, TraceExtension::Trace);
89 printf("Trace: %p\n", fp);
115 void TraceExtension::Trace(const v8::FunctionCallbackInfo<v8::Value>& args) {
119 reinterpret_cast<intptr_t>(&TraceExtension::Trace));
  /frameworks/volley/src/test/java/com/android/volley/mock/
TestRequest.java 151 /** Test example of a TRACE request in the new style. */
152 public static class Trace extends Base {
153 public Trace() {
154 super(Method.TRACE, TEST_URL, null);
  /external/freetype/src/gzip/
zutil.h 190 # define Trace(x) {if (z_verbose>=0) fprintf x ;}
197 # define Trace(x)
  /external/opencv3/3rdparty/zlib/
zutil.h 224 # define Trace(x) {if (z_verbose>=0) fprintf x ;}
231 # define Trace(x)
  /external/pdfium/third_party/zlib_v128/
zutil.h 226 # define Trace(x) {if (z_verbose>=0) FXSYS_fprintf x ;}
233 # define Trace(x)
  /external/webrtc/webrtc/modules/audio_processing/beamformer/
matrix.h 123 T Trace() {
126 T trace = 0; local
128 trace += elements_[i][i];
130 return trace;

Completed in 1050 milliseconds

1 2 3 4 5 6