Constructs a new native library map info.paramstartAddr The start address of the library.paramendAddr The end address of the library.paramlibrary The name of the library. this.mStartAddr = startAddr; this.mEndAddr = endAddr; this.mLibrary = library;
this.mStartAddr = startAddr; this.mEndAddr = endAddr; this.mLibrary = library;
Returns the end address of the library. return mEndAddr;
return mEndAddr;
Returns the name of the library. return mLibrary;
return mLibrary;
Returns the start address of the library. return mStartAddr;
return mStartAddr;
Returns whether the specified address is inside the library.paramaddress The address to test.returntrue if the address is between the start and end address of the library.see#getStartAddress()see#getEndAddress() return address >= mStartAddr && address <= mEndAddr;
true
return address >= mStartAddr && address <= mEndAddr;