/external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/ |
tr_screen.c | 42 static boolean trace = FALSE; variable 274 /* TODO trace call */ 293 /* TODO trace call */ 443 return trace; 448 trace = TRUE; 451 return trace;
|
/external/chromium_org/third_party/sqlite/src/src/ |
mutex_os2.c | 35 int trace; /* True to trace changes */ member in struct:sqlite3_mutex 206 printf("%s mutex %p (%d) with nRef=%ld\n", pAction, (void*)p, p->trace, ulCount); 225 if( p->trace ) os2MutexTrace(p, "enter"); 234 if( p->trace ) os2MutexTrace(p, "try"); 250 if( p->trace ) os2MutexTrace(p, "leave");
|
mutex_unix.c | 47 int trace; /* True to trace changes */ member in struct:sqlite3_mutex 245 if( p->trace ){ 246 printf("enter mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef); 294 if( rc==SQLITE_OK && p->trace ){ 295 printf("enter mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef); 324 if( p->trace ){ 325 printf("leave mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef);
|
mutex_w32.c | 31 int trace; /* True to trace changes */ member in struct:sqlite3_mutex 250 if( p->trace ){ 251 printf("enter mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef); 282 if( rc==SQLITE_OK && p->trace ){ 283 printf("try mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef); 306 if( p->trace ){ 307 printf("leave mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef);
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
stacktrace_powerpc-inl.h | 33 // Produce stack trace. I'm guessing (hoping!) the code is much like 85 // GetStack{Trace,Frames}() 86 // GetStack{Trace,Frames}WithContext() 89 // void** result: the stack-trace, as an array 94 // void* ucp: a ucontext_t* (GetStack{Trace,Frames}WithContext only) 131 // Use the non-strict unwinding rules to produce a stack trace
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
stacktrace_powerpc-inl.h | 33 // Produce stack trace. I'm guessing (hoping!) the code is much like 85 // GetStack{Trace,Frames}() 86 // GetStack{Trace,Frames}WithContext() 89 // void** result: the stack-trace, as an array 94 // void* ucp: a ucontext_t* (GetStack{Trace,Frames}WithContext only) 131 // Use the non-strict unwinding rules to produce a stack trace
|
/external/mesa3d/src/gallium/drivers/trace/ |
tr_screen.c | 42 static boolean trace = FALSE; variable 274 /* TODO trace call */ 293 /* TODO trace call */ 443 return trace; 448 trace = TRUE; 451 return trace;
|
/external/mockito/src/org/mockito/internal/util/reflection/ |
FieldInitializer.java | 188 throw new MockitoException("the default constructor of type '" + field.getType().getSimpleName() + "' has raised an exception (see the stack trace for cause): " + e.getTargetException().toString(), e);
190 throw new MockitoException("InstantiationException (see the stack trace for cause): " + e.toString(), e);
192 throw new MockitoException("IllegalAccessException (see the stack trace for cause): " + e.toString(), e);
246 throw new MockitoException("the constructor of type '" + field.getType().getSimpleName() + "' has raised an exception (see the stack trace for cause): " + e.getTargetException().toString(), e);
248 throw new MockitoException("InstantiationException (see the stack trace for cause): " + e.toString(), e);
250 throw new MockitoException("IllegalAccessException (see the stack trace for cause): " + e.toString(), e);
|
/external/v8/test/mjsunit/ |
stack-traces.js | 115 // in the stack trace produced when running the given function. 136 // Test that the error constructor is not shown in the trace 149 // Test that the explicit constructor call is shown in the trace 166 // If an error occurs while the stack trace is being formatted it should 203 // stack trace. 215 // stack trace.
|
/external/valgrind/main/none/tests/ |
cmdline1.stdout.exp | 12 --trace-children=no|yes Valgrind-ise child processes (follow execve)? [no] 13 --trace-children-skip=patt1,patt2,... specifies a list of executables 14 that --trace-children=yes should not trace into 15 --trace-children-skip-by-arg=patt1,patt2,... same as --trace-children-skip=
|
/libcore/luni/src/main/java/javax/xml/transform/ |
TransformerException.java | 276 * Print the the trace of methods from where the error 277 * originated. This will trace all nested exception 285 * Print the the trace of methods from where the error 286 * originated. This will trace all nested exception 295 * Print the the trace of methods from where the error 296 * originated. This will trace all nested exception
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/ |
TraceFileParserTask.java | 58 * Construct a GL Trace file parser. 59 * @param path path to trace file 145 monitor.beginTask("Parsing OpenGL Trace File", 156 // counters that maintain some statistics about the trace messages 249 * Retrieve the trace object constructed from messages in the trace file.
|
/art/runtime/native/ |
dalvik_system_VMDebug.cc | 32 #include "trace.h" 38 features.push_back("method-trace-profiling"); 39 features.push_back("method-trace-profiling-streaming"); 64 Trace::Start("[DDMS]", -1, bufferSize, flags, true, samplingEnabled, intervalUs); 87 Trace::Start(traceFilename.c_str(), fd, bufferSize, flags, false, false, 0); 96 Trace::Start(traceFilename.c_str(), -1, bufferSize, flags, false, false, 0); 100 return Trace::GetMethodTracingMode(); 104 Trace::Stop();
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/ |
Antlr3.Runtime.Tests (VS2005).csproj | 21 <DefineConstants>TRACE;DEBUG;STRONG_NAME;DOTNET2</DefineConstants> 29 <DefineConstants>TRACE;STRONG_NAME;DOTNET2</DefineConstants>
|
Antlr3.Runtime.Tests (VS2008).csproj | 26 <DefineConstants>TRACE;DEBUG;STRONG_NAME;DOTNET2</DefineConstants> 34 <DefineConstants>TRACE;STRONG_NAME;DOTNET2</DefineConstants>
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Utility/ |
Antlr3.Utility (VS2005).csproj | 19 <DefineConstants>TRACE;DEBUG;STRONG_NAME;DOTNET2</DefineConstants>
34 <DefineConstants>TRACE;STRONG_NAME;DOTNET2</DefineConstants>
|
Antlr3.Utility (VS2008).csproj | 24 <DefineConstants>TRACE;DEBUG;STRONG_NAME;DOTNET2</DefineConstants> 39 <DefineConstants>TRACE;STRONG_NAME;DOTNET2</DefineConstants>
|
/external/chromium-trace/trace-viewer/src/tracing/importer/linux_perf/ |
cpufreq_parser.js | 8 * @fileoverview Parses cpufreq events in the Linux event trace format. 16 * Parses linux cpufreq trace events.
|
kfunc_parser.js | 9 * the Linux kernel's function graph trace. 18 * kernel's function graph trace.
|
sched_parser.js | 8 * @fileoverview Parses scheduler events in the Linux event trace format. 16 * Parses linux sched trace events.
|
workqueue_parser.js | 8 * @fileoverview Parses workqueue events in the Linux event trace format. 16 * Parses linux workqueue trace events.
|
/external/chromium_org/chrome/test/logging/win/ |
file_logger.h | 20 // A file logger instance captures LOG messages and trace events emitted via 41 // Trace events.
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
HeapSnapshotLoader.js | 195 this._state = "find-trace-function-infos"; 200 case "find-trace-function-infos": { 214 this._state = "parse-trace-function-infos"; 217 case "parse-trace-function-infos": { 222 this._state = "find-trace-tree"; 225 case "find-trace-tree": { 234 this._state = "parse-trace-tree"; 237 case "parse-trace-tree": {
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
stack_utils.py | 46 """Returns a stack object that can be used to dump a stack trace for 55 """Log a stack trace to the logger callback."""
|
/external/chromium_org/third_party/WebKit/Tools/ |
run-perf-test.cfg | 21 RESULT <graph>: <trace>= <value> <units> 23 The metric name is "<graph>/<trace>".
|