SBModuleSpec#

class lldb.SBModuleSpec(*args)#

Proxy of C++ lldb::SBModuleSpec class.

Methods Summary

Clear(SBModuleSpec self)

GetDescription(SBModuleSpec self, ...)

GetFileSpec(SBModuleSpec self)

Get const accessor for the module file.

GetObjectName(SBModuleSpec self)

GetObjectOffset(SBModuleSpec self)

GetObjectSize(SBModuleSpec self)

GetPlatformFileSpec(SBModuleSpec self)

Get accessor for the module platform file.

GetSymbolFileSpec(SBModuleSpec self)

GetTriple(SBModuleSpec self)

GetUUIDBytes(SBModuleSpec self)

GetUUIDLength(SBModuleSpec self)

IsValid(SBModuleSpec self)

SetFileSpec(SBModuleSpec self, SBFileSpec fspec)

SetObjectName(SBModuleSpec self, ...)

SetObjectOffset(SBModuleSpec self, ...)

SetObjectSize(SBModuleSpec self, ...)

SetPlatformFileSpec(SBModuleSpec self, ...)

SetSymbolFileSpec(SBModuleSpec self, ...)

SetTriple(SBModuleSpec self, char const * triple)

SetUUIDBytes(SBModuleSpec self, ...)

Methods Documentation

Clear(SBModuleSpec self)#
GetDescription(SBModuleSpec self, SBStream description) bool#
GetFileSpec(SBModuleSpec self) SBFileSpec#

Get const accessor for the module file.

This function returns the file for the module on the host system that is running LLDB. This can differ from the path on the platform since we might be doing remote debugging.

@return

A const reference to the file specification object.

GetObjectName(SBModuleSpec self) char const *#
GetObjectOffset(SBModuleSpec self) uint64_t#
GetObjectSize(SBModuleSpec self) uint64_t#
GetPlatformFileSpec(SBModuleSpec self) SBFileSpec#

Get accessor for the module platform file.

Platform file refers to the path of the module as it is known on the remote system on which it is being debugged. For local debugging this is always the same as Module::GetFileSpec(). But remote debugging might mention a file ‘/usr/lib/liba.dylib’ which might be locally downloaded and cached. In this case the platform file could be something like: ‘/tmp/lldb/platform-cache/remote.host.computer/usr/lib/liba.dylib’ The file could also be cached in a local developer kit directory.

@return

A const reference to the file specification object.

GetSymbolFileSpec(SBModuleSpec self) SBFileSpec#
GetTriple(SBModuleSpec self) char const *#
GetUUIDBytes(SBModuleSpec self) uint8_t const *#
GetUUIDLength(SBModuleSpec self) size_t#
IsValid(SBModuleSpec self) bool#
SetFileSpec(SBModuleSpec self, SBFileSpec fspec)#
SetObjectName(SBModuleSpec self, char const * name)#
SetObjectOffset(SBModuleSpec self, uint64_t object_offset)#
SetObjectSize(SBModuleSpec self, uint64_t object_size)#
SetPlatformFileSpec(SBModuleSpec self, SBFileSpec fspec)#
SetSymbolFileSpec(SBModuleSpec self, SBFileSpec fspec)#
SetTriple(SBModuleSpec self, char const * triple)#
SetUUIDBytes(SBModuleSpec self, uint8_t const * uuid, size_t uuid_len) bool#