Public Member Functions | Package Functions

com.google.security.zynamics.binnavi.API.debug.MemoryListenerAdapter Class Reference

Inheritance diagram for com.google.security.zynamics.binnavi.API.debug.MemoryListenerAdapter:
com.google.security.zynamics.binnavi.API.debug.IMemoryListener

List of all members.

Public Member Functions

void clearedMemory (Memory memory)

Package Functions

void changedMemory (Memory memory, long address, int size)

Detailed Description

Adapter class that can be used by objects that want to listen on target process memory but only need to process few events.


Member Function Documentation

void com.google.security.zynamics.binnavi.API.debug.IMemoryListener.changedMemory ( Memory  memory,
long  address,
int  size 
) [package, inherited]

Invoked after a part of the target process memory changed. This event is generally invoked when BinNavi receives memory data from the debug client.

Parameters:
memory The memory which changed.
address Start address of the changed memory section.
size Number of bytes that were changed.
void com.google.security.zynamics.binnavi.API.debug.IMemoryListener.clearedMemory ( Memory  memory  )  [inherited]

Invoked after the target process memory was cleared. This event is generally invoked when the debug client detaches from the target process and the known target process memory is reset.

Parameters:
memory The memory which was cleared.