PTP
Release 5.0

org.eclipse.ptp.debug.core.pdi
Interface IPDIMemoryBlockManagement

All Known Subinterfaces:
IPDIDebugger

public interface IPDIMemoryBlockManagement

The memory manager manages the collection of memory blocks specified for the debug session.


Method Summary
 void createDataReadMemory(TaskSet tasks, long offset, java.lang.String address, int wordFormat, int wordSize, int rows, int cols, java.lang.Character asChar)
          Requests to create data read memory
 void createDataWriteMemory(TaskSet tasks, long offset, java.lang.String address, int wordFormat, int wordSize, java.lang.String value)
          Requests to create data write memory
 

Method Detail

createDataReadMemory

void createDataReadMemory(TaskSet tasks,
                          long offset,
                          java.lang.String address,
                          int wordFormat,
                          int wordSize,
                          int rows,
                          int cols,
                          java.lang.Character asChar)
                          throws PDIException
Requests to create data read memory

Parameters:
tasks - target process
offset -
address -
wordFormat - HEXADECIMAL || OCTAL || BINARY || DECIMAL || RAW || NATURAL
wordSize - The size of each memory word in bytes
rows -
cols -
asChar -
Throws:
PDIException - on failure
Since:
4.0

createDataWriteMemory

void createDataWriteMemory(TaskSet tasks,
                           long offset,
                           java.lang.String address,
                           int wordFormat,
                           int wordSize,
                           java.lang.String value)
                           throws PDIException
Requests to create data write memory

Parameters:
tasks - target process
offset -
address -
wordFormat - HEXADECIMAL || OCTAL || BINARY || DECIMAL || RAW || NATURAL
wordSize -
value -
Throws:
PDIException
Since:
4.0

PTP
Release 5.0

Copyright (c) 2011 IBM Corporation and others. All Rights Reserved.