Stay organized with collections
Save and categorize content based on your preferences.
StructDlInfo
class StructDlInfo
Corresponds to C's struct Dl_info
.
Summary
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
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-08-20 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-20 UTC."],[],[],null,["# StructDlInfo\n\nAdded in [API level Baklava](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nStructDlInfo\n============\n\n*** ** * ** ***\n\nKotlin \\|[Java](/reference/android/system/StructDlInfo \"View this page in Java\") \n\n```\nclass StructDlInfo\n```\n\n|---|----------------------------------|\n| [kotlin.Any](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html) ||\n| ↳ | [android.system.StructDlInfo](#) |\n\nCorresponds to C's `struct Dl_info`.\n\nSummary\n-------\n\n| Public constructors ||\n|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---|\n| [StructDlInfo](#StructDlInfo(kotlin.String,%20kotlin.Long,%20kotlin.String,%20kotlin.Long))`(`dli_fname:` `[String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)!`, `dli_fbase:` `[Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`, `dli_sname:` `[String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)!`, `dli_saddr:` `[Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html)`)` \u003cbr /\u003e |\n\n| Public methods ||\n|----------------------------------------------------------------------------------|------------------------------------|\n| [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) | [toString](#toString())`()` \u003cbr /\u003e |\n\n| Properties ||\n|-----------------------------------------------------------------------------------|---------------------------------------------------------------------------------------|\n| [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) | [dli_fbase](#dli_fbase:kotlin.Long) Base address at which shared object is loaded |\n| [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)! | [dli_fname](#dli_fname:kotlin.String) Pathname of shared object that contains address |\n| [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) | [dli_saddr](#dli_saddr:kotlin.Long) Exact address of symbol named in dli_sname |\n| [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)! | [dli_sname](#dli_sname:kotlin.String) Name of symbol whose definition overlaps addr |\n\nPublic constructors\n-------------------\n\n### StructDlInfo\n\nAdded in [API level Baklava](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nStructDlInfo(\n dli_fname: String!, \n dli_fbase: Long, \n dli_sname: String!, \n dli_saddr: Long)\n```\n\nPublic methods\n--------------\n\n### toString\n\nAdded in [API level Baklava](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nfun toString(): String\n```\n\n| Return ||\n|----------------------------------------------------------------------------------|----------------------------------------|\n| [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) | a string representation of the object. |\n\nProperties\n----------\n\n### dli_fbase\n\nAdded in [API level Baklava](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nval dli_fbase: Long\n```\n\nBase address at which shared object is loaded \n\n### dli_fname\n\nAdded in [API level Baklava](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nval dli_fname: String!\n```\n\nPathname of shared object that contains address \n\n### dli_saddr\n\nAdded in [API level Baklava](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nval dli_saddr: Long\n```\n\nExact address of symbol named in dli_sname \n\n### dli_sname\n\nAdded in [API level Baklava](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nval dli_sname: String!\n```\n\nName of symbol whose definition overlaps addr"]]