| /freebsd/sys/contrib/openzfs/include/sys/sysevent/ |
| H A D | dev.h | 42 * Attribute Name - EV_VERSION 43 * Attribute Type - DATA_TYPE_INT32 44 * Attribute Value - event version number 46 * Attribute Name - DEV_NAME 47 * Attribute Type - DATA_TYPE_STRING 48 * Attribute Value - /dev name to the raw device. 51 * Attribute Name - DEV_PHYS_PATH 52 * Attribute Type - DATA_TYPE_STRING 53 * Attribute Value - physical path of the device without the "/devices" 56 * Attribute Name - DEV_DRIVER_NAME [all …]
|
| /freebsd/sys/cddl/contrib/opensolaris/uts/common/sys/sysevent/ |
| H A D | dev.h | 43 * Attribute Name - EV_VERSION 44 * Attribute Type - DATA_TYPE_INT32 45 * Attribute Value - event version number 47 * Attribute Name - DEV_NAME 48 * Attribute Type - DATA_TYPE_STRING 49 * Attribute Value - /dev name to the raw device. 52 * Attribute Name - DEV_PHYS_PATH 53 * Attribute Type - DATA_TYPE_STRING 54 * Attribute Value - physical path of the device without the "/devices" 57 * Attribute Name - DEV_DRIVER_NAME [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Attributes.h | 69 class Attribute { 74 /// Note: The `uwtable' attribute is about the ABI or the user mandating an 75 /// entry in the unwind table. The `nounwind' attribute is about an exception 130 Attribute(AttributeImpl *A) : pImpl(A) {} in Attribute() function 133 Attribute() = default; 136 // Attribute Construction 139 /// Return a uniquified Attribute object. 140 LLVM_ABI static Attribute get(LLVMContext &Context, AttrKind Kind, 142 LLVM_ABI static Attribute get(LLVMContext &Context, StringRef Kind, 144 LLVM_ABI static Attribute get(LLVMContext &Context, AttrKind Kind, Type *Ty); [all …]
|
| H A D | Argument.h | 55 /// Return true if this argument has the nonnull attribute. Also returns true 58 /// If AllowUndefOrPoison is true, respect the semantics of nonnull attribute 62 /// If this argument has the dereferenceable attribute, return the number of 66 /// If this argument has the dereferenceable_or_null attribute, return the 70 /// If this argument has nofpclass attribute, return the mask representing 74 /// If this argument has a range attribute, return the value range of the 78 /// Return true if this argument has the byval attribute. 81 /// Return true if this argument has the dead_on_return attribute. 84 /// Return true if this argument has the byref attribute. 87 /// Return true if this argument has the swiftself attribute. [all …]
|
| H A D | Function.h | 351 /// Return the attribute list for this Function. 354 /// Set the attribute list for this Function. 358 /// adds the attribute to the list of attributes. 359 void addAttributeAtIndex(unsigned i, Attribute Attr); 362 void addFnAttr(Attribute::AttrKind Kind); 368 void addFnAttr(Attribute Attr); 374 void addRetAttr(Attribute::AttrKind Kind); 377 void addRetAttr(Attribute Attr); 382 /// adds the attribute to the list of attributes for the given arg. 383 void addParamAttr(unsigned ArgNo, Attribute::AttrKind Kind); [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | JSONNodeDumper.cpp | 33 JOS.attribute("id", createPointerRepresentation(A)); in Visit() 34 JOS.attribute("kind", AttrName); in Visit() 41 // various attribute syntaxes, but we don't currently track that information in Visit() 43 //JOS.attribute("spelling", A->getSpelling()); in Visit() 52 JOS.attribute("id", createPointerRepresentation(S)); in Visit() 53 JOS.attribute("kind", S->getStmtClassName()); in Visit() 58 JOS.attribute("type", createQualType(E->getType())); in Visit() 67 JOS.attribute("valueCategory", Category); in Visit() 73 JOS.attribute("id", createPointerRepresentation(T)); in Visit() 78 JOS.attribute("kind", (llvm::Twine(T->getTypeClassName()) + "Type").str()); in Visit() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Attributes.cpp | 10 // This file implements the Attribute, AttributeImpl, AttrBuilder, 50 // Attribute Construction Methods 95 Attribute Attribute::get(LLVMContext &Context, Attribute::AttrKind Kind, in get() 97 bool IsIntAttr = Attribute::isIntAttrKind(Kind); in get() 98 assert((IsIntAttr || Attribute::isEnumAttrKind(Kind)) && in get() 99 "Not an enum or int attribute"); in get() 122 // Return the Attribute that we found or created. in get() 123 return Attribute(PA); in get() 126 Attribute Attribute::get(LLVMContext &Context, StringRef Kind, StringRef Val) { in get() 145 // Return the Attribute that we found or created. in get() [all …]
|
| H A D | AttributeImpl.h | 1 //===- AttributeImpl.h - Attribute Internals --------------------*- C++ -*-===// 40 /// This class represents a single, uniqued attribute. That attribute 43 unsigned char KindID; ///< Holds the AttrEntryKind of the attribute 73 bool hasAttribute(Attribute::AttrKind A) const; 76 Attribute::AttrKind getKindAsEnum() const; 110 static void Profile(FoldingSetNodeID &ID, Attribute::AttrKind Kind) { in Profile() 111 assert(Attribute::isEnumAttrKind(Kind) && "Expected enum attribute"); in Profile() 115 static void Profile(FoldingSetNodeID &ID, Attribute::AttrKind Kind, in Profile() 117 assert(Attribute::isIntAttrKind(Kind) && "Expected int attribute"); in Profile() 127 static void Profile(FoldingSetNodeID &ID, Attribute::AttrKind Kind, in Profile() [all …]
|
| /freebsd/share/man/man7/ |
| H A D | named_attribute.7 | 11 .Nd Solaris-like extended attribute system interface 21 This interface associates a directory, known as a named attribute directory, 37 These named attributes are regular files used to store the attribute's 40 A named attribute directory does not live in the file system's name space. 60 is only permitted to rename a named attribute within the same named 61 attribute directory. 73 argument that is the name of a named attribute (not 77 ), a file descriptor for the named attribute is returned. 81 is specified, the named attribute will be created if it does not exist. 87 I/O on these named attribute file descriptors may be performed by [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/ |
| H A D | DXILPrepare.cpp | 41 constexpr bool isValidForDXIL(Attribute::AttrKind Attr) { in isValidForDXIL() 42 return is_contained({Attribute::Alignment, in isValidForDXIL() 43 Attribute::AlwaysInline, in isValidForDXIL() 44 Attribute::Builtin, in isValidForDXIL() 45 Attribute::ByVal, in isValidForDXIL() 46 Attribute::InAlloca, in isValidForDXIL() 47 Attribute::Cold, in isValidForDXIL() 48 Attribute::Convergent, in isValidForDXIL() 49 Attribute::InlineHint, in isValidForDXIL() 50 Attribute::InReg, in isValidForDXIL() [all …]
|
| /freebsd/usr.sbin/extattrctl/ |
| H A D | extattrctl.8 | 29 .\" Support for file system extended attribute. 70 as well as initialization of attribute backing files, and enabling and 78 Start extended attribute support on the file system named using 83 Stop extended attribute support on the file system named using 85 Extended attribute support must previously have been started. 92 Create and initialize a file to use as an attribute backing file. 93 You must specify a maximum per-inode size for the attribute in bytes in 95 as well as the file where the attribute will be stored, using 101 existing attribute backing file; otherwise, if the target file exists, 110 from denying attribute servic [all...] |
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DwarfUnit.h | 72 /// DW_AT_containing_type attribute. This attribute points to a DIE that 84 void addAttribute(DIEValueList &Die, dwarf::Attribute Attribute, in addAttribute() argument 88 // Attribute 0 is used when emitting form-encoded values in blocks, which in addAttribute() 91 if (Attribute != 0 && Asm->TM.Options.DebugStrictDwarf && in addAttribute() 92 DD->getDwarfVersion() < dwarf::AttributeVersion(Attribute)) in addAttribute() 96 DIEValue(Attribute, Form, std::forward<T>(Value))); in addAttribute() 156 void addFlag(DIE &Die, dwarf::Attribute Attribute); 158 /// Add an unsigned integer attribute data and value. 159 void addUInt(DIEValueList &Die, dwarf::Attribute Attribute, 164 /// Add an signed integer attribute data and value. [all …]
|
| /freebsd/contrib/elftoolchain/libdwarf/ |
| H A D | dwarf_attrval_signed.3 | 35 .Nd retrieve the value of an attribute within a DWARF debugging information entry 72 for the attribute named by argument 74 If the named attribute is found, the functions set the location 77 to the value of the attribute. 87 to either 0 or 1. If the form of the attribute named by argument 95 to 1 if the attribute has a non-zero value, or to 0 otherwise. 96 If the form of the attribute named by argument 105 The form of the attribute must be one of 112 stores the value for the attribute named by argument 116 The attribute's value is treated as a signed integral quantity and is [all …]
|
| H A D | dwarf_highpc.3 | 39 .Nd retrieve the value of a DWARF attribute 95 These convenience functions are used to retrieve DWARF attribute 99 These functions store the value of the requested attribute into the 101 attribute exists in the debugging information entry. 103 The list of functions and the DWARF attribute that they retrieve are: 109 attribute value. 113 attribute value. 117 attribute value. 121 attribute value. 125 attribute value. [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | AssumeBundleQueries.h | 34 /// Query the operand bundle of an llvm.assume to find a single attribute of 38 /// attribute is going to be queried. 40 /// Return true iff the queried attribute was found. 46 Attribute::AttrKind Kind, 49 Attribute::getNameFromAttrKind(Kind), ArgVal); 52 template<> struct DenseMapInfo<Attribute::AttrKind> { 53 static Attribute::AttrKind getEmptyKey() { 54 return Attribute::EmptyKey; 56 static Attribute::AttrKind getTombstoneKey() { 57 return Attribute::TombstoneKey; [all …]
|
| /freebsd/sys/contrib/edk2/Include/Guid/ |
| H A D | GlobalVariable.h | 35 // The attribute for them is NV+BS+RT, #### is a printed hex value, and no 0x or h 42 /// Its attribute is BS+RT. 47 /// Its attribute is NV+BS+RT. 52 /// Its attribute is NV+BS+RT. 57 /// Its attribute is BS+RT. 62 /// Its attribute is NV+BS+RT. 67 /// Its attribute is NV+BS+RT. 74 /// Its attribute is BS+RT. 81 /// Its attribute is NV+BS+RT. 86 /// Its attribute is NV+BS+RT. [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | ForceFunctionAttrs.cpp | 22 "force-attribute", cl::Hidden, 24 "Add an attribute to a function. This can be a " 25 "pair of 'function-name:attribute-name', to apply an attribute to a " 27 "example -force-attribute=foo:noinline. Specifying only an attribute " 28 "will apply the attribute to every function in the module. This " 32 "force-remove-attribute", cl::Hidden, 33 cl::desc("Remove an attribute from a function. This can be a " 34 "pair of 'function-name:attribute-name' to remove an attribute " 36 "example -force-remove-attribute=foo:noinline. Specifying only an " 37 "attribute will remove the attribute from all functions in the " [all …]
|
| /freebsd/contrib/wpa/src/common/ |
| H A D | qca-vendor.h | 53 * (such as 2X2 or 1X1) can be done using this attribute. 118 * since only one of the TX_NSS or RX_NSS attribute is present. 128 * TX/RX NSS attribute is missing, the driver rejects the command. 135 * per band TX/RX chains attribute is missing, the driver rejects the command. 177 * encapsulated inside any attribute. Attribute QCA_WLAN_VENDOR_ATTR_NAN 182 * If %NL80211_ATTR_VENDOR_DATA is sent as an empty nested attribute this 192 * If %NL80211_ATTR_VENDOR_DATA is sent as an empty nested attribute this 202 * If %NL80211_ATTR_VENDOR_DATA is sent as an empty nested attribute this 274 * command, there is no significance for the value sent in the attribute 276 * attribute documentation. The driver accepts the command only if all the [all …]
|
| /freebsd/share/man/man3/ |
| H A D | pthread.3 | 56 Attribute Object Routines 143 .Ss Attribute Object Routines 156 Get the inherit scheduling attribute from a thread attributes object. 163 Get the scheduling parameter attribute from a thread attributes object. 168 Get the scheduling policy attribute from a thread attributes object. 173 Get the contention scope attribute from a thread attributes object. 178 Get the stack size attribute from a thread attributes object. 183 Get the stack address attribute from a thread attributes object. 188 Get the detach state attribute from a thread attributes object. 198 Set the inherit scheduling attribute in a thread attributes object. [all …]
|
| /freebsd/contrib/smart/ |
| H A D | smart.8 | 39 .Oo Fl a Ar page:attribute Ns Oo , Ns Ar page:attribute Oc Ns ... Oc 44 .Oo Fl a Ar page:attribute Ns Oo , Ns Ar page:attribute Oc Ns ... Oc 57 <Page ID> <Attribute ID> <Value> <Thresholds> 68 Note that devices choose which attribute ID values they support, their 78 Nominal attribute value (byte offset 3, 1 byte) 80 Worst Ever attribute value (byte offset 4, 1 byte) 88 the command represents this entry with a synthetic attribute 89 ID of 0, and it uses the command status (0 or 1) as the attribute 93 The data returned in this log page is not structured as attribute IDs. 96 uses the byte offset of each field as the attribute ID. [all …]
|
| /freebsd/share/examples/ypldap/ |
| H A D | ypldap.conf | 20 attribute name maps to "uid" 21 fixed attribute passwd "*" 22 attribute uid maps to "uidNumber" 23 attribute gid maps to "gidNumber" 24 attribute gecos maps to "cn" 25 attribute home maps to "homeDirectory" 26 attribute shell maps to "loginShell" 27 fixed attribute change "0" 28 fixed attribute expire "0" 29 fixed attribute class "" [all …]
|
| /freebsd/tests/sys/cddl/zfs/tests/acl/trivial/ |
| H A D | zfs_acl_cp_003_neg.ksh | 36 # Verifies that cp will not be able to include file attribute when 37 # attribute is unreadable (unless the user is root) 40 # 1. In directory A, create several files and add attribute files for them 41 # 2. chmod all files'the attribute files to '000'. 43 # 4. Verify attribute files are not existing for non-root user. 57 log_assert "Verifies that cp won't be able to include file attribute when " \ 58 "attribute is unreadable (except root)" 72 # chmod all the attribute files to '000'. 73 usr_exec $RUNAT $f $CHMOD 000 attribute.$j 79 # Implement 'cp -@p' to the file whose attribute files [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | AttrDocs.td | 1 //==--- AttrDocs.td - Attribute documentation ----------------------------===// 54 The ``section`` attribute allows you to specify a specific section a 63 The ``model`` attribute allows overriding the translation unit's 82 This attribute, when attached to a function or variable definition, indicates 91 Whether this attribute has any effect on the linker depends on the target and 95 targets (Windows and Apple platforms), the `used` attribute prevents symbols 98 This linker GC can be avoided by also adding the ``retain`` attribute. Note 99 that ``retain`` requires special support from the linker; see that attribute's 107 This attribute, when attached to a function or variable definition, prevents 113 this attribute has no effect. This attribute is typically combined with the [all …]
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | CMS_signed_get_attr.pod | 17 - CMS signed and unsigned attribute functions 66 CMS_signerInfo contains separate attribute lists for signed and unsigned 74 I<obj> in the SignerInfo's I<si> signed attribute list. The search starts at the 79 the signed attribute list. 86 I<si> signed attribute list. I<loc> should be in the range from 0 to 90 the I<si> signed attribute list. An error occurs if the I<si> attribute list 94 to the I<si> signed attribute list. A new signed attribute list is created if 100 to the I<key> object's attribute list. 110 CMS_signed_get0_data_by_OBJ() finds the first attribute in a I<si> signed 113 object. An error will occur if the attribute type I<type> does not match the [all …]
|
| /freebsd/secure/lib/libcrypto/man/man3/ |
| H A D | CMS_signed_get_attr.3 | 79 \&\- CMS signed and unsigned attribute functions 128 CMS_signerInfo contains separate attribute lists for signed and unsigned 136 \&\fIobj\fR in the SignerInfo\*(Aqs \fIsi\fR signed attribute list. The search starts at the 141 the signed attribute list. 148 \&\fIsi\fR signed attribute list. \fIloc\fR should be in the range from 0 to 152 the \fIsi\fR signed attribute list. An error occurs if the \fIsi\fR attribute list 156 to the \fIsi\fR signed attribute list. A new signed attribute list is created if 162 to the \fIkey\fR object\*(Aqs attribute lis [all...] |