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

  /frameworks/base/media/libdrm/mobile1/include/
drm_common_types.h 39 #define Trace(...)
  /libcore/sqlite-jdbc/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/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/net/disk_cache/
trace.cc 5 #include "net/disk_cache/trace.h"
79 void Trace(const char* format, ...) {
143 void Trace(const char* format, ...) {
  /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/base/
trace_event.cc 48 TraceLog* trace = Singleton<TraceLog>::get(); local
49 return trace->enabled_;
54 TraceLog* trace = Singleton<TraceLog>::get(); local
55 return trace->Start();
72 TraceLog* trace = Singleton<TraceLog>::get(); local
73 return trace->Stop();
114 void TraceLog::Trace(const std::string& name,
122 Trace(name, type, id, WideToUTF8(extra), file, line);
125 void TraceLog::Trace(const std::string& name,
  /external/zlib/
zutil.h 250 # define Trace(x) {if (z_verbose>=0) fprintf x ;}
257 # define Trace(x)
  /external/chromium/third_party/zlib/
zutil.h 246 # define Trace(x) {if (z_verbose>=0) fprintf x ;}
253 # 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 54 StackTracer::Trace(trace_env.sample);
95 TraceExtension() : v8::Extension("v8/trace", kSource) { }
98 static v8::Handle<v8::Value> Trace(const v8::Arguments& args);
109 "native function trace();"
116 if (name->Equals(String::New("trace"))) {
117 return v8::FunctionTemplate::New(TraceExtension::Trace);
137 printf("Trace: %p\n", fp);
142 v8::Handle<v8::Value> TraceExtension::Trace(const v8::Arguments& args) {
184 const char* extensions[] = { "v8/trace" };
288 CreateTraceCallerFunction("JSFuncDoTrace", "trace");
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/
SamplingProfiler.java 73 * Real hprof output examples don't start the thread and trace
97 private final Map<Trace, int[]> traces = new HashMap<Trace, int[]>();
293 private final Trace mutableTrace = new Trace();
329 Trace trace = new Trace(nextTraceId++, mutableTrace); local
331 traces.put(trace, count);
432 * A Trace represents a unique stack trace for a specific thread
516 Trace trace = sample.getKey(); local
533 Trace trace = sample.getKey(); local
    [all...]
  /external/v8/src/
log.cc 145 void StackTracer::Trace(TickSample* sample) {
194 StackTracer::Trace(sample);
    [all...]
jsregexp.h 330 friend class Trace;
431 class Trace;
572 virtual void Emit(RegExpCompiler* compiler, Trace* trace) = 0;
582 Trace* trace,
599 // start of the trace) then it cannot be reused. This variable sets a limit
601 // trace and generating generic code for a node that can be reused by flushing
602 // the deferred actions in the current trace and generating a goto.
642 LimitResult LimitVersions(RegExpCompiler* compiler, Trace* trace)
    [all...]

Completed in 920 milliseconds