Home
last modified time | relevance | path

Searched refs:attributes (Results 1 – 25 of 434) sorted by relevance

12345678910>>...18

/freebsd/contrib/tcsh/
H A Dtc.prompt.c167 tprintf_append_mbs(struct Strbuf *buf, const char *mbs, Char attributes) in tprintf_append_mbs() argument
173 Strbuf_append1(buf, wc | attributes); in tprintf_append_mbs()
182 Char attributes = 0; in tprintf() local
204 tprintf_append_mbs(&buf, cz, attributes); in tprintf()
208 tprintf_append_mbs(&buf, str, attributes); in tprintf()
229 Strbuf_append1(&buf, attributes | Scp); in tprintf()
244 tprintf_append_mbs(&buf, cz, attributes); in tprintf()
277 p = Itoa(hr, adrof(STRpadhour) ? 2 : 0, attributes); in tprintf()
280 Strbuf_append1(&buf, attributes | ':'); in tprintf()
281 p = Itoa(t->tm_min, 2, attributes); in tprintf()
[all …]
H A Dtc.printf.c70 int attributes = 0; in doprnt() local
76 (*addchar) (((unsigned char)*f) | attributes); in doprnt()
177 (*addchar) (pad | attributes); in doprnt()
181 (*addchar) (((unsigned char) *bp) | attributes); in doprnt()
186 (*addchar) (' ' | attributes); in doprnt()
248 (*addchar) (pad | attributes); in doprnt()
252 (*addchar) (((unsigned char) *bp) | attributes); in doprnt()
255 (*addchar) (' ' | attributes); in doprnt()
263 (*addchar) (i | attributes); in doprnt()
278 (*addchar) ((int) (pad | attributes)); in doprnt()
[all …]
/freebsd/sys/dev/isci/scil/
H A Dsci_base_memory_descriptor_list_decorator.c69 U32 attributes in sci_mdl_decorator_get_memory_size() argument
79 if ( (mde->constant_memory_attributes == attributes) in sci_mdl_decorator_get_memory_size()
80 || (attributes == 0) ) in sci_mdl_decorator_get_memory_size()
94 U32 attributes, in sci_mdl_decorator_assign_memory() argument
113 if ( (mde->constant_memory_attributes == attributes) in sci_mdl_decorator_assign_memory()
114 || (attributes == 0) ) in sci_mdl_decorator_assign_memory()
H A Dsci_base_memory_descriptor_list.h132 #define sci_base_mde_construct(mde, alignment, size, attributes) \ argument
136 (mde)->constant_memory_attributes = (attributes); \
161 U16 attributes
/freebsd/crypto/heimdal/lib/kadm5/
H A Dget_s.c100 out->attributes |= ent.entry.flags.postdate ? 0 : KRB5_KDB_DISALLOW_POSTDATED; in kadm5_s_get_principal()
101 out->attributes |= ent.entry.flags.forwardable ? 0 : KRB5_KDB_DISALLOW_FORWARDABLE; in kadm5_s_get_principal()
102 out->attributes |= ent.entry.flags.initial ? KRB5_KDB_DISALLOW_TGT_BASED : 0; in kadm5_s_get_principal()
103 out->attributes |= ent.entry.flags.renewable ? 0 : KRB5_KDB_DISALLOW_RENEWABLE; in kadm5_s_get_principal()
104 out->attributes |= ent.entry.flags.proxiable ? 0 : KRB5_KDB_DISALLOW_PROXIABLE; in kadm5_s_get_principal()
105 out->attributes |= ent.entry.flags.invalid ? KRB5_KDB_DISALLOW_ALL_TIX : 0; in kadm5_s_get_principal()
106 out->attributes |= ent.entry.flags.require_preauth ? KRB5_KDB_REQUIRES_PRE_AUTH : 0; in kadm5_s_get_principal()
107 out->attributes |= ent.entry.flags.server ? 0 : KRB5_KDB_DISALLOW_SVR; in kadm5_s_get_principal()
108 out->attributes |= ent.entry.flags.change_pw ? KRB5_KDB_PWCHANGE_SERVICE : 0; in kadm5_s_get_principal()
109 out->attributes |= ent.entry.flags.ok_as_delegate ? KRB5_KDB_OK_AS_DELEGATE : 0; in kadm5_s_get_principal()
[all …]
/freebsd/crypto/openssl/crypto/evp/
H A Devp_pkey.c187 return X509at_get_attr_count(key->attributes); in EVP_PKEY_get_attr_count()
192 return X509at_get_attr_by_NID(key->attributes, nid, lastpos); in EVP_PKEY_get_attr_by_NID()
198 return X509at_get_attr_by_OBJ(key->attributes, obj, lastpos); in EVP_PKEY_get_attr_by_OBJ()
203 return X509at_get_attr(key->attributes, loc); in EVP_PKEY_get_attr()
208 return X509at_delete_attr(key->attributes, loc); in EVP_PKEY_delete_attr()
213 if (X509at_add1_attr(&key->attributes, attr)) in EVP_PKEY_add1_attr()
222 if (X509at_add1_attr_by_OBJ(&key->attributes, obj, type, bytes, len)) in EVP_PKEY_add1_attr_by_OBJ()
231 if (X509at_add1_attr_by_NID(&key->attributes, nid, type, bytes, len)) in EVP_PKEY_add1_attr_by_NID()
240 if (X509at_add1_attr_by_txt(&key->attributes, attrname, type, bytes, len)) in EVP_PKEY_add1_attr_by_txt()
/freebsd/crypto/openssl/crypto/x509/
H A Dx509_req.c177 loc = X509at_get_attr_by_NID(req->req_info.attributes, nid, -1); in X509_REQ_add_extensions_nid()
191 X509_ATTRIBUTE *att = X509at_delete_attr(req->req_info.attributes, loc); in X509_REQ_add_extensions_nid()
216 return X509at_get_attr_count(req->req_info.attributes); in X509_REQ_get_attr_count()
221 return X509at_get_attr_by_NID(req->req_info.attributes, nid, lastpos); in X509_REQ_get_attr_by_NID()
227 return X509at_get_attr_by_OBJ(req->req_info.attributes, obj, lastpos); in X509_REQ_get_attr_by_OBJ()
232 return X509at_get_attr(req->req_info.attributes, loc); in X509_REQ_get_attr()
243 attr = X509at_delete_attr(req->req_info.attributes, loc); in X509_REQ_delete_attr()
255 if (!X509at_add1_attr(&req->req_info.attributes, attr)) in X509_REQ_add1_attr()
269 if (!X509at_add1_attr_by_OBJ(&req->req_info.attributes, obj, in X509_REQ_add1_attr_by_OBJ()
284 if (!X509at_add1_attr_by_NID(&req->req_info.attributes, ni in X509_REQ_add1_attr_by_NID()
[all...]
H A Dx509_acert.c59 ASN1_SEQUENCE_OF(X509_ACERT_INFO, attributes, X509_ATTRIBUTE),
194 return X509at_get_attr_count(x->acinfo->attributes); in X509_ACERT_get_attr_count()
199 return X509at_get_attr_by_NID(x->acinfo->attributes, nid, lastpos); in X509_ACERT_get_attr_by_NID()
205 return X509at_get_attr_by_OBJ(x->acinfo->attributes, obj, lastpos); in X509_ACERT_get_attr_by_OBJ()
210 return X509at_get_attr(x->acinfo->attributes, loc); in X509_ACERT_get_attr()
215 return X509at_delete_attr(x->acinfo->attributes, loc); in X509_ACERT_delete_attr()
220 STACK_OF(X509_ATTRIBUTE) **attrs = &x->acinfo->attributes; in X509_ACERT_add1_attr()
228 STACK_OF(X509_ATTRIBUTE) **attrs = &x->acinfo->attributes; in X509_ACERT_add1_attr_by_OBJ()
236 STACK_OF(X509_ATTRIBUTE) **attrs = &x->acinfo->attributes; in X509_ACERT_add1_attr_by_NID()
244 STACK_OF(X509_ATTRIBUTE) **attrs = &x->acinfo->attributes; in X509_ACERT_add1_attr_by_txt()
[all...]
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParser.cpp36 DWARFAttributes attributes = die.GetAttributes(); in ParseChildArrayInfo()
37 if (attributes.Size() == 0) in ParseChildArrayInfo()
44 for (size_t i = 0; i < attributes.Size(); ++i) { in ParseChildArrayInfo()
45 const dw_attr_t attr = attributes.AttributeAtIndex(i); in ParseChildArrayInfo()
47 if (attributes.ExtractFormValueAtIndex(i, form_value)) { in ParseChildArrayInfo()
112 DWARFAttributes attributes = die.GetAttributes(); in GetAccessTypeFromDWARF()
113 if (attributes.Size() == 0) in GetAccessTypeFromDWARF()
117 for (size_t i = 0; i < attributes.Size(); ++i) {
118 dw_attr_t attr = attributes.AttributeAtIndex(i);
121 if (attr == DW_AT_type && attributes
34 DWARFAttributes attributes = die.GetAttributes(); ParseChildArrayInfo() local
[all...]
/freebsd/lib/libefivar/
H A Defivar.c153 uint8_t *data, size_t data_size, uint32_t attributes) in efi_append_variable() argument
157 attributes | EFI_VARIABLE_APPEND_WRITE); in efi_append_variable()
170 uint8_t **data, size_t *data_size, uint32_t *attributes) in efi_get_variable() argument
191 if (attributes != NULL) in efi_get_variable()
192 *attributes = var.attrib; in efi_get_variable()
201 uint32_t *attributes) in efi_get_variable_attributes() argument
205 return efi_get_variable(guid, name, NULL, NULL, attributes); in efi_get_variable_attributes()
360 uint8_t *data, size_t data_size, uint32_t attributes) in efi_set_variable() argument
375 var.attrib = attributes; in efi_set_variable()
H A Defivar.h63 uint8_t *data, size_t data_size, uint32_t attributes);
66 uint8_t **data, size_t *data_size, uint32_t *attributes);
68 uint32_t *attributes);
78 uint8_t *data, size_t data_size, uint32_t attributes);
/freebsd/cddl/lib/libdtrace/
H A Dsched.d64 #pragma D attributes Stable/Stable/Common curcpu
68 #pragma D attributes Stable/Stable/Common cpu
72 #pragma D attributes Stable/Stable/Common pset
76 #pragma D attributes Stable/Stable/Common chip
80 #pragma D attributes Stable/Stable/Common lgrp
/freebsd/sys/ufs/ufs/
H A DREADME.extattr9 Extended attributes allow the association of additional arbitrary
10 meta-data with files and directories. Extended attributes are defined in
13 extended attribute service layers support for extended attributes onto a
26 Support for UFS extended attributes is natively available in UFS2, and
28 and performance reasons, if you plan to use extended attributes, it
31 Support for UFS extended attributes may be enabled for UFS1 by adding:
36 support extended attributes, but requires manual administration of EAs
38 filesystem, and the enabling of individual attributes for the file
41 enable and disable named attributes. The command lines for extattrctl
63 number of attributes on the specified filesystem.
[all …]
H A DREADME.acls13 availability of extended attributes to store extended components of
23 attributes, your file systems must have support for extended attributes.
25 necessary. For UFS1, you must also enable the optional extended attributes
49 UFS1 is discouraged; UFS2 extended attributes provide a more reliable
63 required extended attributes with the filesystem mount operation. To
64 enable ACLs, two extended attributes must be available in the
77 On the next mount of the root filesystem, the attributes will be
/freebsd/crypto/openssl/crypto/asn1/
H A Dp8_pkey.c47 ASN1_IMP_SET_OF_OPT(PKCS8_PRIV_KEY_INFO, attributes, X509_ATTRIBUTE, 0),
89 return p8->attributes; in STACK_OF()
95 if (X509at_add1_attr_by_NID(&p8->attributes, nid, type, bytes, len) != NULL) in PKCS8_pkey_add1_attr_by_NID()
103 return (X509at_add1_attr_by_OBJ(&p8->attributes, obj, type, bytes, len) != NULL); in PKCS8_pkey_add1_attr_by_OBJ()
108 return (X509at_add1_attr(&p8->attributes, attr) != NULL); in PKCS8_pkey_add1_attr()
/freebsd/crypto/heimdal/lib/hx509/
H A Dsoftp11.c83 CK_ATTRIBUTE *attributes; member
201 const CK_ATTRIBUTE *attributes, in attributes_match() argument
212 if (attributes[i].type == obj->attrs[j].attribute.type && in attributes_match()
213 attributes[i].ulValueLen == obj->attrs[j].attribute.ulValueLen && in attributes_match()
214 memcmp(attributes[i].pValue, obj->attrs[j].attribute.pValue, in attributes_match()
215 attributes[i].ulValueLen) == 0) { in attributes_match()
221 st_logf("type %d attribute have no match\n", attributes[i].type); in attributes_match()
230 print_attributes(const CK_ATTRIBUTE *attributes, in print_attributes() argument
239 switch (attributes[i].type) { in print_attributes()
242 if (attributes[i].ulValueLen != sizeof(CK_BBOOL)) { in print_attributes()
[all …]
/freebsd/contrib/netbsd-tests/lib/libcurses/tests/
H A Dattributes2 # no attributes, no color
6 # returned attributes includes color information
20 # print out something to check our attributes are there, standout and blink
23 compare attributes.chk
/freebsd/crypto/krb5/src/lib/krad/
H A Dattr.c61 static const attribute_record attributes[UCHAR_MAX] = { variable
259 ar = &attributes[type - 1]; in kr_attr_valid()
276 if (attributes[type - 1].encode == NULL) { in kr_attr_encode()
285 return attributes[type - 1].encode(ctx, secret, auth, in, outbuf, outlen); in kr_attr_encode()
299 if (attributes[type - 1].encode == NULL) { in kr_attr_decode()
308 return attributes[type - 1].decode(ctx, secret, auth, in, outbuf, outlen); in kr_attr_decode()
317 if (attributes[i].name == NULL) in krad_attr_name2num()
320 if (strcmp(attributes[i].name, name) == 0) in krad_attr_name2num()
333 return attributes[type - 1].name; in krad_attr_num2name()
/freebsd/crypto/heimdal/kadmin/
H A Dutil.c77 attributes2str(krb5_flags attributes, char *str, size_t len) in attributes2str() argument
79 unparse_flags (attributes, kdb_attrs, str, len); in attributes2str()
393 ent->attributes = default_ent->attributes & ~KRB5_KDB_DISALLOW_ALL_TIX; in set_defaults()
419 if(edit_attributes ("Attributes", &ent->attributes, mask, in edit_entry()
440 const char *attributes) in set_entry() argument
471 if (attributes != NULL) { in set_entry()
472 if (parse_attributes (attributes, &ent->attributes, in set_entry()
474 krb5_warnx (contextp, "unable to parse `%s'", attributes); in set_entry()
H A Dinit.c44 uint32_t attributes) in create_random_entry() argument
75 ent.attributes |= attributes | KRB5_KDB_DISALLOW_ALL_TIX; in create_random_entry()
103 ent.attributes &= (~KRB5_KDB_DISALLOW_ALL_TIX); in create_random_entry()
248 ent.attributes = KRB5_KDB_DISALLOW_ALL_TIX; in init()
H A Dank.c74 const char *attributes, in add_one_principal() argument
97 expiration, pw_expiration, attributes); in add_one_principal()
117 princ.attributes |= KRB5_KDB_DISALLOW_ALL_TIX; in add_one_principal()
161 princ.attributes &= (~KRB5_KDB_DISALLOW_ALL_TIX); in add_one_principal()
174 princ.attributes &= (~KRB5_KDB_DISALLOW_ALL_TIX); in add_one_principal()
/freebsd/crypto/openssl/doc/man3/
H A DCMS_signed_get_attr.pod67 attributes. Each CMS_signed_XXX() function is used for signed attributes, and
68 each CMS_unsigned_XXX() function is used for unsigned attributes.
77 order to iterate through the remaining attributes. I<lastpos> can be set to any
111 attributes list that matches the I<obj> starting at index I<lastpos>
112 and returns the data retrieved from the found attributes first B<ASN1_TYPE>
121 Refer to L<X509_ATTRIBUTE(3)> for information related to attributes.
128 CMS_signed_get_attr_count() returns the number of signed attributes in the
148 signed attributes first B<ASN1_TYPE> object, or NULL if an error occurs.
152 Some attributes are added automatically during the signing process.
164 attributes depending on the flags parameter. See L<CMS_add1_signer(3)> for
[all …]
/freebsd/sys/dev/firmware/arm/
H A Dscmi_clk.h40 uint32_t attributes; member
50 uint32_t attributes;
84 uint32_t attributes;
51 uint32_t attributes; global() member
86 uint32_t attributes; global() member
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DELFAttributeParser.h26 std::unordered_map<unsigned, unsigned> attributes;
63 auto I = attributes.find(tag); in getAttributeValue()
64 if (I == attributes.end()) in getAttributeValue()
27 std::unordered_map<unsigned, unsigned> attributes; global() variable
/freebsd/sbin/veriexec/
H A Dmanifest_parser.y103 | statement path attributes eol
112 attributes: /* empty */
113 | attributes flag
114 | attributes attr

12345678910>>...18