StructDlInfo


class StructDlInfo
kotlin.Any
   ↳ android.system.StructDlInfo

Corresponds to C's struct Dl_info.

Summary

Public constructors
StructDlInfo(dli_fname: String!, dli_fbase: Long, dli_sname: String!, dli_saddr: Long)

Public methods
String

Properties
Long

Base address at which shared object is loaded

String!

Pathname of shared object that contains address

Long

Exact address of symbol named in dli_sname

String!

Name of symbol whose definition overlaps addr

Public constructors

StructDlInfo

StructDlInfo(
    dli_fname: String!,
    dli_fbase: Long,
    dli_sname: String!,
    dli_saddr: Long)

Public methods

toString

fun toString(): String
Return
String a string representation of the object.

Properties

dli_fbase

val dli_fbase: Long

Base address at which shared object is loaded

dli_fname

val dli_fname: String!

Pathname of shared object that contains address

dli_saddr

val dli_saddr: Long

Exact address of symbol named in dli_sname

dli_sname

val dli_sname: String!

Name of symbol whose definition overlaps addr