Lines Matching +full:on +full:- +full:module

4 The module is designed to be able to select a single slice of an
5 executable image as it would appear on disk and during program
13 for symbol in module:
21 print('This module is the same as that module')
23 to test module equality. A module also contains object file sections, namely
27 print('Number of sections: %d' % module.GetNumSections())
28 for sec in module.section_iter():
33 # Iterates the text section and prints each symbols within each sub-section.
42 [0x0000000100001780-0x0000000100001d5c) a.out.__TEXT.__text
43 …4}, name = 'mask_access(MaskAction, unsigned int)', range = [0x00000001000017c0-0x0000000100001870)
45 … id = {0x00000008}, name = 'thread_func(void*)', range = [0x0000000100001870-0x00000001000019b0)
47 id = {0x0000000c}, name = 'main', range = [0x00000001000019b0-0x0000000100001d5c)
51 [0x0000000100001d5c-0x0000000100001da4) a.out.__TEXT.__stubs
52 … id = {0x00000024}, name = '__stack_chk_fail', range = [0x0000000100001d5c-0x0000000100001d62)
54 id = {0x00000028}, name = 'exit', range = [0x0000000100001d62-0x0000000100001d68)
56 id = {0x00000029}, name = 'fflush', range = [0x0000000100001d68-0x0000000100001d6e)
58 id = {0x0000002a}, name = 'fgets', range = [0x0000000100001d6e-0x0000000100001d74)
60 id = {0x0000002b}, name = 'printf', range = [0x0000000100001d74-0x0000000100001d7a)
62 id = {0x0000002c}, name = 'pthread_create', range = [0x0000000100001d7a-0x0000000100001d80)
64 id = {0x0000002d}, name = 'pthread_join', range = [0x0000000100001d80-0x0000000100001d86)
66 … id = {0x0000002e}, name = 'pthread_mutex_lock', range = [0x0000000100001d86-0x0000000100001d8c)
68 … id = {0x0000002f}, name = 'pthread_mutex_unlock', range = [0x0000000100001d8c-0x0000000100001d92)
70 id = {0x00000030}, name = 'rand', range = [0x0000000100001d92-0x0000000100001d98)
72 id = {0x00000031}, name = 'strtoul', range = [0x0000000100001d98-0x0000000100001d9e)
74 id = {0x00000032}, name = 'usleep', range = [0x0000000100001d9e-0x0000000100001da4)
76 [0x0000000100001da4-0x0000000100001e2c) a.out.__TEXT.__stub_helper
77 [0x0000000100001e2c-0x0000000100001f10) a.out.__TEXT.__cstring
78 [0x0000000100001f10-0x0000000100001f68) a.out.__TEXT.__unwind_info
79 [0x0000000100001f68-0x0000000100001ff8) a.out.__TEXT.__eh_frame
84 Check if the module is file backed.
88 True, if the module is backed by an object file on disk.
89 False, if the module is backed by an object file in memory."
93 Get const accessor for the module file specification.
95 This function returns the file for the module on the host system
96 that is running LLDB. This can differ from the path on the
104 Get accessor for the module platform file specification.
106 Platform file refers to the path of the module as it is known on
107 the remote system on which it is being debugged. For local
108 debugging this is always the same as Module::GetFileSpec(). But
112 '/tmp/lldb/platform-cache/remote.host.computer/usr/lib/liba.dylib'
119 %feature("docstring", "Returns the UUID of the module as a Python string."
123 Find compile units related to this module and passed source
155 module.
162 all types found in the debug information for this module.
165 A list of types in this module that match type_mask"
200 Returns the number of modules in the module cache. This is an
204 The number of modules in the module cache."
209 the module cache.