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

1 2 3 4

  /external/chromium_org/third_party/angle_dx11/src/compiler/
debug.cpp 21 void Trace(const char *format, ...) {
32 parseContext->trace(buf);
debug.h 24 void Trace(const char* format, ...);
31 #define Trace(...) ((void)0)
38 Trace("Assert failed: %s(%d): "#expression"\n", __FUNCTION__, __LINE__); \
43 Trace("Unimplemented invoked: %s(%d)\n", __FUNCTION__, __LINE__); \
48 Trace("Unreachable reached: %s(%d)\n", __FUNCTION__, __LINE__); \
  /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/linux-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;
Core.pm 1 package Perf::Trace::Core;
166 Perf::Trace::Core - Perl extension for perf script
170 use Perf::Trace::Core
  /external/webrtc/src/system_wrappers/interface/
trace.h 12 // Note: All log messages will be written to the same trace file.
21 #define WEBRTC_TRACE Trace::Add
24 class Trace
28 // Increments the reference count to the trace.
30 // Decrements the reference count to the trace.
32 // Note: any instance that writes to the trace file should increment and
36 // Specifies what type of messages should be written to the trace file. The
42 // Returns what type of messages are written to the trace file.
51 // Returns the name of the file that the trace is currently writing to.
54 // Registers callback to receive trace messages. TODO (hellner
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/bitmap/
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();
  /external/chromium_org/native_client_sdk/src/build_tools/
generate_notice.py 14 def Trace(msg):
15 if Trace.verbose:
18 Trace.verbose = False
24 if Trace.verbose:
26 Trace('Skipping %s. File doesn\'t exist.\n' % (f,))
45 Trace('Writing license for files:\n' + '\n'.join(license_filenames))
78 Trace.verbose = options.verbose
86 Trace('Done.')
generate_make.py 16 def Trace(msg):
17 if Trace.verbose:
19 Trace.verbose = False
168 Trace('Skipping "%s", destination "%s" is newer.' % (
  /external/libpng/contrib/gregbook/
readpng.h 67 # define Trace(x) {fprintf x ; fflush(stderr); fflush(stdout);}
69 # define Trace(x) ;
  /external/chromium/base/debug/
trace_event_win.cc 92 // Trace the event.
96 void TraceLog::Trace(const char* name,
trace_event_win.h 16 base::debug::TraceLog::Trace( \
23 base::debug::TraceLog::Trace( \
30 base::debug::TraceLog::Trace( \
53 // Start logging trace events.
57 // Trace begin/end/instant events, this is the bottleneck implementation
64 static void Trace(const char* name,
72 static void Trace(const char* name,
76 return Trace(name, -1, type, id, extra.c_str(), extra.length());
81 static void Trace(const char* name,
85 return Trace(name, -1, type, id, extra, -1)
    [all...]
trace_event.cc 51 void TraceLog::Trace(const std::string& name,
59 Trace(name, type, id, WideToUTF8(extra), file, line);
62 void TraceLog::Trace(const std::string& name,
  /external/chromium_org/base/debug/
trace_event_win.cc 93 // Trace the event.
97 void TraceEventETWProvider::Trace(const char* name,
trace_event_win.h 26 // Start logging trace events.
30 // Trace begin/end/instant events, this is the bottleneck implementation
37 static void Trace(const char* name,
45 static void Trace(const char* name,
49 return Trace(name, -1, type, id, extra.c_str(), extra.length());
54 static void Trace(const char* name,
58 return Trace(name, -1, type, id, extra, -1);
70 // Emit a trace of type |type| containing |name|, |id|, and |extra|.
94 // The ETW trace provider GUID.
117 // Optionally the stack trace, consisting of a DWORD "depth", followe
    [all...]
  /external/chromium_org/ui/gfx/
matrix3_f.h 69 // Trace (sum of diagonal elements) of the matrix.
70 float Trace() const {
  /frameworks/base/core/java/android/app/
ApplicationLoaders.java 19 import android.os.Trace;
56 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, zip);
59 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
65 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, zip);
67 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
  /art/runtime/
trace.h 51 class Trace : public instrumentation::InstrumentationListener {
92 // Reuse an old stack trace if it exists, otherwise allocate a new one.
94 // Clear and store an old stack trace for later use.
98 explicit Trace(File* trace_file, int buffer_size, int flags, bool sampling_enabled);
117 // Singleton instance of the Trace or NULL when no method tracing is active.
118 static Trace* volatile the_trace_ GUARDED_BY(Locks::trace_lock_);
126 // Used to remember an unused stack trace to avoid re-allocation during sampling.
129 // File to write trace data out to, NULL if direct to ddms.
132 // Buffer to store trace data.
146 // Time trace was created
    [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/chromium/net/disk_cache/
trace.cc 5 #include "net/disk_cache/trace.h"
88 void Trace(const char* format, ...) {
154 void Trace(const char* format, ...) {
  /external/chromium_org/net/disk_cache/
trace.cc 5 #include "net/disk_cache/trace.h"
108 void Trace(const char* format, ...) {
187 void Trace(const char* format, ...) {
  /external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
model.py 30 '''Trace data model.'''
115 class Trace:
  /external/clang/tools/libclang/
CLog.h 42 bool Trace;
57 bool trace = isStackTracingEnabled()) {
59 return new Logger(name, trace);
63 explicit Logger(llvm::StringRef name, bool trace)
64 : Name(name), Trace(trace), LogOS(Msg) { }

Completed in 944 milliseconds

1 2 3 4