telemetry.core.timeline.tracing.async_slice
index
telemetry/core/timeline/tracing/async_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.tracing.slice

 
Classes
       
telemetry.core.timeline.tracing.slice.Slice(telemetry.core.timeline.event.TimelineEvent)
AsyncSlice

 
class AsyncSlice(telemetry.core.timeline.tracing.slice.Slice)
    AsyncSlice represents an interval of time during which an
asynchronous operation is in progress. An AsyncSlice consumes no CPU time
itself and so is only associated with Threads at its start and end point.
 
 
Method resolution order:
AsyncSlice
telemetry.core.timeline.tracing.slice.Slice
telemetry.core.timeline.event.TimelineEvent
__builtin__.object

Methods defined here:
AddSubSlice(self, sub_slice)
__init__(self, category, name, timestamp, args=None, parent=None)

Data descriptors defined here:
sub_slices

Methods inherited from telemetry.core.timeline.event.TimelineEvent:
GetAllChildrenRecursive(self, include_self=False)
ShiftTimestampsForward(self, delta_time)
Shifts start time of event by delta_time and also
recursively shifts child events.
UpdateBounds(self)
Updates the start time to be the minimum start time of all
child events and the end time to be the maximum end time of all
child events.
__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
self_time
Time spent in this function less any time spent in child events.