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

  /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/webkit/Source/ThirdParty/ANGLE/src/compiler/
debug.cpp 20 void Trace(const char *format, ...) {
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/webrtc/src/system_wrappers/interface/
trace.h 12 // Note: All log messages will be written to the same trace file.
27 #define WEBRTC_TRACE Trace::Add
31 class Trace
35 // Increments the reference count to the trace.
37 // Decrements the reference count to the trace.
39 // Note: any instance that writes to the trace file should increment and
43 // Specifies what type of messages should be written to the trace file. The
49 // Returns what type of messages are written to the trace file.
58 // Returns the name of the file that the trace is currently writing to.
61 // Registers callback to receive trace messages. TODO (hellner
    [all...]
  /frameworks/base/media/libdrm/mobile1/include/
drm_common_types.h 39 #define Trace(...)
  /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) ;
writepng.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/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/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/zlib/
zutil.h 250 # define Trace(x) {if (z_verbose>=0) fprintf x ;}
257 # define Trace(x)
  /external/qemu/distrib/zlib-1.2.3/
zutil.h 246 # define Trace(x) {if (z_verbose>=0) fprintf x ;}
253 # define Trace(x)
  /external/v8/test/cctest/
test-log-stack-tracer.cc 80 StackTracer::Trace(Isolate::Current(), trace_env.sample);
100 TraceExtension() : v8::Extension("v8/trace", kSource) { }
103 static v8::Handle<v8::Value> Trace(const v8::Arguments& args);
114 "native function trace();"
121 if (name->Equals(String::New("trace"))) {
122 return v8::FunctionTemplate::New(TraceExtension::Trace);
148 printf("Trace: %p\n", fp);
153 v8::Handle<v8::Value> TraceExtension::Trace(const v8::Arguments& args) {
195 const char* extensions[] = { "v8/trace" };
291 // extension function trace() with the current frame pointer value
    [all...]
  /external/v8/src/
log.cc 148 void StackTracer::Trace(Isolate* isolate, TickSample* sample) {
231 StackTracer::Trace(isolate(), sample);
    [all...]
jsregexp.h 361 friend class Trace;
462 class Trace;
603 virtual void Emit(RegExpCompiler* compiler, Trace* trace) = 0;
618 Trace* trace,
635 // start of the trace) then it cannot be reused. This variable sets a limit
637 // trace and generating generic code for a node that can be reused by flushing
638 // the deferred actions in the current trace and generating a goto.
678 LimitResult LimitVersions(RegExpCompiler* compiler, Trace* trace)
    [all...]
hydrogen.cc 776 // construct a stack trace.
    [all...]

Completed in 1635 milliseconds