Home
last modified time | relevance | path

Searched refs:property (Results 1 – 25 of 1409) sorted by relevance

12345678910>>...57

/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBFrameExtensions.i69 pc = property(GetPC, SetPC)
70 …addr = property(GetPCAddress, None, doc='''A read only property that returns the program counter (…
71 …fp = property(GetFP, None, doc='''A read only property that returns the frame pointer (FP) as an u…
72 …sp = property(GetSP, None, doc='''A read only property that returns the stack pointer (SP) as an u…
73 …module = property(GetModule, None, doc='''A read only property that returns an lldb object that re…
74 …compile_unit = property(GetCompileUnit, None, doc='''A read only property that returns an lldb obj…
75 …function = property(GetFunction, None, doc='''A read only property that returns an lldb object tha…
76 …symbol = property(GetSymbol, None, doc='''A read only property that returns an lldb object that re…
77 …block = property(GetBlock, None, doc='''A read only property that returns an lldb object that repr…
78 …is_inlined = property(IsInlined, None, doc='''A read only property that returns an boolean that in…
[all …]
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 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 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 DSBDataExtensions.i137 …uint8 = property(_make_helper_uint8, None, doc='''A read only property that returns an array-like …
138 …uint16 = property(_make_helper_uint16, None, doc='''A read only property that returns an array-lik…
139 …uint32 = property(_make_helper_uint32, None, doc='''A read only property that returns an array-lik…
140 …uint64 = property(_make_helper_uint64, None, doc='''A read only property that returns an array-lik…
141 …sint8 = property(_make_helper_sint8, None, doc='''A read only property that returns an array-like …
142 …sint16 = property(_make_helper_sint16, None, doc='''A read only property that returns an array-lik…
143 …sint32 = property(_make_helper_sint32, None, doc='''A read only property that returns an array-lik…
144 …sint64 = property(_make_helper_sint64, None, doc='''A read only property that returns an array-lik…
145 …float = property(_make_helper_float, None, doc='''A read only property that returns an array-like …
146 …double = property(_make_helper_double, None, doc='''A read only property that returns an array-lik…
[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 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 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 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 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 DSBTypeCategoryExtensions.i85 formats = property(get_formats_array, None, doc='''A read only property that returns a list() of lldb.SBTypeFormat objects contained in this category''')
86 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.''')
87 summaries = property(get_summaries_array, None, doc='''A read only property that returns a list() of lldb.SBTypeSummary objects contained in this category''')
88 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.''')
89 filters = property(get_filters_array, None, doc='''A read only property tha
[all...]
H A DSBTargetExtensions.i178 …modules = property(get_modules_array, None, doc='''A read only property that returns a list() of l…
179 …module = property(get_modules_access_object, None, doc=r'''A read only property that returns an ob…
180 …process = property(GetProcess, None, doc='''A read only property that returns an lldb object that …
181 …executable = property(GetExecutable, None, doc='''A read only property that returns an lldb object…
182 …debugger = property(GetDebugger, None, doc='''A read only property that returns an lldb object tha…
183 …num_breakpoints = property(GetNumBreakpoints, None, doc='''A read only property that returns the n…
184 …breakpoints = property(get_target_bkpts, None, doc='''A read only property that returns a list() o…
185 …breakpoint = property(get_bkpts_access_object, None, doc='''A read only property that returns an o…
186 …num_watchpoints = property(GetNumWatchpoints, None, doc='''A read only property that returns the n…
187 …watchpoints = property(get_target_watchpoints, None, doc='''A read only property that returns a li…
[all …]
H A DSBBlockExtensions.i48 …parent = property(GetParent, None, doc='''A read only property that returns the same result as Get…
49 …first_child = property(GetFirstChild, None, doc='''A read only property that returns the same resu…
50 …call_site = property(get_call_site, None, doc='''A read only property that returns a lldb.declarat…
51 …sibling = property(GetSibling, None, doc='''A read only property that returns the same result as G…
52 …name = property(GetInlinedName, None, doc='''A read only property that returns the same result as …
53 …inlined_block = property(GetContainingInlinedBlock, None, doc='''A read only property that returns…
54 …range = property(get_ranges_access_object, None, doc='''A read only property that allows item acce…
55 …ranges = property(get_ranges_array, None, doc='''A read only property that returns a list() object…
56 …num_ranges = property(GetNumRanges, None, doc='''A read only property that returns the same result…
H A DSBSymbolContextExtensions.i6 …module = property(GetModule, SetModule, doc='''A read/write property that allows the getting/setti…
7 …compile_unit = property(GetCompileUnit, SetCompileUnit, doc='''A read/write property that allows t…
8 …function = property(GetFunction, SetFunction, doc='''A read/write property that allows the getting…
9 …block = property(GetBlock, SetBlock, doc='''A read/write property that allows the getting/setting …
10 …symbol = property(GetSymbol, SetSymbol, doc='''A read/write property that allows the getting/setti…
11 …line_entry = property(GetLineEntry, SetLineEntry, doc='''A read/write property that allows the get…
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...]
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueProperties.cpp28 Property property(definition); in Initialize() local
29 assert(property.IsValid()); in Initialize()
30 m_name_to_index.insert({property.GetName(), m_properties.size()}); in Initialize()
31 property.GetValue()->SetParent(shared_from_this()); in Initialize()
32 m_properties.push_back(property); in Initialize()
38 Property *property = ProtectedGetPropertyAtIndex(property_idx); in SetValueChangedCallback() local
39 if (property) in SetValueChangedCallback()
40 property->SetValueChangedCallback(std::move(callback)); in SetValueChangedCallback()
46 Property property(name, desc, is_global, value_sp); in AppendProperty() local
48 m_properties.push_back(property); in AppendProperty()
[all …]
/freebsd/sys/contrib/device-tree/src/arm/broadcom/
H A Dbcm-nsp-ax.dtsi13 /delete-property/ dma-coherent;
17 /delete-property/ dma-coherent;
21 /delete-property/ dma-coherent;
25 /delete-property/ dma-coherent;
29 /delete-property/ dma-coherent;
33 /delete-property/ dma-coherent;
37 /delete-property/ dma-coherent;
41 /delete-property/ dma-coherent;
45 /delete-property/ dma-coherent;
49 /delete-property/ dma-coherent;
[all …]
/freebsd/sys/contrib/device-tree/src/arm/nxp/imx/
H A Dimx6ulz.dtsi9 /delete-property/ ethernet0;
10 /delete-property/ ethernet1;
11 /delete-property/ i2c2;
12 /delete-property/ i2c3;
13 /delete-property/ serial4;
14 /delete-property/ serial5;
15 /delete-property/ serial6;
16 /delete-property/ serial7;
17 /delete-property/ spi2;
18 /delete-property/ spi3;
/freebsd/crypto/openssl/doc/man7/
H A Dproperty.pod5 property - Properties, a selection mechanism for algorithm implementations
23 A I<reserved> property name consists of a single C-style identifier
30 A I<user defined> property name is similar, but it B<must> consist of
32 The last identifier in the name can be considered the 'true' property
35 property names like
42 A I<property> is a I<name=value> pair.
43 A I<property definition> is a sequence of comma separated properties.
46 For example: "" defines an empty property definition (i.e., no restriction);
47 "my.foo=bar" defines a property named I<my.foo> which has a string value I<bar>
48 and "iteration.count=3" defines a property named I<iteration.count> which
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp66 ObjCPropertyDecl *property) { in checkPropertyDeclWithOwnership() argument
67 if (property->isInvalidDecl()) return; in checkPropertyDeclWithOwnership()
69 ObjCPropertyAttribute::Kind propertyKind = property->getPropertyAttributes(); in checkPropertyDeclWithOwnership()
71 = property->getType().getObjCLifetime(); in checkPropertyDeclWithOwnership()
76 = getImpliedARCOwnership(propertyKind, property->getType()); in checkPropertyDeclWithOwnership()
91 property->setPropertyAttributes(attr); in checkPropertyDeclWithOwnership()
97 property->setInvalidDecl(); in checkPropertyDeclWithOwnership()
98 S.Diag(property->getLocation(), in checkPropertyDeclWithOwnership()
100 << property->getDeclName() in checkPropertyDeclWithOwnership()
707 ObjCPropertyDecl *property, in checkARCPropertyImpl() argument
[all …]
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zfs_mount/
H A Dzfs_mount_007_pos.ksh119 for property in ${properties[@]}; do
120 orig_val=$(get_prop $property $fs)
121 (($? != 0)) && log_fail "get_prop $property $fs"
124 reverse_opt=$(get_reverse_option $fs $property)
127 cur_val=$(get_prop $property $fs)
128 (($? != 0)) && log_fail "get_prop $property $fs"
139 cur_val=$(get_prop $property $fs)
140 (($? != 0)) && log_fail "get_prop $property $fs"
/freebsd/sys/arm/broadcom/bcm2835/
H A Dbcm2835_vcio.c58 uint8_t *property; in vcio_ioctl() local
68 property = malloc(size, M_VCIO, M_WAITOK); in vcio_ioctl()
70 error = copyin(ptr, property, size); in vcio_ioctl()
72 free(property, M_VCIO); in vcio_ioctl()
76 error = bcm2835_mbox_property(property, size); in vcio_ioctl()
78 free(property, M_VCIO); in vcio_ioctl()
82 error = copyout(property, ptr, size); in vcio_ioctl()
83 free(property, M_VCIO); in vcio_ioctl()
/freebsd/sys/contrib/device-tree/Bindings/iio/adc/
H A Dqcom,spmi-vadc.txt26 Definition: Must be one. Child node 'reg' property should define ADC
66 - For compatible property "qcom,spmi-vadc", valid values are
67 512, 1024, 2048, 4096. If property is not found, default value
69 - For compatible property "qcom,spmi-adc5", valid values are 250, 420
70 and 840. If property is not found, default value of 840 is used.
71 - For compatible property "qcom,spmi-adc-rev2", valid values are 256,
72 512 and 1024. If property is not present, default value is 1024.
82 If property is not found default value depending on chip will be used.
88 - For compatible property "qcom,spmi-vadc", if this property is
90 channel calibration. If property is not found, channel will be
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestMaxConsumers.java43 String property = System.getProperty(name); in getIntegerProperty() local
44 if (property != null && property.length() != 0) { in getIntegerProperty()
46 value = Integer.parseInt(property); in getIntegerProperty()
57 Integer property = getIntegerProperty(MAX_CONSUMERS_PROPERTY_NAME); in main() local
58 int max = (property == null ? 0 : property); in main()
59 int n = (property == null ? 11 : (max < 1 ? 1 : max)); in main()
/freebsd/crypto/openssl/crypto/property/
H A DREADME.md12 * The number of distinct property names will be small.
15 all of their implemented algorithms. E.g. the FIPS property would be set
19 * There are a lot of algorithm implementations, therefore property
22 * ... property queries are very common. These must be fast.
28 * Property queries can never add new property definitions.
33 the property definitions as almost immutable. Specifically, a query can
45 * A cache for property definitions is also viable, if only implementation
48 the property definition string, and algorithms with the same properties
56 global and requested property strings.
66 contains the string cache which converts property
[all …]

12345678910>>...57