Everything

ActionInfo


This class holds result information of the action event (return value of the debugger.ActionEvent.Get function).

[Type]

class ActionEventInfo:
        Number = 0
        Name = ""
        Address = ""
        Output = ""
        Expression = ""
        ActionEventType = ActionEventType.Printf
        HostDate = ""

[Variable]

Variable

Description

Number

This holds the action event number (numerical value).

Name

This holds the name of the action event (string).

Address

This holds the address of the action event.

Output

This holds the string to be attached at output.

Expression

This holds the variable expression (string).

ActionEventType

This holds the type of the action event.

Type

Description

ActionEventType.Printf

Printf event

HostDate

This holds the time in the host PC when an action event occurred.

Take account of the time being that in the host PC.

[Detailed description]

-

ActionInfo is a class, and it is passed as the return value when the debugger.ActionEvent.Get function is executed.

[Example of use]

>>>ae = ActionEventCondition()
>>>ae.Address = "main"
>>>ae.Output = "result "
>>>ae.Expression = "chData"
>>>ae.ActionEventType = ActionEventType.Printf
>>>ae_number = debugger.ActionEvent.Set(ae)
        :
>>>out = debugger.ActionEvent.Get()
result chData=0x64
result chData=0x65
result chData=0x66
>>>print out[0].Address
main