/external/webrtc/src/system_wrappers/source/ |
trace_impl_no_op.cc | 11 #include "trace.h" 15 void Trace::CreateTrace() 19 void Trace::ReturnTrace() 23 WebRtc_Word32 Trace::SetLevelFilter(WebRtc_UWord32 /*filter*/) 28 WebRtc_Word32 Trace::LevelFilter(WebRtc_UWord32& /*filter*/) 33 WebRtc_Word32 Trace::TraceFile( 39 WebRtc_Word32 Trace::SetTraceFile(const char* /*fileName*/, 45 WebRtc_Word32 Trace::SetTraceCallback(TraceCallback* /*callback*/) 50 void Trace::Add(const TraceLevel /*level*/, const TraceModule /*module*/,
|
unittest_utilities.h | 20 #include "system_wrappers/interface/trace.h" 64 Trace::CreateTrace(); 65 Trace::SetLevelFilter(webrtc::kTraceAll); 66 Trace::SetTraceCallback(&trace_); 72 Trace::ReturnTrace();
|
trace_unittest.cc | 11 #include "system_wrappers/interface/trace.h" 18 using webrtc::Trace; 25 Trace::CreateTrace(); 28 Trace::SetTraceFile(trace_file.c_str()); 29 Trace::SetLevelFilter(webrtc::kTraceAll); 32 Trace::ReturnTrace();
|
cpu_wrapper_unittest.cc | 17 #include "system_wrappers/interface/trace.h" 24 using webrtc::Trace; 34 Trace::CreateTrace(); 37 Trace::SetTraceFile(trace_file.c_str()); 38 Trace::SetLevelFilter(webrtc::kTraceAll); 76 Trace::ReturnTrace();
|
/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_org/third_party/angle/src/compiler/ |
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__); \
|
/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();
|
InputStreamBuffer.java | 130 Trace.beginSection("get"); 133 Trace.endSection(); 136 Trace.endSection(); 160 Trace.beginSection("has"); 162 Trace.endSection(); 171 Trace.endSection(); 175 Trace.endSection(); 188 Trace.beginSection("advance to"); 192 Trace.endSection(); 236 Trace.endSection() [all...] |
/external/linux-tools-perf/scripts/perl/Perf-Trace-Util/ |
Context.xs | 28 MODULE = Perf::Trace::Context PACKAGE = Perf::Trace::Context
|
/external/llvm/lib/Analysis/ |
Trace.cpp | 1 //===- Trace.cpp - Implementation of Trace class --------------------------===// 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 18 #include "llvm/Analysis/Trace.h" 25 Function *Trace::getFunction() const { 29 Module *Trace::getModule() const { 33 /// print - Write trace to output stream [all...] |
/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);
|
/system/core/libutils/ |
Trace.cpp | 18 #include <utils/Trace.h>
|
/external/linux-tools-perf/scripts/perl/ |
failed-syscalls.pl | 8 use lib "$ENV{'PERF_EXEC_PATH'}/scripts/perl/Perf-Trace-Util/lib"; 9 use lib "./Perf-Trace-Util/lib"; 10 use Perf::Trace::Core; 11 use Perf::Trace::Context; 12 use Perf::Trace::Util;
|
/cts/suite/cts/deviceTests/opengl/jni/ |
Trace.h | 17 // #define TRACE 19 #ifdef TRACE 21 #include <utils/Trace.h>
|
/external/chromium/base/debug/ |
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...] |
/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...] |
/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/ |
CompareActivity.java | 30 import android.os.Trace; 78 Trace.traceBegin(Trace.TRACE_TAG_ALWAYS, "loadBitmaps"); 87 Trace.traceBegin(Trace.TRACE_TAG_ALWAYS, "softwareDraw"); 89 Trace.traceEnd(Trace.TRACE_TAG_ALWAYS); 105 Trace.traceBegin(Trace.TRACE_TAG_ALWAYS, "copyInto"); 107 Trace.traceEnd(Trace.TRACE_TAG_ALWAYS) [all...] |
/external/chromium_org/base/debug/ |
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/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.')
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_trace.h | 45 StackTrace stack0; // Start stack for the trace. 46 u64 epoch0; // Start epoch for the trace. 62 struct Trace { 66 Trace()
|
/external/libpng/contrib/gregbook/ |
readpng.h | 67 # define Trace(x) {fprintf x ; fflush(stderr); fflush(stdout);} 69 # define Trace(x) ;
|
/external/chromium/net/disk_cache/ |
trace.h | 22 // Simple class to handle the trace buffer lifetime. Any object interested in 36 void Trace(const char* format, ...);
|
/external/chromium_org/gpu/command_buffer/service/ |
gpu_tracer.cc | 53 class Trace : public base::RefCounted<Trace> { 55 explicit Trace(const std::string& name) : name_(name) {} 71 virtual ~Trace() {} 74 friend class base::RefCounted<Trace>; 78 DISALLOW_COPY_AND_ASSIGN(Trace); 81 class GLARBTimerTrace : public Trace { 109 class NoopTrace : public Trace { 111 explicit NoopTrace(const std::string& name) : Trace(name) {} 146 // Create a new trace [all...] |
/external/chromium_org/net/disk_cache/ |
trace.h | 22 // Simple class to handle the trace buffer lifetime. Any object interested in 37 NET_EXPORT_PRIVATE void Trace(const char* format, ...);
|