StructDlInfo


public final class StructDlInfo
extends Object

java.lang.Object
   ↳ android.system.StructDlInfo


Corresponds to C's struct Dl_info.

Summary

Fields

public final long dli_fbase

Base address at which shared object is loaded

public final String dli_fname

Pathname of shared object that contains address

public final long dli_saddr

Exact address of symbol named in dli_sname

public final String dli_sname

Name of symbol whose definition overlaps addr

Public constructors

StructDlInfo(String dli_fname, long dli_fbase, String dli_sname, long dli_saddr)

Public methods

String toString()

Returns a string representation of the object.

Inherited methods

Fields

dli_fbase

public final long dli_fbase

Base address at which shared object is loaded

dli_fname

public final String dli_fname

Pathname of shared object that contains address

dli_saddr

public final long dli_saddr

Exact address of symbol named in dli_sname

dli_sname

public final String dli_sname

Name of symbol whose definition overlaps addr

Public constructors

StructDlInfo

public StructDlInfo (String dli_fname, 
                long dli_fbase, 
                String dli_sname, 
                long dli_saddr)

Parameters
dli_fname String

dli_fbase long

dli_sname String

dli_saddr long

Public methods

toString

public String toString ()

Returns a string representation of the object.

Returns
String a string representation of the object.