Searched refs:trace (Results 26 - 50 of 423) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dstack_trace_table.cc46 const bool eq = (this->hash == h && this->trace.depth == t.depth);
48 if (this->trace.stack[i] != t.stack[i]) {
90 b->trace.size += t.size; // keep cumulative size
101 b->trace = t;
130 out[idx++] = reinterpret_cast<void*>(b->trace.size); // cumulative size
131 out[idx++] = reinterpret_cast<void*>(b->trace.depth);
132 for (int d = 0; d < b->trace.depth; ++d) {
133 out[idx++] = b->trace.stack[d];
H A Dstacktrace_config.h58 # error Cannnot calculate stack trace: need either libunwind or frame-pointers (see INSTALL file)
60 # error Cannnot calculate stack trace: need libunwind (see INSTALL file)
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dstack_trace_table.cc46 const bool eq = (this->hash == h && this->trace.depth == t.depth);
48 if (this->trace.stack[i] != t.stack[i]) {
90 b->trace.size += t.size; // keep cumulative size
101 b->trace = t;
130 out[idx++] = reinterpret_cast<void*>(b->trace.size); // cumulative size
131 out[idx++] = reinterpret_cast<void*>(b->trace.depth);
132 for (int d = 0; d < b->trace.depth; ++d) {
133 out[idx++] = b->trace.stack[d];
H A Dstacktrace_config.h58 # error Cannnot calculate stack trace: need either libunwind or frame-pointers (see INSTALL file)
60 # error Cannnot calculate stack trace: need libunwind (see INSTALL file)
/external/openssh/regress/
H A Dbroken-pipe.sh7 trace "protocol $p"
H A Denvpass.sh15 trace "pass env, don't accept"
26 trace "don't pass env, accept"
37 trace "pass single env, accept single env"
48 trace "pass multiple env, accept multiple env"
H A Dkeyscan.sh12 trace "keyscan type $t"
H A Dagent-ptrace.sh31 trace "start agent"
51 trace "kill agent"
H A Dlogin-timeout.sh6 trace "test login grace with privsep"
20 trace "test login grace without privsep"
H A Dproto-mismatch.sh12 trace "sshd prints ${banner}"
H A Ddynamic-forward.sh18 trace "will use ProxyCommand $proxycmd"
25 trace "start dynamic forwarding, fork to background"
33 trace "forward failed proto $p attempt $n err $error"
43 trace "testing ssh protocol $p socks version $s host $h"
54 trace "terminate remote shell, pid $remote"
H A Dforwarding.sh24 trace "start forwarding, fork to background"
27 trace "transfer over forwarded channels and check result"
38 trace "exit on -$d forward failure, proto $p"
67 trace "simple clear forwarding proto $p"
70 trace "clear local forward proto $p"
83 trace "clear remote forward proto $p"
98 trace "stdio forwarding proto $p"
H A Dforcecommand.sh14 trace "forced command in key option proto $p"
28 trace "forced command in sshd_config overrides key option proto $p"
39 trace "forced command with match proto $p"
H A Dtry-ciphers.sh16 trace "proto 2 cipher $c mac $m"
27 trace "proto 1 cipher $c"
43 trace "proto 2 $c mac $m"
H A Dcipher-speed.sh24 trace "proto 2 cipher $c mac $m"
40 trace "proto 1 cipher $c"
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DExceptionExtensions.cs48 StackTrace trace = new StackTrace(e, true);
49 StackFrame[] frames = trace.GetFrames();
51 // don't include this helper function in the trace
75 string trace = e.StackTrace ?? string.Empty;
76 foreach (string line in trace.Split('\n', '\r')) {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DExceptionExtensions.cs53 StackTrace trace = new StackTrace( e, true );
54 StackFrame[] frames = trace.GetFrames();
57 // don't include this helper function in the trace
84 string trace = e.StackTrace ?? string.Empty;
85 foreach ( string line in trace.Split( '\n', '\r' ) )
/external/chromium_org/third_party/angle/src/compiler/
H A Ddebug.cpp32 parseContext->trace(buf);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/
H A DMakefile4 LIBNAME = trace
/external/junit/src/junit/runner/
H A DTestRunListener.java19 public void testFailed(int status, String testName, String trace); argument
/external/mesa3d/src/gallium/drivers/trace/
H A DMakefile4 LIBNAME = trace
/external/compiler-rt/lib/msan/
H A Dmsan_report.cc47 static void PrintStack(const uptr *trace, uptr size) { argument
49 StackTrace::PrintStack(trace, size, true,
70 const uptr *trace = StackDepotGet(origin, &size); local
73 PrintStack(trace, size);
80 uptr pc = StackTrace::GetPreviousInstructionPc(stack->trace[0]);
100 PrintStack(stack->trace, stack->size);
111 PrintStack(stack->trace, stack->size);
/external/chromium-trace/trace-viewer/src/tcmalloc/
H A Dtcmalloc_snapshot_view.css41 .trace-bytes {
49 .trace-allocs {
57 .trace-name {
/external/apache-http/src/org/apache/commons/logging/
H A DLog.java28 * <li>trace (the least serious)</li>
117 * <p> Is trace logging currently enabled? </p>
121 * when the log level is more than trace. </p>
123 * @return true if trace is enabled in the underlying logger.
144 * <p> Log a message with trace log level. </p>
148 public void trace(Object message); method in interface:Log
152 * <p> Log an error with trace log level. </p>
157 public void trace(Object message, Throwable t); method in interface:Log
/external/apache-http/src/org/apache/commons/logging/impl/
H A DNoOpLog.java40 public void trace(Object message) { } method in class:NoOpLog
42 public void trace(Object message, Throwable t) { } method in class:NoOpLog

Completed in 250 milliseconds

1234567891011>>