Home
last modified time | relevance | path

Searched full:property (Results 1 – 25 of 3014) sorted by relevance

12345678910>>...121

/freebsd/crypto/openssl/test/recipes/
H A D30-test_evp_fetch_prov.t31 { args => [ '-property', 'provider=default' ],
32 message => 'using property "provider=default"' },
33 { args => [ '-property', 'provider!=fips' ],
34 message => 'using property "provider!=fips"' },
35 { args => [ '-property', 'provider!=default', '-fetchfail' ],
37 'using property "provider!=default" is expected to fail' },
38 { args => [ '-property', 'provider=fips', '-fetchfail' ],
40 'using property "provider=fips" is expected to fail' } ] }
48 { args => [ '-property', '' ] },
49 { args => [ '-property', 'provider=fips' ],
[all …]
/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 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 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 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 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 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 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...]
/freebsd/sys/dev/bhnd/nvram/
H A Dbhnd_nvram_plist.c53 * Allocate and initialize a new, empty property list.
55 * The caller is responsible for releasing the returned property value
90 * @param plist The property list to be retained.
106 * @param plist The property list to be released.
119 /* Free all property entries */ in bhnd_nvram_plist_release()
132 * The caller is responsible for releasing the returned property value
155 BHND_NV_LOG("error copying property: %d\n", in bhnd_nvram_plist_copy()
178 * Return true if @p plist contains a property name @p name, false otherwise.
180 * @param plist The property list to be queried.
181 * @param name The property name to be queried.
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DTypeProperties.td1 //==--- TypeProperties.td - Type property definitions ---------------------===//
13 def : Property<"elementType", QualType> {
21 def : Property<"pointeeType", QualType> {
29 def : Property<"WrappedTy", QualType> {
32 def : Property<"CountExpr", ExprRef> {
35 def : Property<"CountInBytes", Bool> {
38 def : Property<"OrNull", Bool> {
41 def : Property<"CoupledDecls", Array<TypeCoupledDeclRefInfo>> {
48 def : Property<"originalType", QualType> {
51 def : Property<"adjustedType", QualType> {
[all …]
/freebsd/sys/contrib/openzfs/man/man8/
H A Dzfs-allow.8177 Permission names are the same as ZFS subcommand and property names.
178 See the property list below.
179 Property set names, which begin with
193 property.
218 groupquota other Allows accessing any \fBgroupquota@\fI…\fR property
219 groupobjquota other Allows accessing any \fBgroupobjquota@\fI…\fR property
220 groupused other Allows reading any \fBgroupused@\fI…\fR property
221 groupobjused other Allows reading any \fBgroupobjused@\fI…\fR property
222 userprop other Allows changing any user property
223 userquota other Allows accessing any \fBuserquota@\fI…\fR property
[all …]
H A Dzfs-unallow.8177 Permission names are the same as ZFS subcommand and property names.
178 See the property list below.
179 Property set names, which begin with
193 property.
218 groupquota other Allows accessing any \fBgroupquota@\fI…\fR property
219 groupobjquota other Allows accessing any \fBgroupobjquota@\fI…\fR property
220 groupused other Allows reading any \fBgroupused@\fI…\fR property
221 groupobjused other Allows reading any \fBgroupobjused@\fI…\fR property
222 userprop other Allows changing any user property
223 userquota other Allows accessing any \fBuserquota@\fI…\fR property
[all …]
H A Dzpool-set.842 .Sy all Ns | Ns Ar property Ns Oo , Ns Ar property Oc Ns …
50 .Sy all Ns | Ns Ar property Ns Oo , Ns Ar property Oc Ns …
57 .Ar property Ns = Ns Ar value
62 .Ar property Ns = Ns Ar value
74 .Sy all Ns | Ns Ar property Ns Oo , Ns Ar property Oc Ns …
85 .Bl -tag -compact -offset Ds -width "property"
88 .It Sy property
[all...]
H A Dzpool-get.842 .Sy all Ns | Ns Ar property Ns Oo , Ns Ar property Oc Ns …
50 .Sy all Ns | Ns Ar property Ns Oo , Ns Ar property Oc Ns …
57 .Ar property Ns = Ns Ar value
62 .Ar property Ns = Ns Ar value
74 .Sy all Ns | Ns Ar property Ns Oo , Ns Ar property Oc Ns …
85 .Bl -tag -compact -offset Ds -width "property"
88 .It Sy property
89 Property name.
91 Property value.
93 Property source, either
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVElement.h68 enum class Property { enum
103 LVProperties<Property> Properties;
142 PROPERTY(Property, IsLine);
143 PROPERTY(Property, IsScope);
144 PROPERTY(Property, IsSymbol);
145 PROPERTY(Property, IsType);
146 PROPERTY(Property, IsEnumClass);
147 PROPERTY(Property, IsExternal);
148 PROPERTY(Property, HasType);
149 PROPERTY(Property, HasAugmentedName);
[all …]
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueProperties.cpp15 #include "lldb/Interpreter/Property.h"
28 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
[all …]
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTargetProperties.td4 def InjectLocalVars : Property<"inject-local-vars", "Boolean">,
10 def DefaultArch: Property<"default-arch", "Arch">,
14 def MoveToNearestCode: Property<"move-to-nearest-code", "Boolean">,
17 def Language: Property<"language", "Language">,
20 def ExprPrefix: Property<"expr-prefix", "FileSpec">,
23 def ExprErrorLimit: Property<"expr-error-limit", "UInt64">,
27 def ExprAllocAddress: Property<"expr-alloc-address", "UInt64">,
30 def ExprAllocSize: Property<"expr-alloc-size", "UInt64">,
33 def ExprAllocAlign: Property<"expr-alloc-align", "UInt64">,
36 def PreferDynamic: Property<"prefer-dynamic-value", "Enum">,
[all …]
/freebsd/contrib/llvm-project/lldb/utils/TableGen/
H A DLLDBPropertyDefEmitter.cpp24 static void emitPropertyEnum(Record *Property, raw_ostream &OS) { in emitPropertyEnum() argument
26 OS << Property->getName(); in emitPropertyEnum()
30 static void emitProperty(Record *Property, raw_ostream &OS) { in emitProperty() argument
33 // Emit the property name. in emitProperty()
34 OS << "\"" << Property->getValueAsString("Name") << "\""; in emitProperty()
37 // Emit the property type. in emitProperty()
38 llvm::StringRef type = Property->getValueAsString("Type"); in emitProperty()
43 // Emit the property's global value. in emitProperty()
44 OS << (Property->getValue("Global") ? "true" : "false"); in emitProperty()
47 bool hasDefaultUnsignedValue = Property in emitProperty()
[all...]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp1 //===--- SemaObjCProperty.cpp - Semantic Analysis for ObjC @property ------===//
9 // This file implements semantic analysis for Objective C @property and
33 /// getImpliedARCOwnership - Given a set of property attributes and a
54 // property type. in getImpliedARCOwnership()
63 /// Check the internal consistency of a property declaration with
66 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()
[all …]
/freebsd/share/man/man9/
H A DOF_getprop.993 Property with a zero-length value usually represents boolean
95 If the property is present, it signifies true, otherwise false.
108 returns either the length of the value associated with the property
112 or 0 if the property exists but has no associated value.
120 bytes from the value associated with the property
127 property does not exist.
136 if the property does not exist.
143 has a property specified by
145 and zero if the property does not exist.
148 recursively looks for the property specified by
[all …]
/freebsd/crypto/openssl/doc/man7/
H A Dproperty.pod5 property - Properties, a selection mechanism for algorithm implementations
19 =head2 Property Names
21 Property names fall into two categories: those reserved by the OpenSSL
23 A I<reserved> property name consists of a single C-style identifier
27 Property names are case-insensitive, but OpenSSL will only use lowercase
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.
[all …]
/freebsd/sys/contrib/libfdt/
H A Dlibfdt.h62 /* FDT_ERR_NOTFOUND: The requested node or property does not exist */
64 /* FDT_ERR_EXISTS: Attempted to create a node or property which
83 * This can be caused either by an invalid phandle property
124 * or similar property with a bad format or value */
127 /* FDT_ERR_BADVALUE: Device tree has a property with an unexpected
128 * value. For example: a property expected to contain a string list
134 * unexpected or missing value, property or node. */
452 * fdt_first_property_offset - find the offset of a node's first property
456 * fdt_first_property_offset() finds the first property of the node at
460 * structure block offset of the property (>=0), on success
[all …]
/freebsd/secure/lib/libcrypto/man/man7/
H A Dproperty.7133 .IX Title "PROPERTY 7ossl"
134 .TH PROPERTY 7ossl "2023-09-19" "3.0.11" "OpenSSL"
140 property \- Properties, a selection mechanism for algorithm implementations
152 .SS "Property Names"
153 .IX Subsection "Property Names"
154 Property names fall into two categories: those reserved by the OpenSSL
156 A \fIreserved\fR property name consists of a single C\-style identifier
160 Property names are case-insensitive, but OpenSSL will only use lowercase
163 A \fIuser defined\fR property name is similar, but it \fBmust\fR consist of
165 The last identifier in the name can be considered the 'true' property
[all …]

12345678910>>...121