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

1 2

  /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
  /frameworks/base/media/libdrm/mobile1/src/objmng/
drm_file.c 69 Trace("convertFilename '%.*S' too long", strLength, strData);
92 Trace("getFileStat: %.*S", nameLen, name);
96 Trace("getFileStat: bad filename");
100 Trace("getFileStat %s: stat() errno=%d", tmpPathBuf1, errno);
209 Trace("DRM_file_startup");
227 Trace("DRM_file_listOpen: %.*S", prefixLen, prefix);
231 Trace("DRM_file_listOpen: bad filename");
248 sep = " <empty>"; /* trace will show sep+1 */
261 Trace("DRM_file_listOpen: opendir %s: errno=%d", tmpPathBuf1, errno);
265 Trace("DRM_file_listOpen: dir %s, filter %s", tmpPathBuf1, sep+1)
    [all...]
  /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) ;
rpng-x.c 96 /* #define DEBUG : this enables the Trace() macros */
377 Trace((stderr, "calling readpng_get_image()\n"))
380 Trace((stderr, "done with readpng_get_image()\n"))
397 Trace((stderr, "calling rpng_x_display_image()\n"))
402 Trace((stderr, "done with rpng_x_display_image()\n"))
472 Trace((stderr, "default depth is %d: checking other visuals\n",
486 Trace((stderr, "XGetVisualInfo() returned %d 24-bit visuals\n",
697 Trace((stderr, "beginning display loop (image_channels == %d)\n",
699 Trace((stderr, " (width = %ld, rowbytes = %ld, ximage_rowbytes = %d)\n",
701 Trace((stderr, " (bpp = %d)\n", ximage->bits_per_pixel)
    [all...]
readppm.c 161 Trace((stderr, "readpng_get_image: rowbytes = %ld, height = %ld\n", rowbytes, height));
rpng-win.c 90 /* #define DEBUG : this enables the Trace() macros */
389 Trace((stderr, "calling readpng_get_image()\n"))
392 Trace((stderr, "done with readpng_get_image()\n"))
409 Trace((stderr, "calling rpng_win_display_image()\n"))
414 Trace((stderr, "done with rpng_win_display_image()\n"))
543 Trace((stderr, "beginning display loop (image_channels == %d)\n",
545 Trace((stderr, "(width = %ld, rowbytes = %ld, wimage_rowbytes = %d)\n",
604 Trace((stderr, "calling final image-flush routine\n"))
rpng2-x.c 41 unexpected-EOF and file-read-error cases; fixed Trace() cut-and-
141 /* #define DEBUG */ /* this enables the Trace() macros */
540 Trace((stderr, "about to call XOpenDisplay()\n"))
598 Trace((stderr, "about to call readpng2_decode_data()\n"))
601 Trace((stderr, "done with readpng2_decode_data()\n"))
605 Trace((stderr, "done decoding PNG image\n"))
630 Trace((stderr, "about to call readpng2_cleanup()\n"))
642 Trace((stderr, "entering -loop loop (FEATURE_LOOP)\n"))
739 Trace((stderr, "entering final wait-for-quit-event loop\n"))
756 Trace((stderr, "about to call rpng2_x_cleanup()\n")
    [all...]
rpng2-win.c 118 /* #define DEBUG */ /* this enables the Trace() macros */
553 Trace((stderr, "about to call readpng2_decode_data()\n"))
556 Trace((stderr, "done with readpng2_decode_data()\n"))
560 Trace((stderr, "done decoding PNG image\n"))
585 Trace((stderr, "about to call readpng2_cleanup()\n"))
604 Trace((stderr, "about to call rpng2_win_cleanup()\n"))
623 Trace((stderr, "beginning rpng2_win_init()\n"))
624 Trace((stderr, " rowbytes = %d\n", rpng2_info.rowbytes))
625 Trace((stderr, " width = %ld\n", rpng2_info.width))
626 Trace((stderr, " height = %ld\n", rpng2_info.height)
    [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...]
  /dalvik/tools/dmtracedump/tests/filters/
run_tests.sh 8 *Trace) continue; ;;
14 # create_test_dmtrace $file tmp.trace
15 dmtracedump -f testFilters -h "$file"Trace > tmp.html 2> /dev/null
28 rm tmp.trace
  /external/chromium/net/disk_cache/
trace.h 24 // Simple class to handle the trace buffer lifetime. Any object interested in
43 void Trace(const char* format, ...);
trace.cc 5 #include "net/disk_cache/trace.h"
79 void Trace(const char* format, ...) {
143 void Trace(const char* format, ...) {
eviction.cc 38 #include "net/disk_cache/trace.h"
82 Trace("*** Trim Cache ***");
116 Trace("*** Trim Cache end ***");
200 Trace("NewEntry failed on Trim 0x%x", node->address().value());
232 Trace("*** Trim Cache ***");
304 Trace("*** Trim Cache end ***");
395 Trace("*** Trim Deleted ***");
414 Trace("*** Trim Deleted end ***");
422 Trace("NewEntry failed on Trim 0x%x", node->address().value());
storage_block-inl.h 11 #include "net/disk_cache/trace.h"
119 Trace("Failed data load.");
131 Trace("Failed data store.");
  /frameworks/base/media/libdrm/mobile1/include/
drm_common_types.h 39 #define Trace(...)
  /external/chromium/base/
trace_event.h 5 // Trace events to track application performance. Events consist of a name
12 // trace report. In the future, it may use another mechansim to facilitate
47 Singleton<base::TraceLog>::get()->Trace(name, \
57 Singleton<base::TraceLog>::get()->Trace(name, \
66 Singleton<base::TraceLog>::get()->Trace(name, \
90 // Start logging trace events.
92 // Stop logging trace events.
95 // Log a trace event of (name, type, id) with the optional extra string.
96 void Trace(const std::string& name,
102 void Trace(const std::string& name
    [all...]
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/v8/src/
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...]
jsregexp.cc 592 // manipulation in an object called the Trace. The Trace object can record a
595 // to be emitted it can flush the Trace or update it. Flushing the Trace
604 // The virtual state found in the Trace affects code generation. For example
608 // string. Therefore code generated for a non-trivial trace is specialized
609 // to that trace. The code generator therefore has the ability to generate
613 // trace is flushed and a generic version of the code for a node is emitted.
615 // trace is not recorded in the node and so it cannot currently be reused in
616 // the event that code generation is requested for an identical trace
    [all...]
  /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...]
  /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/zlib/
zutil.h 250 # define Trace(x) {if (z_verbose>=0) fprintf x ;}
257 # define Trace(x)

Completed in 181 milliseconds

1 2