/external/slf4j/slf4j-simple/src/main/java/org/slf4j/impl/ |
SimpleLogger.java | 55 * Must be one of ("trace", "debug", "info", "warn", or "error"). If not specified, defaults to "info". </li> 58 * named "a.b.c". Right-side value must be one of "trace", "debug", "info", "warn", or "error". When a SimpleLogger 287 if ("trace".equalsIgnoreCase(levelStr)) { 308 * @param t The exception whose stack trace should be logged 341 buf.append("TRACE"); 439 /** Are {@code trace} messages currently enabled? */ 445 * A simple implementation which logs messages of level TRACE according 448 public void trace(String msg) { method in class:SimpleLogger 454 * TRACE according to the format outlined above. 456 public void trace(String format, Object param1) method in class:SimpleLogger 464 public void trace(String format, Object param1, Object param2) { method in class:SimpleLogger 472 public void trace(String format, Object... argArray) { method in class:SimpleLogger 477 public void trace(String msg, Throwable t) { method in class:SimpleLogger [all...] |
/frameworks/base/core/java/android/app/ |
ApplicationErrorReport.java | 330 * Stack trace. 366 StackTraceElement trace = rootTr.getStackTrace()[0]; local 367 throwFileName = trace.getFileName(); 368 throwClassName = trace.getClassName(); 369 throwMethodName = trace.getMethodName(); 370 throwLineNumber = trace.getLineNumber();
|
/toolchain/binutils/binutils-2.25/libiberty/testsuite/ |
test-pexecute.c | 180 int trace; local 190 trace = 0; 193 trace = 1; 212 if (trace) \ 433 if (trace)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
trace.py | 30 """program/module to trace Python program or function execution 33 trace.py -c -f counts --ignore-dir '$prefix' spam.py eggs 34 trace.py -t --ignore-dir '$prefix' spam.py eggs 35 trace.py --trackcalls spam.py eggs 40 # create a Trace object, telling it what to ignore, and whether to 42 tracer = trace.Trace(ignoredirs=[sys.prefix, sys.exec_prefix,], trace=0, 91 -t, --trace Print each line to sys.stdout before it is executed. 363 print >> sys.stderr, ("trace: Could not open %r for writing: %s [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
trace.py | 30 """program/module to trace Python program or function execution 33 trace.py -c -f counts --ignore-dir '$prefix' spam.py eggs 34 trace.py -t --ignore-dir '$prefix' spam.py eggs 35 trace.py --trackcalls spam.py eggs 40 # create a Trace object, telling it what to ignore, and whether to 42 tracer = trace.Trace(ignoredirs=[sys.prefix, sys.exec_prefix,], trace=0, 91 -t, --trace Print each line to sys.stdout before it is executed. 363 print >> sys.stderr, ("trace: Could not open %r for writing: %s [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
trace.py | 30 """program/module to trace Python program or function execution 33 trace.py -c -f counts --ignore-dir '$prefix' spam.py eggs 34 trace.py -t --ignore-dir '$prefix' spam.py eggs 35 trace.py --trackcalls spam.py eggs 40 # create a Trace object, telling it what to ignore, and whether to 42 tracer = trace.Trace(ignoredirs=[sys.prefix, sys.exec_prefix,], trace=0, 91 -t, --trace Print each line to sys.stdout before it is executed. 363 print >> sys.stderr, ("trace: Could not open %r for writing: %s [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
trace.py | 30 """program/module to trace Python program or function execution 33 trace.py -c -f counts --ignore-dir '$prefix' spam.py eggs 34 trace.py -t --ignore-dir '$prefix' spam.py eggs 35 trace.py --trackcalls spam.py eggs 40 # create a Trace object, telling it what to ignore, and whether to 42 tracer = trace.Trace(ignoredirs=[sys.prefix, sys.exec_prefix,], trace=0, 91 -t, --trace Print each line to sys.stdout before it is executed. 363 print >> sys.stderr, ("trace: Could not open %r for writing: %s [all...] |
/external/chromium-trace/catapult/dashboard/dashboard/ |
graph_json.py | 114 start_rev: The lowest revision to get trace data for. 115 end_rev: The highest revision to get trace data for. 362 An URI string, or None if there is no trace available. 370 """Gets the trace rerun options, if available. 404 # For each Test (which corresponds to a trace line), the shaded error 497 for trace in selected_traces: 498 if trace == parent_test_name: 501 test_paths_with_rows.append(test_path + '/' + trace) 524 for trace in unselected_traces: 525 if trace not in selected_traces [all...] |
/external/chromium-trace/catapult/telemetry/telemetry/internal/results/ |
page_test_results_unittest.py | 18 from telemetry.value import trace namespace 254 results.AddValue(trace.TraceValue(None, trace_data.TraceData({'test' : 1}))) 258 results.AddValue(trace.TraceValue(None, trace_data.TraceData({'test' : 2}))) 268 v0 = trace.TraceValue(None, trace_data.TraceData({'test': 1})) 269 v1 = trace.TraceValue(None, trace_data.TraceData({'test': 2})) 285 v0 = trace.TraceValue(None, trace_data.TraceData({'test': 1})) 286 v1 = trace.TraceValue(None, trace_data.TraceData({'test': 2}))
|
/art/runtime/jit/ |
jit_code_cache.cc | 59 ScopedTrace trace(__PRETTY_FUNCTION__); 183 ScopedTrace trace("mprotect all"); 187 ScopedTrace trace("mprotect code"); 262 ScopedTrace trace(__PRETTY_FUNCTION__); 471 ScopedTrace trace(__PRETTY_FUNCTION__); 572 ScopedTrace trace(__FUNCTION__); 659 ScopedTrace trace(__FUNCTION__); 677 ScopedTrace trace(__FUNCTION__); 760 ScopedTrace trace(__FUNCTION__); [all...] |
/external/opencv/cv/src/ |
cvsurf.cpp | 145 float* trace = traces[k]->data.fl; local 149 trace[i] = trace[hessian_cols*hessian_rows-1-i] = 0.f; 152 trace += (SIZE0/2)*(hessian_cols + 1); 158 trace += hessian_cols, hessian += hessian_cols ) 163 trace[-j-1] = trace[hessian_cols - SIZE0 + j] = 0.f; 178 trace[j] = (float)(dx + dy); 197 const float* trace = traces[k]->data.fl + i*hessian_cols; local 231 double trace_val = trace[j] [all...] |
/art/runtime/hprof/ |
hprof.cc | 545 // U4: stack trace serial number 609 const gc::AllocRecordStackTrace* trace = r->second; local 610 auto result = traces_.find(trace); 663 // Write a dummy stack trace record so the analysis tools don't freak out. 669 // TODO: jhat complains "WARNING: Stack trace not found for serial # -1", but no trace should 672 const gc::AllocRecordStackTrace* trace = it.first; local 674 size_t depth = trace->GetDepth(); 676 // First write stack frames of the trace 678 const gc::AllocRecordStackTraceElement* frame = &trace->GetStackElement(i) 832 const gc::AllocRecordStackTrace* trace = it->second.GetStackTrace(); local [all...] |
/external/libchrome/base/debug/ |
stack_trace_posix.cc | 152 void ProcessBacktrace(void *const * trace, 155 (void)trace; // unused based on build context below. 165 OutputPointer(trace[i], handler); 172 void* address = static_cast<char*>(trace[i]) - 1; 187 trace_symbols(backtrace_symbols(trace, size)); 203 OutputPointer(trace[i], handler); 381 PrintToStderr("[end of stack trace]\n"); 422 // Warm up stack trace infrastructure. It turns out that on the first 426 // Example stack trace snippet (with tcmalloc): 461 // needed by the stack trace symbolization cod [all...] |
/external/testng/src/main/java/org/testng/log4testng/ |
Logger.java | 20 * TRACE, DEBUG, INFO, WARN, ERROR and FATAL.
41 * # The org.testng.reporters.EmailableReporter Logger will log TRACE level and above
42 * log4testng.logger.org.testng.reporters.EmailableReporter=TRACE
67 private static final int TRACE= i++;
97 levelNames[TRACE]= "TRACE";
105 /** A map from level name to level integer index (TRACE->0, DEBUG->1 ...) */
160 * Check whether this logger is enabled for the TRACE Level.
161 * @return true if this logger is enabled for level TRACE, false otherwise.
164 return isLevelEnabled(TRACE);
176 public void trace(Object message) { method in class:Logger 187 public void trace(Object message, Throwable t) { method in class:Logger [all...] |
/external/autotest/client/site_tests/security_SeccompSyscallFilters/src/ |
seccomp_bpf_tests.c | 515 struct sock_fprog trace; local 560 FILTER_ALLOC(trace); 569 FILTER_FREE(trace); 583 ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); 604 ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); 631 ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); 648 ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); 669 ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); 686 ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); 702 ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trace); [all...] |
/external/eigen/Eigen/src/Eigenvalues/ |
ComplexSchur.h | 298 ComplexScalar trace = t.coeff(0,0) + t.coeff(1,1); local 299 ComplexScalar eival1 = (trace + disc) / RealScalar(2); 300 ComplexScalar eival2 = (trace - disc) / RealScalar(2);
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
intel_regions.c | 73 void *trace[DEBUG_BACKTRACE_SIZE]; local 78 traceSize = backtrace(trace, DEBUG_BACKTRACE_SIZE); 79 strings = backtrace_symbols(trace, traceSize); 88 * the trace to avoid really long lines.
|
/external/webrtc/webrtc/modules/audio_processing/beamformer/ |
matrix.h | 123 T Trace() { 126 T trace = 0; local 128 trace += elements_[i][i]; 130 return trace;
|
/art/test/122-npe/src/ |
Main.java | 559 StackTraceElement[] trace = npe.getStackTrace(); local 560 checkElement(trace[0], "Main", "methodTwo", "Main.java", firstLine); 561 checkElement(trace[1], "Main", "methodOne", "Main.java", 27); 562 checkElement(trace[2], "Main", "main", "Main.java", 23);
|
/art/test/ |
Android.run-test.mk | 126 TRACE_TYPES += trace 185 $(foreach trace, $(6), \ 193 test-art-$(target)-run-test-$(run-type)-$(prebuild)-$(compiler)-$(relocate)-$(trace)-$(gc)-$(jni)-$(image)-$(pictest)-$(debuggable)-$(test)$(address_size) \ 436 ifneq (,$(filter trace stream,$(TRACE_TYPES))) 438 $(COMPILER_TYPES),$(RELOCATE_TYPES),trace stream,$(GC_TYPES),$(JNI_TYPES),$(IMAGE_TYPES), \ 595 $(foreach trace, $(TRACE_TYPES), \ 596 $(eval ART_RUN_TEST_$(call name-to-var,$(target))_$(call name-to-var,$(trace))_RULES :=))) 662 # {6: trace or ntrace}-{7: gcstress gcverify cms}-{8: forcecopy checkjni jni}- 755 ifeq ($(6),trace) 757 run_test_options += --trace [all...] |
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/ |
CtsXmlResultReporter.java | 290 public void testFailed(TestIdentifier test, String trace) { 292 mCurrentPkgResult.reportTestFailure(test, CtsTestStatus.FAIL, trace); 300 public void testAssumptionFailure(TestIdentifier test, String trace) { 303 mCurrentPkgResult.reportTestFailure(test, CtsTestStatus.FAIL, trace);
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
main.rb | 381 @trace = options.fetch( :trace, nil ) 413 opt.on( '--trace', '-t', "print rule trace instead of opening a debug socket" ) do 414 @trace = true 449 if @trace
|
task.rb | 115 :trace, :profile, :compile_options, 138 @trace = options.fetch( :trace, false ) 213 parts << '-trace' if @trace
|
/external/autotest/server/cros/ap_configurators/ |
ap_configurator.py | 233 def store_config_failure(self, trace): 237 @param trace: a string traceback of config exception
|
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/ |
decorators.py | 13 def trace(name, **kwargs): function 27 raise Exception("Can not trace generators.")
|