Searched refs:attributes (Results 1 - 25 of 144) sorted by relevance

123456

/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/
H A Derr.D_PRAGMA_MALFORM.d37 #pragma D attributes incorrect_attr
H A Derr.D_PRAGMA_INVAL.d31 * Verify invalid attributes
40 #pragma D attributes incorrect_attr foo
H A Derr.D_PRAGMA_UNUSED.UnusedPragma.d40 #pragma D attributes Stable/Stable/Common func;
/freebsd-11-stable/contrib/gcc/config/
H A Dsol2.c34 /* Attach any pending attributes for DECL to the list in *ATTRIBUTES.
35 Pending attributes come from #pragma or _Pragma, so this code is
41 solaris_insert_attributes (tree decl, tree *attributes) argument
53 || lookup_attribute ("aligned", *attributes))
57 *attributes = tree_cons (get_identifier ("aligned"), value,
58 *attributes);
72 *attributes = tree_cons (get_identifier ("init"), NULL,
73 *attributes);
74 *attributes = tree_cons (get_identifier ("used"), NULL,
75 *attributes);
[all...]
/freebsd-11-stable/sys/dev/isci/scil/
H A Dsci_memory_descriptor_list_decorator.h72 * memory descriptors with exact matching memory attributes.
73 * If the supplied attributes value is 0, then all MDEs are
77 * for MDEs with matching memory attributes.
78 * @param[in] attributes This parameter specifies the attributes to
84 * exactly match the supplied memory attributes.
88 U32 attributes
94 * exact matching attributes as those supplied by parameter.
95 * If the supplied attributes value is 0, then all MDEs will
104 * for MDEs with matching memory attributes
[all...]
H A Dsci_base_memory_descriptor_list_decorator.c69 U32 attributes
79 if ( (mde->constant_memory_attributes == attributes)
80 || (attributes == 0) )
94 U32 attributes,
113 if ( (mde->constant_memory_attributes == attributes)
114 || (attributes == 0) )
92 sci_mdl_decorator_assign_memory( SCI_MEMORY_DESCRIPTOR_LIST_HANDLE_T mdl, U32 attributes, POINTER_UINT virtual_address, SCI_PHYSICAL_ADDRESS sci_physical_address ) argument
H A Dsci_base_memory_descriptor_list.h132 #define sci_base_mde_construct(mde, alignment, size, attributes) \
136 (mde)->constant_memory_attributes = (attributes); \
149 * @param[in] attributes This parameter specifies the attributes for the
161 U16 attributes
H A Dsci_base_memory_descriptor_list.c149 U16 attributes
160 || (mde->constant_memory_attributes != attributes)
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libzpool/common/
H A Dzfs.d32 #pragma D attributes Evolving/Evolving/ISA provider zfs provider
33 #pragma D attributes Private/Private/Unknown provider zfs module
34 #pragma D attributes Private/Private/Unknown provider zfs function
35 #pragma D attributes Evolving/Evolving/ISA provider zfs name
36 #pragma D attributes Evolving/Evolving/ISA provider zfs args
/freebsd-11-stable/contrib/tcsh/
H A Dtc.prompt.c167 tprintf_append_mbs(struct Strbuf *buf, const char *mbs, Char attributes) argument
173 Strbuf_append1(buf, wc | attributes);
182 Char attributes = 0; local
204 tprintf_append_mbs(&buf, cz, attributes);
208 tprintf_append_mbs(&buf, str, attributes);
229 Strbuf_append1(&buf, attributes | Scp);
244 tprintf_append_mbs(&buf, cz, attributes);
277 p = Itoa(hr, adrof(STRpadhour) ? 2 : 0, attributes);
280 Strbuf_append1(&buf, attributes | ':');
281 p = Itoa(t->tm_min, 2, attributes);
[all...]
H A Dtc.printf.c70 int attributes = 0; local
76 (*addchar) (((unsigned char)*f) | attributes);
177 (*addchar) (pad | attributes);
181 (*addchar) (((unsigned char) *bp) | attributes);
186 (*addchar) (' ' | attributes);
248 (*addchar) (pad | attributes);
252 (*addchar) (((unsigned char) *bp) | attributes);
255 (*addchar) (' ' | attributes);
263 (*addchar) (i | attributes);
278 (*addchar) ((int) (pad | attributes));
[all...]
/freebsd-11-stable/crypto/openssl/crypto/asn1/
H A Dx_req.c67 * encode the attributes field if it is empty. This is in
69 * this by making the attributes field OPTIONAL then using
76 * the information is now contained in the attributes field:
79 * 3. If it is not empty then some attributes are present.
89 rinf->attributes = sk_X509_ATTRIBUTE_new_null();
90 if (!rinf->attributes)
103 ASN1_IMP_SET_OF_OPT(X509_REQ_INFO, attributes, X509_ATTRIBUTE, 0)
/freebsd-11-stable/crypto/openssl/crypto/store/
H A Dstr_mem.c75 * attributes associated with the object (basically, the difference between
95 * be used to add attributes
107 * attributes to search for. Each
112 * which of the search attributes we
124 OPENSSL_ITEM attributes[],
127 OPENSSL_ITEM attributes[],
130 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
138 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
140 OPENSSL_ITEM attributes[],
145 static int mem_lock(STORE *s, OPENSSL_ITEM attributes[],
186 mem_generate(STORE *s, STORE_OBJECT_TYPES type, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
194 mem_get(STORE *s, STORE_OBJECT_TYPES type, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
209 mem_store(STORE *s, STORE_OBJECT_TYPES type, STORE_OBJECT *data, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
228 mem_delete(STORE *s, STORE_OBJECT_TYPES type, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
243 mem_list_start(STORE *s, STORE_OBJECT_TYPES type, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
368 mem_lock(STORE *s, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
374 mem_unlock(STORE *s, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
[all...]
H A Dstore.h193 * Store functions take attribute lists. Those attributes come with codes.
256 X509 *STORE_get_certificate(STORE *e, OPENSSL_ITEM attributes[],
258 int STORE_store_certificate(STORE *e, X509 *data, OPENSSL_ITEM attributes[],
265 int STORE_revoke_certificate(STORE *e, OPENSSL_ITEM attributes[],
267 int STORE_delete_certificate(STORE *e, OPENSSL_ITEM attributes[],
269 void *STORE_list_certificate_start(STORE *e, OPENSSL_ITEM attributes[],
274 EVP_PKEY *STORE_generate_key(STORE *e, OPENSSL_ITEM attributes[],
276 EVP_PKEY *STORE_get_private_key(STORE *e, OPENSSL_ITEM attributes[],
279 OPENSSL_ITEM attributes[],
286 int STORE_revoke_private_key(STORE *e, OPENSSL_ITEM attributes[],
[all...]
H A Dstr_lib.c238 X509 *STORE_get_certificate(STORE *s, OPENSSL_ITEM attributes[], argument
248 attributes, parameters);
264 int STORE_store_certificate(STORE *s, X509 *data, OPENSSL_ITEM attributes[], argument
286 object, attributes, parameters);
318 int STORE_revoke_certificate(STORE *s, OPENSSL_ITEM attributes[], argument
325 attributes, parameters)) {
333 int STORE_delete_certificate(STORE *s, OPENSSL_ITEM attributes[], argument
340 attributes, parameters)) {
348 void *STORE_list_certificate_start(STORE *s, OPENSSL_ITEM attributes[], argument
358 attributes, parameter
417 STORE_generate_key(STORE *s, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
441 STORE_get_private_key(STORE *s, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
465 STORE_store_private_key(STORE *s, EVP_PKEY *data, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
524 STORE_revoke_private_key(STORE *s, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
543 STORE_delete_private_key(STORE *s, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
558 STORE_list_private_key_start(STORE *s, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
625 STORE_get_public_key(STORE *s, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
649 STORE_store_public_key(STORE *s, EVP_PKEY *data, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
708 STORE_revoke_public_key(STORE *s, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
727 STORE_delete_public_key(STORE *s, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
742 STORE_list_public_key_start(STORE *s, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
809 STORE_generate_crl(STORE *s, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
833 STORE_get_crl(STORE *s, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
857 STORE_store_crl(STORE *s, X509_CRL *data, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
909 STORE_delete_crl(STORE *s, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
923 STORE_list_crl_start(STORE *s, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
986 STORE_store_number(STORE *s, BIGNUM *data, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
1035 STORE_get_number(STORE *s, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
1056 STORE_delete_number(STORE *s, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
1070 STORE_store_arbitrary(STORE *s, BUF_MEM *data, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
1120 STORE_get_arbitrary(STORE *s, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
1142 STORE_delete_arbitrary(STORE *s, OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) argument
1450 OPENSSL_ITEM *attributes; member in struct:attr_list_ctx_st
1452 STORE_parse_attrs_start(OPENSSL_ITEM *attributes) argument
[all...]
/freebsd-11-stable/crypto/openssl/crypto/evp/
H A Devp_pkey.c173 return X509at_get_attr_count(key->attributes);
178 return X509at_get_attr_by_NID(key->attributes, nid, lastpos);
184 return X509at_get_attr_by_OBJ(key->attributes, obj, lastpos);
189 return X509at_get_attr(key->attributes, loc);
194 return X509at_delete_attr(key->attributes, loc);
199 if (X509at_add1_attr(&key->attributes, attr))
208 if (X509at_add1_attr_by_OBJ(&key->attributes, obj, type, bytes, len))
217 if (X509at_add1_attr_by_NID(&key->attributes, nid, type, bytes, len))
226 if (X509at_add1_attr_by_txt(&key->attributes, attrname, type, bytes, len))
/freebsd-11-stable/contrib/groff/src/utils/xtotroff/
H A Dxtotroff.c54 || p->ascent != 0 || p->descent != 0 || p->attributes != 0;
61 unsigned int attributes; local
64 if (!XParseFontName(font_name, &parsed, &attributes)) {
69 attributes &= ~(FontNamePixelSize | FontNameAverageWidth
72 XFormatFontName(&parsed, attributes, canon_font_name);
107 unsigned int attributes; local
116 if (!XParseFontName(font_name, &parsed, &attributes)) {
121 attributes &= ~(FontNamePixelSize | FontNameAverageWidth);
122 attributes |= FontNameResolutionX;
123 attributes |
[all...]
/freebsd-11-stable/crypto/openssl/crypto/x509/
H A Dx509_req.c246 if (!req->req_info->attributes) {
247 if (!(req->req_info->attributes = sk_X509_ATTRIBUTE_new_null()))
250 if (!sk_X509_ATTRIBUTE_push(req->req_info->attributes, attr))
269 return X509at_get_attr_count(req->req_info->attributes);
274 return X509at_get_attr_by_NID(req->req_info->attributes, nid, lastpos);
280 return X509at_get_attr_by_OBJ(req->req_info->attributes, obj, lastpos);
285 return X509at_get_attr(req->req_info->attributes, loc);
290 return X509at_delete_attr(req->req_info->attributes, loc);
295 if (X509at_add1_attr(&req->req_info->attributes, attr))
304 if (X509at_add1_attr_by_OBJ(&req->req_info->attributes, ob
[all...]
/freebsd-11-stable/cddl/lib/libdtrace/
H A Dsched.d66 #pragma D attributes Stable/Stable/Common curcpu
70 #pragma D attributes Stable/Stable/Common cpu
74 #pragma D attributes Stable/Stable/Common pset
78 #pragma D attributes Stable/Stable/Common chip
82 #pragma D attributes Stable/Stable/Common lgrp
/freebsd-11-stable/lib/libefivar/
H A Defivar.c149 uint8_t *data, size_t data_size, uint32_t attributes)
153 attributes | EFI_VARIABLE_APPEND_WRITE);
166 uint8_t **data, size_t *data_size, uint32_t *attributes)
187 if (attributes != NULL)
188 *attributes = var.attrib;
197 uint32_t *attributes)
201 return efi_get_variable(guid, name, NULL, NULL, attributes);
361 uint8_t *data, size_t data_size, uint32_t attributes)
376 var.attrib = attributes;
148 efi_append_variable(efi_guid_t guid, const char *name, uint8_t *data, size_t data_size, uint32_t attributes) argument
165 efi_get_variable(efi_guid_t guid, const char *name, uint8_t **data, size_t *data_size, uint32_t *attributes) argument
196 efi_get_variable_attributes(efi_guid_t guid, const char *name, uint32_t *attributes) argument
360 efi_set_variable(efi_guid_t guid, const char *name, uint8_t *data, size_t data_size, uint32_t attributes) argument
H A Defivar.h71 uint8_t *data, size_t data_size, uint32_t attributes);
74 uint8_t **data, size_t *data_size, uint32_t *attributes);
76 uint32_t *attributes);
86 uint8_t *data, size_t data_size, uint32_t attributes);
/freebsd-11-stable/crypto/heimdal/lib/kadm5/
H A Dget_s.c100 out->attributes |= ent.entry.flags.postdate ? 0 : KRB5_KDB_DISALLOW_POSTDATED;
101 out->attributes |= ent.entry.flags.forwardable ? 0 : KRB5_KDB_DISALLOW_FORWARDABLE;
102 out->attributes |= ent.entry.flags.initial ? KRB5_KDB_DISALLOW_TGT_BASED : 0;
103 out->attributes |= ent.entry.flags.renewable ? 0 : KRB5_KDB_DISALLOW_RENEWABLE;
104 out->attributes |= ent.entry.flags.proxiable ? 0 : KRB5_KDB_DISALLOW_PROXIABLE;
105 out->attributes |= ent.entry.flags.invalid ? KRB5_KDB_DISALLOW_ALL_TIX : 0;
106 out->attributes |= ent.entry.flags.require_preauth ? KRB5_KDB_REQUIRES_PRE_AUTH : 0;
107 out->attributes |= ent.entry.flags.server ? 0 : KRB5_KDB_DISALLOW_SVR;
108 out->attributes |= ent.entry.flags.change_pw ? KRB5_KDB_PWCHANGE_SERVICE : 0;
109 out->attributes |
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFBaseDIE.cpp132 size_t DWARFBaseDIE::GetAttributes(DWARFAttributes &attributes, argument
135 return m_die->GetAttributes(m_cu, attributes, depth);
137 attributes.Clear();
/freebsd-11-stable/contrib/amd/conf/nfs_prot/
H A Dnfs_prot_freebsd2.h58 #define drok_attributes attributes
76 #define ns_attr_u attributes
/freebsd-11-stable/crypto/heimdal/kadmin/
H A Dutil.c46 * attributes
72 * convert the attributes in `attributes' into a printable string
77 attributes2str(krb5_flags attributes, char *str, size_t len) argument
79 unparse_flags (attributes, kdb_attrs, str, len);
83 * convert the string in `str' into attributes in `flags'
102 * try to parse the string `resp' into attributes in `attr', also
103 * setting the `bit' in `mask' if attributes are given and valid.
125 * allow the user to edit the attributes in `attr', prompting with `prompt'
393 ent->attributes
433 set_entry(krb5_context contextp, kadm5_principal_ent_t ent, int *mask, const char *max_ticket_life, const char *max_renewable_life, const char *expiration, const char *pw_expiration, const char *attributes) argument
[all...]

Completed in 145 milliseconds

123456