telemetry.core.timeline.slice
index
telemetry/core/timeline/slice.py

# Copyright 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

 
Modules
       
telemetry.core.timeline.event

 
Classes
       
telemetry.core.timeline.event.TimelineEvent(__builtin__.object)
Slice

 
class Slice(telemetry.core.timeline.event.TimelineEvent)
    Slice represents an interval of time plus parameters associated
with that interval.
 
NOTE: The Sample class implements the same interface as
Slice. These must be kept in sync.
 
All time units are stored in milliseconds.
 
 
Method resolution order:
Slice
telemetry.core.timeline.event.TimelineEvent
__builtin__.object

Methods defined here:
AddSubSlice(self, sub_slice)
GetAllSubSlices(self)
GetAllSubSlicesOfName(self, name)
IterEventsInThisContainerRecrusively(self)
__init__(self, category, name, timestamp, args=None, parent=None, duration=0)

Data descriptors defined here:
self_time
Time spent in this function less any time spent in child events.

Methods inherited from telemetry.core.timeline.event.TimelineEvent:
__repr__(self)

Data descriptors inherited from telemetry.core.timeline.event.TimelineEvent:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)
end