HomeSort by relevance Sort by last modified time
    Searched refs:trace (Results 376 - 400 of 1247) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/rc_binomial_heap_/
rc.hpp 112 trace() const;
229 trace() const
  /system/core/libcutils/
Android.mk 55 trace-host.c \
103 trace-dev.c \
  /system/keymaster/
Android.mk 36 LOCAL_CLANG_CFLAGS += -fno-sanitize-coverage=edge,indirect-calls,8bit-counters,trace-cmp
92 LOCAL_CLANG_CFLAGS += -fno-sanitize-coverage=edge,indirect-calls,8bit-counters,trace-cmp
129 LOCAL_CLANG_CFLAGS += -fno-sanitize-coverage=edge,indirect-calls,8bit-counters,trace-cmp
172 LOCAL_CLANG_CFLAGS += -fno-sanitize-coverage=edge,indirect-calls,8bit-counters,trace-cmp
  /art/runtime/gc/
allocation_record.cc 74 // Check whether there's a system property overriding the max depth of stack trace.
267 // Get stack trace outside of lock in case there are allocations during the stack walk.
269 AllocRecordStackTrace trace; local
270 AllocRecordStackVisitor visitor(self, max_stack_depth_, /*out*/ &trace);
304 trace.SetTid(self->GetTid());
307 Put(*obj, AllocRecord(byte_count, (*obj)->GetClass(), std::move(trace)));
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/
CtsXmlResultReporterTest.java 176 final String trace = "this is a trace\nmore trace\nyet more trace"; local
181 mResultReporter.testFailed(testId, trace);
192 "<FailedScene message=\"this is a trace&#10;more trace\"> " +
193 "<StackTrace>this is a tracemore traceyet more trace</StackTrace>";
208 final String trace = "this is a trace\nmore trace\nyet more trace" local
    [all...]
  /external/blktrace/btt/
Makefile 17 misc.o output.o proc.o seek.o trace.o trace_complete.o trace_im.o \
  /external/chromium-trace/catapult/perf_insights/perf_insights/endpoints/
upload.py 31 <head><title>Performance Insights - Trace Uploader</title></head>
33 <div><input type="file" name="trace"/></div>
48 gcs_file.write(self.request.get('trace'))
  /external/chromium-trace/catapult/telemetry/telemetry/internal/results/
page_test_results.py 21 from telemetry.value import trace namespace
35 trace_tag: A string to append to the buildbot trace name. Currently only
38 artifacts, e.g: trace, videos,...
41 or trace.TraceValue) and a boolean (True when the value is part of
147 if isinstance(v, trace.TraceValue):
180 isinstance(value, trace.TraceValue) or
206 # Only serialize the trace if output_format is json.
239 return self.FindValues(lambda v: isinstance(v, trace.TraceValue))
242 """ Serialize all trace values to files in dir_path and return a list of
html_output_formatter.py 96 def _PrintPerfResult(self, measurement, trace, values, units,
99 if trace != measurement:
100 metric_name += '.' + trace
126 if value_dict['type'] == 'trace':
  /external/jdiff/src/jdiff/
Options.java 152 if (trace)
157 if (trace)
161 if (trace)
442 private static boolean trace = false; field in class:Options
MergeChanges.java 113 if (trace && ctorDiff.modifiersChange_ != null)
173 if (trace) {
251 if (trace) {
331 if (trace) {
341 private static boolean trace = false; field in class:MergeChanges
  /external/v8/tools/
ll_prof.py 55 This will produce a binary trace file (perf.data) that %prog can analyse.
77 $ %prog --log=foo.log --snapshot-log=snap-foo.log --trace=foo.data --snapshot
503 """Descriptor of a structure in the binary trace log."""
521 def Read(self, trace, offset):
522 return self.ctype.from_buffer(trace, offset)
638 """Perf (linux-2.6/tools/perf) trace file reader."""
644 self.trace = mmap.mmap(self.trace_file.fileno(), 0, mmap.MAP_PRIVATE)
645 self.trace_header = TRACE_HEADER_DESC.Read(self.trace, 0)
647 print >>sys.stderr, "Warning: unsupported trace header magic"
650 assert self.limit <= self.trace.size(),
    [all...]
  /external/valgrind/auxprogs/
gsl16test 104 (cd gsl-1.6-patched && for f in $ALL_TESTS ; do eval $GSL_VV -v --trace-children=yes "$GSL_VFLAGS" ./$f ; done) &> out-VAL
gsl19test 109 do GSL_TEST_VERBOSE=1 eval $GSL_VV -v --trace-children=yes "$GSL_VFLAGS" ./$f ; done) &> out-V
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/
VertexAttribPointerDataDetailProvider.java 59 public void updateControl(GLTrace trace, GLCall call) {
  /art/test/439-npe/src/
Main.java 216 StackTraceElement[] trace = npe.getStackTrace(); local
217 checkElement(trace[0], "Main", methodName, "Main.java", medthodLine);
218 checkElement(trace[1], "Main", "main", "Main.java", mainLine);
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
Test.java 176 private static String sanitizeStackTrace(String trace) {
177 if (trace != null) {
178 return trace.replaceAll("[^\\u0009\\u000A\\u000D\\u0020-\\uD7FF\\uE000-\\uFFFD]", "");
185 * Gets the failure message to show from the stack trace.
189 * @param stack the full stack trace
  /external/antlr/antlr-3.4/antlr3-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
Antlr3Mojo.java 125 protected boolean trace; field in class:Antlr3Mojo
284 log.debug("ANTLR: trace : " + trace);
321 tool.setTrace(trace);
  /libcore/ojluni/src/main/java/java/util/logging/
XMLFormatter.java 198 StackTraceElement trace[] = th.getStackTrace(); local
199 for (int i = 0; i < trace.length; i++) {
200 StackTraceElement frame = trace[i];
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_doctest.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_doctest.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_doctest.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_doctest.py     [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
msp430-decode.c 31 static int trace = 0; variable
365 if (trace)
389 if (trace)
413 if (trace)
437 if (trace)
464 if (trace)
491 if (trace)
515 if (trace)
539 if (trace)
563 if (trace)
    [all...]
  /external/slf4j/slf4j-jdk14/src/main/java/org/slf4j/impl/
JDK14LoggerAdapter.java 74 public void trace(String msg) { method in class:JDK14LoggerAdapter
94 public void trace(String format, Object arg) { method in class:JDK14LoggerAdapter
117 public void trace(String format, Object arg1, Object arg2) { method in class:JDK14LoggerAdapter
138 public void trace(String format, Object... argArray) { method in class:JDK14LoggerAdapter
153 public void trace(String msg, Throwable t) { method in class:JDK14LoggerAdapter

Completed in 3228 milliseconds

<<11121314151617181920>>