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

123456

/freebsd-13-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBSymbol.i82 name = property(GetName, None, doc='''A read only property that returns the name for this symbol as a string.''')
83 mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (linkage) name for this symbol as a string.''')
84 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 addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this symbol.''')
86 end_addr = property(GetEndAddress, None, doc='''A read only property tha
[all...]
H A DSBExecutionContext.i42 target = property(GetTarget, None, doc='''A read only property that returns the same result as GetTarget().''')
43 process = property(GetProcess, None, doc='''A read only property that returns the same result as GetProcess().''')
44 thread = property(GetThread, None, doc='''A read only property that returns the same result as GetThread().''')
45 frame = property(GetFrame, None, doc='''A read only property that returns the same result as GetFrame().''')
H A DSBError.i112 value = property(GetError, None, doc='''A read only property that returns the same result as GetError().''')
113 fail = property(Fail, None, doc='''A read only property that returns the same result as Fail().''')
114 success = property(Success, None, doc='''A read only property that returns the same result as Success().''')
115 description = property(GetCString, None, doc='''A read only property that returns the same result as GetCString().''')
116 type = property(GetType, None, doc='''A read only property tha
[all...]
H A DSBLineEntry.i91 file = property(GetFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this line entry.''')
92 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.''')
93 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.''')
94 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.''')
95 end_addr = property(GetEndAddress, None, doc='''A read only property tha
[all...]
H A DSBFrame.i334 pc = property(GetPC, SetPC)
335 addr = property(GetPCAddress, None, doc='''A read only property that returns the program counter (PC) as a section offset address (lldb.SBAddress).''')
336 fp = property(GetFP, None, doc='''A read only property that returns the frame pointer (FP) as an unsigned integer.''')
337 sp = property(GetSP, None, doc='''A read only property that returns the stack pointer (SP) as an unsigned integer.''')
338 module = property(GetModule, None, doc='''A read only property that returns an lldb object that represents the module (lldb.SBModule) for this stack frame.''')
339 compile_unit = property(GetCompileUni
[all...]
H A DSBSection.i132 name = property(GetName, None, doc='''A read only property that returns the name of this section as a string.''')
133 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.''')
134 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.''')
135 size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes of this section as an integer.''')
136 file_offset = property(GetFileOffset, None, doc='''A read only property tha
[all...]
H A DSBSymbolContext.i88 module = property(GetModule, SetModule, doc='''A read/write property that allows the getting/setting of the module (lldb.SBModule) in this symbol context.''')
89 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.''')
90 function = property(GetFunction, SetFunction, doc='''A read/write property that allows the getting/setting of the function (lldb.SBFunction) in this symbol context.''')
91 block = property(GetBlock, SetBlock, doc='''A read/write property that allows the getting/setting of the block (lldb.SBBlock) in this symbol context.''')
92 symbol = property(GetSymbol, SetSymbol, doc='''A read/write property tha
[all...]
H A DSBFunction.i121 addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this function.''')
122 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.''')
123 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.''')
124 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.''')
125 mangled = property(GetMangledName, None, doc='''A read only property tha
[all...]
H A DSBDeclaration.i60 file = property(GetFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this line entry.''')
61 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.''')
62 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 DSBTypeSummary.i108 options = property(GetOptions, SetOptions)
109 is_summary_string = property(IsSummaryString)
110 is_function_name = property(IsFunctionName)
111 is_function_name = property(IsFunctionCode)
112 summary_data = property(GetData)
H A DSBAddress.i147 __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.'
150 '''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.'''
156 '''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.'''
162 '''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.'''
170 '''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.'''
174 '''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.'''
177 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.''')
178 compile_unit = property(GetCompileUnit, None, doc='''A read only property tha
[all...]
H A DSBInstruction.i92 mnemonic = property(__mnemonic_property__, None, doc='''A read only property that returns the mnemonic for this instruction as a string.''')
93 operands = property(__operands_property__, None, doc='''A read only property that returns the operands for this instruction as a string.''')
94 comment = property(__comment_property__, None, doc='''A read only property that returns the comment for this instruction as a string.''')
95 addr = property(GetAddress, None, doc='''A read only property that returns an lldb object that represents the address (lldb.SBAddress) for this instruction.''')
96 size = property(GetByteSize, None, doc='''A read only property tha
[all...]
H A DSBTypeSynthetic.i70 options = property(GetOptions, SetOptions)
71 contains_code = property(IsClassCode, None)
72 synthetic_data = property(GetData, None)
H A DSBBlock.i149 parent = property(GetParent, None, doc='''A read only property that returns the same result as GetParent().''')
150 first_child = property(GetFirstChild, None, doc='''A read only property that returns the same result as GetFirstChild().''')
151 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.''')
152 sibling = property(GetSibling, None, doc='''A read only property that returns the same result as GetSibling().''')
153 name = property(GetInlinedName, None, doc='''A read only property tha
[all...]
H A DSBFileSpec.i98 fullpath = property(__get_fullpath__, None, doc='''A read only property that returns the fullpath as a python string.''')
99 basename = property(GetFilename, None, doc='''A read only property that returns the path basename as a python string.''')
100 dirname = property(GetDirectory, None, doc='''A read only property that returns the path directory name as a python string.''')
101 exists = property(Exists, None, doc='''A read only property that returns a boolean value that indicates if the file exists.''')
H A DSBTypeEnumMember.i49 name = property(GetName, None, doc='''A read only property that returns the name for this enum member as a string.''')
50 type = property(GetType, None, doc='''A read only property that returns an lldb object that represents the type (lldb.SBType) for this enum member.''')
51 signed = property(GetValueAsSigned, None, doc='''A read only property that returns the value of this enum member as a signed integer.''')
52 unsigned = property(GetValueAsUnsigned, None, doc='''A read only property that returns the value of this enum member as a unsigned integer.''')
H A DSBType.i50 name = property(GetName, None, doc='''A read only property that returns the name for this member as a string.''')
51 type = property(GetType, None, doc='''A read only property that returns an lldb object that represents the type (lldb.SBType) for this member.''')
52 byte_offset = property(GetOffsetInBytes, None, doc='''A read only property that returns offset in bytes for this member as an integer.''')
53 bit_offset = property(GetOffsetInBits, None, doc='''A read only property that returns offset in bits for this member as an integer.''')
54 is_bitfield = property(IsBitfield, None, doc='''A read only property tha
[all...]
H A DSBTypeNameSpecifier.i60 name = property(GetName)
61 is_regex = property(IsRegex)
/freebsd-13-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueProperties.cpp34 // non-global settings and copy the property values so that all non-global
53 Property property(definition);
54 assert(property.IsValid());
55 m_name_to_index.Append(ConstString(property.GetName()), m_properties.size());
56 property.GetValue()->SetParent(shared_from_this());
57 m_properties.push_back(property);
64 Property *property = ProtectedGetPropertyAtIndex(property_idx); local
65 if (property)
66 property->SetValueChangedCallback(std::move(callback));
73 Property property(nam
267 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
276 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
284 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
303 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx); local
322 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
333 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx); local
347 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
355 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
366 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx); local
378 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx); local
390 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
401 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
413 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx); local
425 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
436 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
447 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
458 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx); local
470 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
481 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx); local
500 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx); local
511 const Property *property = GetPropertyAtIndex(exe_ctx, true, idx); local
556 const Property *property = GetPropertyAtIndex(exe_ctx, false, i); local
594 const Property *property = nullptr; local
626 const Property *property = ProtectedGetPropertyAtIndex(i); local
631 const Property *property = ProtectedGetPropertyAtIndex(i); local
643 const Property *property = ProtectedGetPropertyAtIndex(i); local
[all...]
/freebsd-13-stable/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-13-stable/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-13-stable/tests/sys/cddl/zfs/tests/cli_root/zfs_mount/
H A Dzfs_mount_007_pos.ksh42 # without affecting the on-disk property. The original on-disk value will be
52 # 1. Create filesystem and get origianl property value.
53 # 2. Using 'zfs mount -o' to set filesystem property.
54 # 3. Verify the property was set temporarily.
55 # 4. Verify it will not affect the property that is stored on disk.
74 log_assert "Verify '-o' will set filesystem property temporarily, " \
75 "without affecting the property that is stored on disk."
81 # Get the specified filesystem property reverse mount option.
84 # $2 property
91 # Define property valu
[all...]
/freebsd-13-stable/sys/arm/broadcom/bcm2835/
H A Dbcm2835_vcio.c60 uint8_t *property; local
70 property = malloc(size, M_VCIO, M_WAITOK);
72 error = copyin(ptr, property, size);
74 free(property, M_VCIO);
78 error = bcm2835_mbox_property(property, size);
80 free(property, M_VCIO);
84 error = copyout(property, ptr, size);
85 free(property, M_VCIO);
/freebsd-13-stable/lib/libc/locale/
H A Dwctype.c60 wctype_l(const char *property, locale_t locale) argument
103 len1 = strlen(property);
106 if (len1 == len2 && memcmp(property, p, len1) == 0)
114 wctype_t wctype(const char *property) argument
116 return wctype_l(property, 0);
/freebsd-13-stable/sys/contrib/openzfs/contrib/zcp/
H A Dautosnap.lua1 -- Recursively snapshot every dataset with a given property
3 -- Usage: zfs program <pool> autosnap.lua -- [-n] [-p <property>] <snapshot>
12 usage: zfs program <pool> autosnap.lua -- [-n] [-p <property>] <snapshot>
15 -p <property>: property to check. [default: com.sun:auto-snapshot]
19 property = "com.sun:auto-snapshot"
28 property = arg
34 if root_snap == nil or property == nil then
48 auto, source = zfs.get_prop(root, property)

Completed in 152 milliseconds

123456