HomeSort by relevance Sort by last modified time
    Searched full:tracename (Results 1 - 17 of 17) sorted by null

  /external/chromium-trace/trace-viewer/src/tcmalloc/
tcmalloc_snapshot_view.js 74 var traceName = keys[i];
75 var trace = heapEntry.children[traceName];
82 traceName, isLeaf, trace.currentBytes, trace.currentAllocs);
92 * Returns a <li> for an allocation traceName of size bytes.
94 buildItem_: function(traceName, isLeaf, bytes, allocs) {
97 myItem.id = traceName;
104 if (traceName.length == 0) {
109 traceName = '(here)';
110 } else if (traceName.indexOf('..') == 0) {
113 var lastSlash = traceName.lastIndexOf('/')
    [all...]
heap.js 59 var traceName = traceNames[j];
62 if (traceName.length != 0) {
70 if (!heapEntry.children[traceName]) {
72 heapEntry.children[traceName] = {
81 heapEntry = heapEntry.children[traceName];
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
collector.py 64 tracename = self.should_trace_cache.get(filename)
65 if tracename is None:
66 tracename = self.should_trace(filename, frame)
67 self.should_trace_cache[filename] = tracename
68 #print("called, stack is %d deep, tracename is %r" % (
69 # len(self.data_stack), tracename))
70 if tracename:
71 if tracename not in self.data:
72 self.data[tracename] = {}
73 self.cur_file_data = self.data[tracename]
    [all...]
tracer.c 259 PyObject * tracename = NULL; local
329 tracename = PyDict_GetItem(self->should_trace_cache, filename);
330 if (tracename == NULL) {
335 tracename = PyObject_Call(self->should_trace, args, NULL);
337 if (tracename == NULL) {
342 if (PyDict_SetItem(self->should_trace_cache, filename, tracename) < 0) {
348 Py_INCREF(tracename);
351 /* If tracename is a string, then we're supposed to trace. */
352 if (MyText_Check(tracename)) {
353 PyObject * file_data = PyDict_GetItem(self->data, tracename);
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
DebugTest.java 47 final String traceName = getFileName();
56 Debug.startMethodTracing(traceName);
60 Debug.startMethodTracing(traceName, bufSize);
64 Debug.startMethodTracing(traceName, bufSize, debug_flag);
  /external/chromium_org/tools/perf_expectations/
make_expectations.py 208 # Get the system/test/graph/tracename and reftracename for the current key.
216 tracename = matchData.group(4)
217 reftracename = tracename + '_ref'
234 traces = [tracename]
274 if 'high' not in trace_values[tracename]:
281 regress = (float(trace_values[tracename]['high']) -
283 improve = (float(trace_values[tracename]['low']) -
288 regress = float(trace_values[tracename]['high'])
289 improve = float(trace_values[tracename]['low'])
  /external/chromium_org/chrome/test/functional/perf/endure_graphs/
endure_plotter.js 286 var traceName = null;
288 if (traceName) {
293 traceName = t;
295 var traceList = [traceName];
299 for (var i = 0, traceName; traceName = traceList[i]; ++i) {
300 var trace = row.traces[traceName];
311 dataDescriptions.push(traceName + ' [r' + row.revision + ']');
  /external/chromium_org/third_party/mesa/src/docs/OLD/
MESA_trace.spec 109 void NewTraceMESA( bitfield mask, const ubyte * traceName )
178 void NewTraceMESA( bitfield mask, const GLubyte * traceName )
184 <traceName> specifies a name or label for the trace. It is expected
185 that <traceName> will be interpreted as a filename in most implementations.
  /external/mesa3d/docs/OLD/
MESA_trace.spec 109 void NewTraceMESA( bitfield mask, const ubyte * traceName )
178 void NewTraceMESA( bitfield mask, const GLubyte * traceName )
184 <traceName> specifies a name or label for the trace. It is expected
185 that <traceName> will be interpreted as a filename in most implementations.
  /frameworks/base/core/java/android/os/
Debug.java 591 * @param traceName Name for the trace log file to create.
596 public static void startMethodTracing(String traceName) {
597 startMethodTracing(traceName, 0, 0);
606 * @param traceName Name for the trace log file to create.
613 public static void startMethodTracing(String traceName, int bufferSize) {
614 startMethodTracing(traceName, bufferSize, 0);
634 * @param traceName Name for the trace log file to create.
640 public static void startMethodTracing(String traceName, int bufferSize,
643 String pathName = traceName;
661 public static void startMethodTracing(String traceName, FileDescriptor fd
    [all...]
  /sdk/emulator/qtools/
trace_reader_base.h 124 const char *tracename, TraceHeader *header);
trace_reader.cpp 690 const char *tracename, TraceHeader *header)
700 filename, tracename);
707 tracename, header->version, TRACE_VERSION);
    [all...]
  /external/qemu/android/avd/
info.c 1048 avdInfo_getTracePath( AvdInfo* i, const char* traceName )
1052 if (i == NULL || traceName == NULL || traceName[0] == 0)
1057 i->androidOut, traceName );
1060 i->contentPath, traceName );
    [all...]
info.h 244 char* avdInfo_getTracePath( AvdInfo* i, const char* traceName );
  /frameworks/av/services/audioflinger/
FastMixer.cpp 433 char traceName[16];
434 strcpy(traceName, "fRdy");
435 traceName[4] = i + (i < 10 ? '0' : 'A' - 10);
436 traceName[5] = '\0';
437 ATRACE_INT(traceName, framesReady);
    [all...]
  /build/
envsetup.sh 1061 echo "usage: tracedmdump tracename"
    [all...]
  /prebuilts/devtools/tools/lib/
traceview.jar 

Completed in 1576 milliseconds