class documentation

class AccessEvent(Event):

View In Hierarchy

Event that occurs when an existing slice that matches the pattern is read in the trace.

The associated Match is never created by the event.

Method __init__ Undocumented
Method __str__ Returns the nicely printable string representation of this instance.
Method format_as_html This method gets an html formatting string representation for this class instance.
Property access Property: The reven2.memhist.MemoryAccess corresponding to the read access to the Match.
Method _repr_html_ Representation used by Jupyter Notebook when an instance of this class is displayed in a cell.
Instance Variable _access_offset Undocumented
Instance Variable _access_size Undocumented
Instance Variable _virtual_address Undocumented

Inherited from Event:

Method current_matches The current state of the Matches when this event has been produced by the search.
Property match Property: Match object that was modified by this Event.
Property transition Property: reven2.trace.Transition where the event occurred.
Instance Variable _current_matches Undocumented
Instance Variable _match Undocumented
Instance Variable _transition Undocumented
def __init__(self, event_match, transition, current_matches, virtual_address, access_offset, access_size):
def __str__(self):

Returns the nicely printable string representation of this instance.

Returns
strUndocumented
def format_as_html(self):

This method gets an html formatting string representation for this class instance.

Information

Returns
String
@property
access =

Property: The reven2.memhist.MemoryAccess corresponding to the read access to the Match.

def _repr_html_(self):

Representation used by Jupyter Notebook when an instance of this class is displayed in a cell.

_access_offset =

Undocumented

_access_size =

Undocumented

_virtual_address =

Undocumented