HomeSort by relevance Sort by last modified time
    Searched full:tracename (Results 1 - 18 of 18) 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/Source/platform/scheduler/
TracedTask.cpp 23 TracedTask::TracedTask(const Task& task, const TraceLocation& location, const char* traceName)
26 , m_traceName(traceName)
TracedTask.h 30 TracedTask(const Task&, const TraceLocation&, const char* traceName);
Scheduler.cpp 79 const Scheduler::Task& task, const TraceLocation& location, const char* traceName)
80 : m_task(task, location, traceName)
150 void Scheduler::postHighPriorityTaskInternal(const TraceLocation& location, const Task& task, const char* traceName)
154 m_pendingHighPriorityTasks.append(TracedTask(task, location, traceName));
Scheduler.h 77 void postHighPriorityTaskInternal(const TraceLocation&, const Task&, const char* 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 48 final String traceName = getFileName();
57 Debug.startMethodTracing(traceName);
61 Debug.startMethodTracing(traceName, bufSize);
65 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]
279 if 'high' not in trace_values[tracename]:
286 regress = (float(trace_values[tracename]['high']) -
288 improve = (float(trace_values[tracename]['low']) -
293 regress = float(trace_values[tracename]['high'])
294 improve = float(trace_values[tracename]['low'])
  /frameworks/base/core/java/android/os/
Debug.java 593 * @param traceName Name for the trace log file to create.
594 * If {@code traceName} is null, this value defaults to "/sdcard/dmtrace.trace".
598 public static void startMethodTracing(String traceName) {
599 startMethodTracing(traceName, 0, 0);
608 * @param traceName Name for the trace log file to create.
609 * If {@code traceName} is null, this value defaults to "/sdcard/dmtrace.trace".
615 public static void startMethodTracing(String traceName, int bufferSize) {
616 startMethodTracing(traceName, bufferSize, 0);
637 * @param traceName Name for the trace log file to create.
638 * If {@code traceName} is null, this value defaults to "/sdcard/dmtrace.trace"
    [all...]
  /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/av/services/audioflinger/
FastMixer.cpp 370 char traceName[16];
371 strcpy(traceName, "fRdy");
372 traceName[4] = i + (i < 10 ? '0' : 'A' - 10);
373 traceName[5] = '\0';
374 ATRACE_INT(traceName, framesReady);
  /external/qemu/android/avd/
info.c 1151 avdInfo_getTracePath( AvdInfo* i, const char* traceName )
1155 if (i == NULL || traceName == NULL || traceName[0] == 0)
1160 i->androidOut, traceName );
1163 i->contentPath, traceName );
    [all...]