OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:_newclass
(Results
1 - 25
of
35
) sorted by null
1
2
/external/lldb/scripts/Python/interface/
SBSymbol.i
76
if
_newclass
: name = property(GetName, None, doc='''A read only property that returns the name for this symbol as a string.''')
79
if
_newclass
: mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (linkage) name for this symbol as a string.''')
82
if
_newclass
: type = property(GetType, None, doc='''A read only property that returns an lldb enumeration value (see enumerations that start with "lldb.eSymbolType") that represents the type of this symbol.''')
85
if
_newclass
: addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this symbol.''')
88
if
_newclass
: end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object that represents the end address (lldb.SBAddress) for this symbol.''')
91
if
_newclass
: prologue_size = property(GetPrologueByteSize, None, doc='''A read only property that returns the size in bytes of the prologue instructions as an unsigned integer.''')
94
if
_newclass
: instructions = property(get_instructions_from_current_target, None, doc='''A read only property that returns an lldb object that represents the instructions (lldb.SBInstructionList) for this symbol.''')
97
if
_newclass
: external = property(IsExternal, None, doc='''A read only property that returns a boolean value that indicates if this symbol is externally visiable (exported) from the module that contains it.''')
100
if
_newclass
: synthetic = property(IsSynthetic, None, doc='''A read only property that returns a boolean value that indicates if this symbol was synthetically created from information in module that contains it.''')
SBTypeSummary.i
81
if
_newclass
: options = property(GetOptions, SetOptions)
84
if
_newclass
: is_summary_string = property(IsSummaryString, None)
87
if
_newclass
: is_function_name = property(IsFunctionName, None)
90
if
_newclass
: is_function_name = property(IsFunctionCode, None)
93
if
_newclass
: summary_data = property(GetData, None)
SBTypeCategory.i
193
if
_newclass
: formats = property(get_formats_array, None, doc='''A read only property that returns a list() of lldb.SBTypeFormat objects contained in this category''')
196
if
_newclass
: format = property(get_formats_access_object, None, doc=r'''A read only property that returns an object that you can use to look for formats by index or type name.''')
199
if
_newclass
: summaries = property(get_summaries_array, None, doc='''A read only property that returns a list() of lldb.SBTypeSummary objects contained in this category''')
202
if
_newclass
: summary = property(get_summaries_access_object, None, doc=r'''A read only property that returns an object that you can use to look for summaries by index or type name or regular expression.''')
205
if
_newclass
: filters = property(get_filters_array, None, doc='''A read only property that returns a list() of lldb.SBTypeFilter objects contained in this category''')
208
if
_newclass
: filter = property(get_filters_access_object, None, doc=r'''A read only property that returns an object that you can use to look for filters by index or type name or regular expression.''')
211
if
_newclass
: synthetics = property(get_synthetics_array, None, doc='''A read only property that returns a list() of lldb.SBTypeSynthetic objects contained in this category''')
214
if
_newclass
: synthetic = property(get_synthetics_access_object, None, doc=r'''A read only property that returns an object that you can use to look for synthetic children provider by index or type name or regular expression.''')
217
if
_newclass
: num_formats = property(GetNumFormats, None)
219
if
_newclass
: num_summaries = property(GetNumSummaries, None
[
all
...]
SBInstruction.i
82
if
_newclass
: mnemonic = property(__mnemonic_property__, None, doc='''A read only property that returns the mnemonic for this instruction as a string.''')
85
if
_newclass
: operands = property(__operands_property__, None, doc='''A read only property that returns the operands for this instruction as a string.''')
88
if
_newclass
: comment = property(__comment_property__, None, doc='''A read only property that returns the comment for this instruction as a string.''')
91
if
_newclass
: addr = property(GetAddress, None, doc='''A read only property that returns an lldb object that represents the address (lldb.SBAddress) for this instruction.''')
94
if
_newclass
: size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes for this instruction as an integer.''')
97
if
_newclass
: is_branch = property(DoesBranch, None, doc='''A read only property that returns a boolean value that indicates if this instruction is a branch instruction.''')
SBTypeSynthetic.i
69
if
_newclass
: options = property(GetOptions, SetOptions)
72
if
_newclass
: contains_code = property(IsClassCode, None)
75
if
_newclass
: synthetic_data = property(GetData, None)
SBBlock.i
150
if
_newclass
: parent = property(GetParent, None, doc='''A read only property that returns the same result as GetParent().''')
153
if
_newclass
: first_child = property(GetFirstChild, None, doc='''A read only property that returns the same result as GetFirstChild().''')
156
if
_newclass
: call_site = property(get_call_site, None, doc='''A read only property that returns a lldb.declaration object that contains the inlined call site file, line and column.''')
159
if
_newclass
: sibling = property(GetSibling, None, doc='''A read only property that returns the same result as GetSibling().''')
162
if
_newclass
: name = property(GetInlinedName, None, doc='''A read only property that returns the same result as GetInlinedName().''')
165
if
_newclass
: inlined_block = property(GetContainingInlinedBlock, None, doc='''A read only property that returns the same result as GetContainingInlinedBlock().''')
168
if
_newclass
: range = property(get_ranges_access_object, None, doc='''A read only property that allows item access to the address ranges for a block by integer (range = block.range[0]) and by lldb.SBAdddress (find the range that contains the specified lldb.SBAddress like "pc_range = lldb.frame.block.range[frame.addr]").''')
171
if
_newclass
: ranges = property(get_ranges_array, None, doc='''A read only property that returns a list() object that contains all of the address ranges for the block.''')
174
if
_newclass
: num_ranges = property(GetNumRanges, None, doc='''A read only property that returns the same result as GetNumRanges().''')
SBFrame.i
281
if
_newclass
: pc = property(GetPC, SetPC)
284
if
_newclass
: addr = property(GetPCAddress, None, doc='''A read only property that returns the program counter (PC) as a section offset address (lldb.SBAddress).''')
287
if
_newclass
: fp = property(GetFP, None, doc='''A read only property that returns the frame pointer (FP) as an unsigned integer.''')
290
if
_newclass
: sp = property(GetSP, None, doc='''A read only property that returns the stack pointer (SP) as an unsigned integer.''')
293
if
_newclass
: module = property(GetModule, None, doc='''A read only property that returns an lldb object that represents the module (lldb.SBModule) for this stack frame.''')
296
if
_newclass
: compile_unit = property(GetCompileUnit, None, doc='''A read only property that returns an lldb object that represents the compile unit (lldb.SBCompileUnit) for this stack frame.''')
299
if
_newclass
: function = property(GetFunction, None, doc='''A read only property that returns an lldb object that represents the function (lldb.SBFunction) for this stack frame.''')
302
if
_newclass
: symbol = property(GetSymbol, None, doc='''A read only property that returns an lldb object that represents the symbol (lldb.SBSymbol) for this stack frame.''')
305
if
_newclass
: block = property(GetBlock, None, doc='''A read only property that returns an lldb object that represents the block (lldb.SBBlock) for this stack frame.''')
308
if
_newclass
: is_inlined = property(IsInlined, None, doc='''A read only property that returns an boolean that i (…)
[
all
...]
SBData.i
267
if
_newclass
: uint8 = property(_make_helper_uint8, None, doc='''A read only property that returns an array-like object out of which you can read uint8 values.''')
270
if
_newclass
: uint16 = property(_make_helper_uint16, None, doc='''A read only property that returns an array-like object out of which you can read uint16 values.''')
273
if
_newclass
: uint32 = property(_make_helper_uint32, None, doc='''A read only property that returns an array-like object out of which you can read uint32 values.''')
276
if
_newclass
: uint64 = property(_make_helper_uint64, None, doc='''A read only property that returns an array-like object out of which you can read uint64 values.''')
279
if
_newclass
: sint8 = property(_make_helper_sint8, None, doc='''A read only property that returns an array-like object out of which you can read sint8 values.''')
282
if
_newclass
: sint16 = property(_make_helper_sint16, None, doc='''A read only property that returns an array-like object out of which you can read sint16 values.''')
285
if
_newclass
: sint32 = property(_make_helper_sint32, None, doc='''A read only property that returns an array-like object out of which you can read sint32 values.''')
288
if
_newclass
: sint64 = property(_make_helper_sint64, None, doc='''A read only property that returns an array-like object out of which you can read sint64 values.''')
291
if
_newclass
: float = property(_make_helper_float, None, doc='''A read only property that returns an array-like object out of which you can read float values.''')
294
if
_newclass
: double = property(_make_helper_double, None, doc='''A read only property that returns an array-li (…)
[
all
...]
SBType.i
48
if
_newclass
: name = property(GetName, None, doc='''A read only property that returns the name for this member as a string.''')
51
if
_newclass
: type = property(GetType, None, doc='''A read only property that returns an lldb object that represents the type (lldb.SBType) for this member.''')
54
if
_newclass
: byte_offset = property(GetOffsetInBytes, None, doc='''A read only property that returns offset in bytes for this member as an integer.''')
57
if
_newclass
: bit_offset = property(GetOffsetInBits, None, doc='''A read only property that returns offset in bits for this member as an integer.''')
60
if
_newclass
: is_bitfield = property(IsBitfield, None, doc='''A read only property that returns true if this member is a bitfield.''')
63
if
_newclass
: bitfield_bit_size = property(GetBitfieldSizeInBits, None, doc='''A read only property that returns the bitfield size in bits for this member as an integer, or zero if this member is not a bitfield.''')
248
if
_newclass
: name = property(GetName, None, doc='''A read only property that returns the name for this type as a string.''')
251
if
_newclass
: size = property(GetByteSize, None, doc='''A read only property that returns size in bytes for this type as an integer.''')
254
if
_newclass
: is_pointer = property(IsPointerType, None, doc='''A read only property that returns a boolean value that indicates if this type is a pointer type.''')
257
if
_newclass
: is_reference = property(IsReferenceType, None, doc='''A read only property that returns a boolean (…)
[
all
...]
SBFunction.i
100
if
_newclass
: addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this function.''')
103
if
_newclass
: end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object that represents the end address (lldb.SBAddress) for this function.''')
106
if
_newclass
: block = property(GetBlock, None, doc='''A read only property that returns an lldb object that represents the top level lexical block (lldb.SBBlock) for this function.''')
109
if
_newclass
: instructions = property(get_instructions_from_current_target, None, doc='''A read only property that returns an lldb object that represents the instructions (lldb.SBInstructionList) for this function.''')
112
if
_newclass
: mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (linkage) name for this function as a string.''')
115
if
_newclass
: name = property(GetName, None, doc='''A read only property that returns the name for this function as a string.''')
118
if
_newclass
: prologue_size = property(GetPrologueByteSize, None, doc='''A read only property that returns the size in bytes of the prologue instructions as an unsigned integer.''')
121
if
_newclass
: type = property(GetType, None, doc='''A read only property that returns an lldb object that represents the return type (lldb.SBType) for this function.''')
SBSection.i
107
if
_newclass
: name = property(GetName, None, doc='''A read only property that returns the name of this section as a string.''')
110
if
_newclass
: addr = property(get_addr, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this section.''')
113
if
_newclass
: file_addr = property(GetFileAddress, None, doc='''A read only property that returns an integer that represents the starting "file" address for this section, or the address of the section in the object file in which it is defined.''')
116
if
_newclass
: size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes of this section as an integer.''')
119
if
_newclass
: file_offset = property(GetFileOffset, None, doc='''A read only property that returns the file offset in bytes of this section as an integer.''')
122
if
_newclass
: file_size = property(GetFileByteSize, None, doc='''A read only property that returns the file size in bytes of this section as an integer.''')
125
if
_newclass
: data = property(GetSectionData, None, doc='''A read only property that returns an lldb object that represents the bytes for this section (lldb.SBData) for this section.''')
128
if
_newclass
: type = property(GetSectionType, None, doc='''A read only property that returns an lldb enumeration value (see enumerations that start with "lldb.eSectionType") that represents the type of this section (code, data, etc.).''')
SBLineEntry.i
88
if
_newclass
: file = property(GetFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this line entry.''')
91
if
_newclass
: ling = property(GetLine, None, doc='''A read only property that returns the 1 based line number for this line entry, a return value of zero indicates that no line information is available.''')
94
if
_newclass
: column = property(GetColumn, None, doc='''A read only property that returns the 1 based column number for this line entry, a return value of zero indicates that no column information is available.''')
97
if
_newclass
: addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this line entry.''')
100
if
_newclass
: end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object that represents the end address (lldb.SBAddress) for this line entry.''')
SBDeclaration.i
57
if
_newclass
: file = property(GetFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this line entry.''')
60
if
_newclass
: ling = property(GetLine, None, doc='''A read only property that returns the 1 based line number for this line entry, a return value of zero indicates that no line information is available.''')
63
if
_newclass
: column = property(GetColumn, None, doc='''A read only property that returns the 1 based column number for this line entry, a return value of zero indicates that no column information is available.''')
SBThread.i
239
if
_newclass
: id = property(GetThreadID, None, doc='''A read only property that returns the thread ID as an integer.''')
242
if
_newclass
: idx = property(GetIndexID, None, doc='''A read only property that returns the thread index ID as an integer. Thread index ID values start at 1 and increment as threads come and go and can be used to uniquely identify threads.''')
245
if
_newclass
: return_value = property(GetStopReturnValue, None, doc='''A read only property that returns an lldb object that represents the return value from the last stop (lldb.SBValue) if we just stopped due to stepping out of a function.''')
248
if
_newclass
: process = property(GetProcess, None, doc='''A read only property that returns an lldb object that represents the process (lldb.SBProcess) that owns this thread.''')
251
if
_newclass
: num_frames = property(GetNumFrames, None, doc='''A read only property that returns the number of stack frames in this thread as an integer.''')
254
if
_newclass
: frames = property(get_thread_frames, None, doc='''A read only property that returns a list() of lldb.SBFrame objects for all frames in this thread.''')
257
if
_newclass
: frame = property(get_frames_access_object, None, doc='''A read only property that returns an object that can be used to access frames as an array ("frame_12 = lldb.thread.frame[12]").''')
260
if
_newclass
: name = property(GetName, None, doc='''A read only property that returns the name of this thread as a string.''')
263
if
_newclass
: queue = property(GetQueueName, None, doc='''A read only property that returns the dispatch queue name of this thread as a string.''')
266
if
_newclass
: stop_reason = property(GetStopReason, None, doc='''A read only property that returns an lldb enum (…)
[
all
...]
SBValue.i
417
if
_newclass
: name = property(GetName, None, doc='''A read only property that returns the name of this value as a string.''')
420
if
_newclass
: type = property(GetType, None, doc='''A read only property that returns a lldb.SBType object that represents the type for this value.''')
423
if
_newclass
: size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes of this value.''')
426
if
_newclass
: is_in_scope = property(IsInScope, None, doc='''A read only property that returns a boolean value that indicates whether this value is currently lexically in scope.''')
430
if
_newclass
: format = property(GetName, SetFormat, doc='''A read/write property that gets/sets the format used for lldb.SBValue().GetValue() for this value. See enumerations that start with "lldb.eFormat".''')
434
if
_newclass
: value = property(GetValue, SetValueFromCString, doc='''A read/write property that gets/sets value from a string.''')
437
if
_newclass
: value_type = property(GetValueType, None, doc='''A read only property that returns an lldb enumeration value (see enumerations that start with "lldb.eValueType") that represents the type of this value (local, argument, global, register, etc.).''')
440
if
_newclass
: changed = property(GetValueDidChange, None, doc='''A read only property that returns a boolean value that indicates if this value has changed since it was last updated.''')
443
if
_newclass
: data = property(GetData, None, doc='''A read only property that returns an lldb object (lldb.SBData) that represents the bytes that make up the value for this object.''')
446
if
_newclass
: load_addr = property(GetLoadAddress, None, doc='''A read only property that returns the load addr (…)
[
all
...]
SBFileSpec.i
83
if
_newclass
: fullpath = property(__get_fullpath__, None, doc='''A read only property that returns the fullpath as a python string.''')
86
if
_newclass
: basename = property(GetFilename, None, doc='''A read only property that returns the path basename as a python string.''')
89
if
_newclass
: dirname = property(GetDirectory, None, doc='''A read only property that returns the path directory name as a python string.''')
92
if
_newclass
: exists = property(Exists, None, doc='''A read only property that returns a boolean value that indicates if the file exists.''')
SBTypeFilter.i
67
if
_newclass
: options = property(GetOptions, SetOptions)
70
if
_newclass
: count = property(GetNumberOfExpressionPaths, None)
SBTypeFormat.i
59
if
_newclass
: format = property(GetFormat, SetFormat)
63
if
_newclass
: options = property(GetOptions, SetOptions)
SBTypeNameSpecifier.i
58
if
_newclass
: name = property(GetName, None)
61
if
_newclass
: is_regex = property(IsRegex, None)
SBSymbolContext.i
87
if
_newclass
: module = property(GetModule, SetModule, doc='''A read/write property that allows the getting/setting of the module (lldb.SBModule) in this symbol context.''')
91
if
_newclass
: compile_unit = property(GetCompileUnit, SetCompileUnit, doc='''A read/write property that allows the getting/setting of the compile unit (lldb.SBCompileUnit) in this symbol context.''')
95
if
_newclass
: function = property(GetFunction, SetFunction, doc='''A read/write property that allows the getting/setting of the function (lldb.SBFunction) in this symbol context.''')
99
if
_newclass
: block = property(GetBlock, SetBlock, doc='''A read/write property that allows the getting/setting of the block (lldb.SBBlock) in this symbol context.''')
103
if
_newclass
: symbol = property(GetSymbol, SetSymbol, doc='''A read/write property that allows the getting/setting of the symbol (lldb.SBSymbol) in this symbol context.''')
107
if
_newclass
: line_entry = property(GetLineEntry, SetLineEntry, doc='''A read/write property that allows the getting/setting of the line entry (lldb.SBLineEntry) in this symbol context.''')
SBSymbolContextList.i
120
if
_newclass
: modules = property(get_module_array, None, doc='''Returns a list() of lldb.SBModule objects, one for each module in each SBSymbolContext object in this list.''')
123
if
_newclass
: compile_units = property(get_compile_unit_array, None, doc='''Returns a list() of lldb.SBCompileUnit objects, one for each compile unit in each SBSymbolContext object in this list.''')
126
if
_newclass
: functions = property(get_function_array, None, doc='''Returns a list() of lldb.SBFunction objects, one for each function in each SBSymbolContext object in this list.''')
129
if
_newclass
: blocks = property(get_block_array, None, doc='''Returns a list() of lldb.SBBlock objects, one for each block in each SBSymbolContext object in this list.''')
132
if
_newclass
: line_entries = property(get_line_entry_array, None, doc='''Returns a list() of lldb.SBLineEntry objects, one for each line entry in each SBSymbolContext object in this list.''')
135
if
_newclass
: symbols = property(get_symbol_array, None, doc='''Returns a list() of lldb.SBSymbol objects, one for each symbol in each SBSymbolContext object in this list.''')
SBAddress.i
167
if
_newclass
: module = property(GetModule, None, doc='''A read only property that returns an lldb object that represents the module (lldb.SBModule) that this address resides within.''')
170
if
_newclass
: compile_unit = property(GetCompileUnit, None, doc='''A read only property that returns an lldb object that represents the compile unit (lldb.SBCompileUnit) that this address resides within.''')
173
if
_newclass
: line_entry = property(GetLineEntry, None, doc='''A read only property that returns an lldb object that represents the line entry (lldb.SBLineEntry) that this address resides within.''')
176
if
_newclass
: function = property(GetFunction, None, doc='''A read only property that returns an lldb object that represents the function (lldb.SBFunction) that this address resides within.''')
179
if
_newclass
: block = property(GetBlock, None, doc='''A read only property that returns an lldb object that represents the block (lldb.SBBlock) that this address resides within.''')
182
if
_newclass
: symbol = property(GetSymbol, None, doc='''A read only property that returns an lldb object that represents the symbol (lldb.SBSymbol) that this address resides within.''')
185
if
_newclass
: offset = property(GetOffset, None, doc='''A read only property that returns the section offset in bytes as an integer.''')
188
if
_newclass
: section = property(GetSection, None, doc='''A read only property that returns an lldb object that represents the section (lldb.SBSection) that this address resides within.''')
191
if
_newclass
: file_addr = property(GetFileAddress, None, doc='''A read only property that returns file address for the section as an integer. This is the address that represents the address as it is found in the object file that defines it.''')
195
if
_newclass
: load_addr = property(__get_load_addr_property__, __set_load_addr_property__, doc='''A read/write (…)
[
all
...]
SBError.i
108
if
_newclass
: value = property(GetError, None, doc='''A read only property that returns the same result as GetError().''')
111
if
_newclass
: fail = property(Fail, None, doc='''A read only property that returns the same result as Fail().''')
114
if
_newclass
: success = property(Success, None, doc='''A read only property that returns the same result as Success().''')
117
if
_newclass
: description = property(GetCString, None, doc='''A read only property that returns the same result as GetCString().''')
120
if
_newclass
: type = property(GetType, None, doc='''A read only property that returns the same result as GetType().''')
SBModule.i
467
if
_newclass
: symbols = property(get_symbols_array, None, doc='''A read only property that returns a list() of lldb.SBSymbol objects contained in this module.''')
470
if
_newclass
: symbol = property(get_symbols_access_object, None, doc='''A read only property that can be used to access symbols by index ("symbol = module.symbol[0]"), name ("symbols = module.symbol['main']"), or using a regular expression ("symbols = module.symbol[re.compile(...)]"). The return value is a single lldb.SBSymbol object for array access, and a list() of lldb.SBSymbol objects for name and regular expression access''')
473
if
_newclass
: sections = property(get_sections_array, None, doc='''A read only property that returns a list() of lldb.SBSection objects contained in this module.''')
476
if
_newclass
: compile_units = property(get_compile_units_array, None, doc='''A read only property that returns a list() of lldb.SBCompileUnit objects contained in this module.''')
479
if
_newclass
: section = property(get_sections_access_object, None, doc='''A read only property that can be used to access symbols by index ("section = module.section[0]"), name ("sections = module.section[\'main\']"), or using a regular expression ("sections = module.section[re.compile(...)]"). The return value is a single lldb.SBSection object for array access, and a list() of lldb.SBSection objects for name and regular expression access''')
482
if
_newclass
: section = property(get_sections_access_object, None, doc='''A read only property that can be used to access compile units by index ("compile_unit = module.compile_unit[0]"), name ("compile_unit = module.compile_unit[\'main.cpp\']"), or using a regular expression ("compile_unit = module.compile_unit[re.compile(...)]"). The return value is a single lldb.SBCompileUnit object for array access or by full or partial path, and a list() of lldb.SBCompileUnit objects regular expressions.''')
488
if
_newclass
: uuid = property(get_uuid, None, doc='''A read only property that returns a standard python uuid.UUID object that represents the UUID of this module.''')
491
if
_newclass
: file = property(GetFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this object file for this module as it is represented where it is being debugged.''')
494
if
_newclass
: platform_file = property(GetPlatformFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this object file for this module as it is represented on the current host system.''')
497
if
_newclass
: byte_order = property(GetByteOrder, None, doc='''A read only property that returns an lldb enumer (…)
[
all
...]
SBProcess.i
414
if
_newclass
: threads = property(get_process_thread_list, None, doc='''A read only property that returns a list() of lldb.SBThread objects for this process.''')
417
if
_newclass
: thread = property(get_threads_access_object, None, doc='''A read only property that returns an object that can access threads by thread index (thread = lldb.process.thread[12]).''')
420
if
_newclass
: is_alive = property(__get_is_alive__, None, doc='''A read only property that returns a boolean value that indicates if this process is currently alive.''')
423
if
_newclass
: is_running = property(__get_is_running__, None, doc='''A read only property that returns a boolean value that indicates if this process is currently running.''')
426
if
_newclass
: is_stopped = property(__get_is_running__, None, doc='''A read only property that returns a boolean value that indicates if this process is currently stopped.''')
429
if
_newclass
: id = property(GetProcessID, None, doc='''A read only property that returns the process ID as an integer.''')
432
if
_newclass
: target = property(GetTarget, None, doc='''A read only property that an lldb object that represents the target (lldb.SBTarget) that owns this process.''')
435
if
_newclass
: num_threads = property(GetNumThreads, None, doc='''A read only property that returns the number of threads in this process as an integer.''')
439
if
_newclass
: selected_thread = property(GetSelectedThread, SetSelectedThread, doc='''A read/write property that gets/sets the currently selected thread in this process. The getter returns a lldb.SBThread object and the setter takes an lldb.SBThread object.''')
442
if
_newclass
: state = property(GetState, None, doc='''A read only property that returns an lldb enumeration val (…)
[
all
...]
Completed in 113 milliseconds
1
2