Searched refs:property (Results 1 - 25 of 156) sorted by relevance

1234567

/freebsd-current/contrib/llvm-project/lldb/bindings/interface/
H A DSBSymbolContextExtensions.i6 module = property(GetModule, SetModule, doc='''A read/write property that allows the getting/setting of the module (lldb.SBModule) in this symbol context.''')
7 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.''')
8 function = property(GetFunction, SetFunction, doc='''A read/write property that allows the getting/setting of the function (lldb.SBFunction) in this symbol context.''')
9 block = property(GetBlock, SetBlock, doc='''A read/write property that allows the getting/setting of the block (lldb.SBBlock) in this symbol context.''')
10 symbol = property(GetSymbol, SetSymbol, doc='''A read/write property tha
[all...]
H A DSBExecutionContextExtensions.i4 target = property(GetTarget, None, doc='''A read only property that returns the same result as GetTarget().''')
5 process = property(GetProcess, None, doc='''A read only property that returns the same result as GetProcess().''')
6 thread = property(GetThread, None, doc='''A read only property that returns the same result as GetThread().''')
7 frame = property(GetFrame, None, doc='''A read only property that returns the same result as GetFrame().''')
H A DSBErrorExtensions.i9 value = property(GetError, None, doc='''A read only property that returns the same result as GetError().''')
10 fail = property(Fail, None, doc='''A read only property that returns the same result as Fail().''')
11 success = property(Success, None, doc='''A read only property that returns the same result as Success().''')
12 description = property(GetCString, None, doc='''A read only property that returns the same result as GetCString().''')
13 type = property(GetType, None, doc='''A read only property tha
[all...]
H A DSBFunctionExtensions.i14 addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this function.''')
15 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.''')
16 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.''')
17 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.''')
18 mangled = property(GetMangledName, None, doc='''A read only property tha
[all...]
H A DSBSectionExtensions.i22 name = property(GetName, None, doc='''A read only property that returns the name of this section as a string.''')
23 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.''')
24 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.''')
25 size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes of this section as an integer.''')
26 file_offset = property(GetFileOffset, None, doc='''A read only property tha
[all...]
H A DSBThreadExtensions.i48 id = property(GetThreadID, None, doc='''A read only property that returns the thread ID as an integer.''')
49 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.''')
50 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.''')
51 process = property(GetProcess, None, doc='''A read only property that returns an lldb object that represents the process (lldb.SBProcess) that owns this thread.''')
52 num_frames = property(GetNumFrames, None, doc='''A read only property tha
[all...]
H A DSBSymbolExtensions.i17 name = property(GetName, None, doc='''A read only property that returns the name for this symbol as a string.''')
18 mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (linkage) name for this symbol as a string.''')
19 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.''')
20 addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this symbol.''')
21 end_addr = property(GetEndAddress, None, doc='''A read only property tha
[all...]
H A DSBTypeSummaryExtensions.i10 options = property(GetOptions, SetOptions)
11 is_summary_string = property(IsSummaryString)
12 is_function_name = property(IsFunctionName)
13 is_function_name = property(IsFunctionCode)
14 summary_data = property(GetData)
H A DSBFrameExtensions.i59 pc = property(GetPC, SetPC)
60 addr = property(GetPCAddress, None, doc='''A read only property that returns the program counter (PC) as a section offset address (lldb.SBAddress).''')
61 fp = property(GetFP, None, doc='''A read only property that returns the frame pointer (FP) as an unsigned integer.''')
62 sp = property(GetSP, None, doc='''A read only property that returns the stack pointer (SP) as an unsigned integer.''')
63 module = property(GetModule, None, doc='''A read only property that returns an lldb object that represents the module (lldb.SBModule) for this stack frame.''')
64 compile_unit = property(GetCompileUni
[all...]
H A DSBInstructionExtensions.i25 mnemonic = property(__mnemonic_property__, None, doc='''A read only property that returns the mnemonic for this instruction as a string.''')
26 operands = property(__operands_property__, None, doc='''A read only property that returns the operands for this instruction as a string.''')
27 comment = property(__comment_property__, None, doc='''A read only property that returns the comment for this instruction as a string.''')
28 addr = property(GetAddress, None, doc='''A read only property that returns an lldb object that represents the address (lldb.SBAddress) for this instruction.''')
29 size = property(GetByteSize, None, doc='''A read only property tha
[all...]
H A DSBFileSpecExtensions.i11 fullpath = property(str, None, doc='''A read only property that returns the fullpath as a python string.''')
12 basename = property(GetFilename, None, doc='''A read only property that returns the path basename as a python string.''')
13 dirname = property(GetDirectory, None, doc='''A read only property that returns the path directory name as a python string.''')
14 exists = property(Exists, None, doc='''A read only property that returns a boolean value that indicates if the file exists.''')
H A DSBValueExtensions.i6 '''Helper function for the "SBValue.dynamic" property.'''
51 children = property(get_value_child_list, None, doc='''A read only property that returns a list() of lldb.SBValue objects for the children of the value.''')
52 child = property(get_child_access_object, None, doc='''A read only property that returns an object that can access children of a variable by index (child_value = value.children[12]).''')
53 name = property(GetName, None, doc='''A read only property that returns the name of this value as a string.''')
54 type = property(GetType, None, doc='''A read only property that returns a lldb.SBType object that represents the type for this value.''')
55 size = property(GetByteSiz
[all...]
H A DSBAddressExtensions.i13 __runtime_error_str = 'This resolves the SBAddress using the SBTarget from lldb.target so this property can ONLY be used in the interactive script interpreter (i.e. under the lldb script command). For things like Python based commands and breakpoint callbacks use GetLoadAddress instead.'
16 '''Get the load address for a lldb.SBAddress using the current target. This resolves the SBAddress using the SBTarget from lldb.target so this property can ONLY be used in the interactive script interpreter (i.e. under the lldb script command). For things like Python based commands and breakpoint callbacks use GetLoadAddress instead.'''
22 '''Set the load address for a lldb.SBAddress using the current target. This resolves the SBAddress using the SBTarget from lldb.target so this property can ONLY be used in the interactive script interpreter (i.e. under the lldb script command). For things like Python based commands and breakpoint callbacks use GetLoadAddress instead.'''
28 '''Convert an address to a load address if there is a process and that process is alive, or to a file address otherwise. This resolves the SBAddress using the SBTarget from lldb.target so this property can ONLY be used in the interactive script interpreter (i.e. under the lldb script command). For things like Python based commands and breakpoint callbacks use GetLoadAddress instead.'''
36 '''Convert the address to an octal string. This resolves the SBAddress using the SBTarget from lldb.target so this property can ONLY be used in the interactive script interpreter (i.e. under the lldb script command). For things like Python based commands and breakpoint callbacks use GetLoadAddress instead.'''
40 '''Convert the address to an hex string. This resolves the SBAddress using the SBTarget from lldb.target so this property can ONLY be used in the interactive script interpreter (i.e. under the lldb script command). For things like Python based commands and breakpoint callbacks use GetLoadAddress instead.'''
43 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.''')
44 compile_unit = property(GetCompileUnit, None, doc='''A read only property tha
[all...]
H A DSBLineEntryExtensions.i16 file = property(GetFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this line entry.''')
17 line = 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.''')
18 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.''')
19 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.''')
20 end_addr = property(GetEndAddress, None, doc='''A read only property tha
[all...]
H A DSBBlockExtensions.i48 parent = property(GetParent, None, doc='''A read only property that returns the same result as GetParent().''')
49 first_child = property(GetFirstChild, None, doc='''A read only property that returns the same result as GetFirstChild().''')
50 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.''')
51 sibling = property(GetSibling, None, doc='''A read only property that returns the same result as GetSibling().''')
52 name = property(GetInlinedName, None, doc='''A read only property tha
[all...]
H A DSBBreakpointExtensions.i47 locations = property(get_breakpoint_location_list, None, doc='''A read only property that returns a list() of lldb.SBBreakpointLocation objects for this breakpoint.''')
48 location = property(get_locations_access_object, None, doc='''A read only property that returns an object that can access locations by index (not location ID) (location = bkpt.location[12]).''')
49 id = property(GetID, None, doc='''A read only property that returns the ID of this breakpoint.''')
50 enabled = property(IsEnabled, SetEnabled, doc='''A read/write property that configures whether this breakpoint is enabled or not.''')
51 one_shot = property(IsOneShot, SetOneShot, doc='''A read/write property tha
[all...]
H A DSBTypeExtensions.i10 name = property(GetName, None, doc='''A read only property that returns the name for this member as a string.''')
11 type = property(GetType, None, doc='''A read only property that returns an lldb object that represents the type (lldb.SBType) for this member.''')
12 byte_offset = property(GetOffsetInBytes, None, doc='''A read only property that returns offset in bytes for this member as an integer.''')
13 bit_offset = property(GetOffsetInBits, None, doc='''A read only property that returns offset in bits for this member as an integer.''')
14 is_bitfield = property(IsBitfield, None, doc='''A read only property tha
[all...]
H A DSBProcessExtensions.i85 threads = property(get_process_thread_list, None, doc='''A read only property that returns a list() of lldb.SBThread objects for this process.''')
86 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]).''')
87 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.''')
88 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.''')
89 is_stopped = property(__get_is_stopped__, None, doc='''A read only property tha
[all...]
H A DSBDeclarationExtensions.i11 file = property(GetFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this line entry.''')
12 line = 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.''')
13 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.''')
H A DSBTypeSyntheticExtensions.i10 options = property(GetOptions, SetOptions)
11 contains_code = property(IsClassCode, None)
12 synthetic_data = property(GetData, None)
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestMaxConsumers.java43 String property = System.getProperty(name);
44 if (property != null && property.length() != 0) {
46 value = Integer.parseInt(property);
57 Integer property = getIntegerProperty(MAX_CONSUMERS_PROPERTY_NAME);
58 int max = (property == null ? 0 : property);
59 int n = (property == null ? 11 : (max < 1 ? 1 : max));
/freebsd-current/tests/sys/cddl/zfs/tests/cli_root/zfs_mount/
H A Dzfs_mount_007_pos.ksh37 # without affecting the on-disk property. The original on-disk value will be
47 # 1. Create filesystem and get origianl property value.
48 # 2. Using 'zfs mount -o' to set filesystem property.
49 # 3. Verify the property was set temporarily.
50 # 4. Verify it will not affect the property that is stored on disk.
69 log_assert "Verify '-o' will set filesystem property temporarily, " \
70 "without affecting the property that is stored on disk."
76 # Get the specified filesystem property reverse mount option.
79 # $2 property
86 # Define property valu
[all...]
/freebsd-current/sys/arm/broadcom/bcm2835/
H A Dbcm2835_vcio.c58 uint8_t *property; local
68 property = malloc(size, M_VCIO, M_WAITOK);
70 error = copyin(ptr, property, size);
72 free(property, M_VCIO);
76 error = bcm2835_mbox_property(property, size);
78 free(property, M_VCIO);
82 error = copyout(property, ptr, size);
83 free(property, M_VCIO);
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_mount/
H A Dzfs_mount_007_pos.ksh37 # without affecting the on-disk property. The original on-disk value will be
48 # 1. Create filesystem and get original property value.
49 # 2. Using 'zfs mount -o' to set filesystem property.
50 # 3. Verify the property was set temporarily.
51 # 4. Verify it will not affect the property that is stored on disk.
61 log_assert "Verify '-o' will set filesystem property temporarily, " \
62 "without affecting the property that is stored on disk."
71 # Get the specified filesystem property reverse mount option.
74 # $2 property
81 # Define property valu
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueProperties.cpp28 Property property(definition);
29 assert(property.IsValid());
30 m_name_to_index.insert({property.GetName(), m_properties.size()});
31 property.GetValue()->SetParent(shared_from_this());
32 m_properties.push_back(property);
38 Property *property = ProtectedGetPropertyAtIndex(property_idx); local
39 if (property)
40 property->SetValueChangedCallback(std::move(callback));
46 Property property(name, desc, is_global, value_sp);
48 m_properties.push_back(property);
185 const Property *property = GetPropertyAtIndex(idx, exe_ctx); local
216 const Property *property = GetPropertyAtIndex(idx, exe_ctx); local
242 const Property *property = GetPropertyAtIndex(idx, exe_ctx); local
251 const Property *property = GetPropertyAtIndex(idx, exe_ctx); local
262 const Property *property = GetPropertyAtIndex(idx, exe_ctx); local
273 const Property *property = GetPropertyAtIndex(idx, exe_ctx); local
325 const Property *property = GetPropertyAtIndex(i, exe_ctx); local
342 const Property *property = GetPropertyAtIndex(i, exe_ctx); local
411 const Property *property = nullptr; local
440 const Property *property = ProtectedGetPropertyAtIndex(i); local
445 const Property *property = ProtectedGetPropertyAtIndex(i); local
457 const Property *property = ProtectedGetPropertyAtIndex(i); local
[all...]

Completed in 204 milliseconds

1234567