brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.1 KiB · 5e5cd74 Raw
31 lines · plain
1%feature("docstring", "2    Get const accessor for the module file.3 4    This function returns the file for the module on the host system5    that is running LLDB. This can differ from the path on the6    platform since we might be doing remote debugging.7 8    @return9        A const reference to the file specification object."10) lldb::SBModuleSpec::GetFileSpec;11 12%feature("docstring", "13    Get accessor for the module platform file.14 15    Platform file refers to the path of the module as it is known on16    the remote system on which it is being debugged. For local17    debugging this is always the same as Module::GetFileSpec(). But18    remote debugging might mention a file '/usr/lib/liba.dylib'19    which might be locally downloaded and cached. In this case the20    platform file could be something like:21    '/tmp/lldb/platform-cache/remote.host.computer/usr/lib/liba.dylib'22    The file could also be cached in a local developer kit directory.23 24    @return25        A const reference to the file specification object."26) lldb::SBModuleSpec::GetPlatformFileSpec;27 28%feature("docstring",29"Represents a list of :py:class:`SBModuleSpec`."30) lldb::SBModuleSpecList;31