com.android.ddmlib
Class NativeLibraryMapInfo

java.lang.Object
  extended by com.android.ddmlib.NativeLibraryMapInfo

public final class NativeLibraryMapInfo
extends Object

Memory address to library mapping for native libraries.

Each instance represents a single native library and its start and end memory addresses.


Method Summary
 long getEndAddress()
          Returns the end address of the library.
 String getLibraryName()
          Returns the name of the library.
 long getStartAddress()
          Returns the start address of the library.
 boolean isWithinLibrary(long address)
          Returns whether the specified address is inside the library.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getLibraryName

public String getLibraryName()
Returns the name of the library.


getStartAddress

public long getStartAddress()
Returns the start address of the library.


getEndAddress

public long getEndAddress()
Returns the end address of the library.


isWithinLibrary

public boolean isWithinLibrary(long address)
Returns whether the specified address is inside the library.

Parameters:
address - The address to test.
Returns:
true if the address is between the start and end address of the library.
See Also:
getStartAddress(), getEndAddress()


Copyright © 2008-2012. All Rights Reserved.