Home
last modified time | relevance | path

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

12345678910>>...13

/freebsd-13.1/contrib/tcsh/
H A Dtc.prompt.c173 Strbuf_append1(buf, wc | attributes); in tprintf_append_mbs()
182 Char attributes = 0; in tprintf() local
520 attributes |= STANDOUT; in tprintf()
523 attributes |= BOLD; in tprintf()
526 attributes |= UNDER; in tprintf()
529 attributes &= ~STANDOUT; in tprintf()
532 attributes &= ~BOLD; in tprintf()
535 attributes &= ~UNDER; in tprintf()
561 expdollar(&buf, &cp, attributes); in tprintf()
577 attributes |= LITERAL; in tprintf()
[all …]
H A Dtc.printf.c70 int attributes = 0; in doprnt() local
177 (*addchar) (pad | attributes); in doprnt()
186 (*addchar) (' ' | attributes); in doprnt()
248 (*addchar) (pad | attributes); in doprnt()
255 (*addchar) (' ' | attributes); in doprnt()
263 (*addchar) (i | attributes); in doprnt()
299 (*addchar) (' ' | attributes); in doprnt()
314 (*addchar) (pad | attributes); in doprnt()
328 (*addchar) (' ' | attributes); in doprnt()
334 attributes = va_arg(ap, int); in doprnt()
[all …]
/freebsd-13.1/crypto/openssl/crypto/evp/
H A Devp_pkey.c93 return X509at_get_attr_count(key->attributes); in EVP_PKEY_get_attr_count()
98 return X509at_get_attr_by_NID(key->attributes, nid, lastpos); in EVP_PKEY_get_attr_by_NID()
104 return X509at_get_attr_by_OBJ(key->attributes, obj, lastpos); in EVP_PKEY_get_attr_by_OBJ()
109 return X509at_get_attr(key->attributes, loc); in EVP_PKEY_get_attr()
114 return X509at_delete_attr(key->attributes, loc); in EVP_PKEY_delete_attr()
119 if (X509at_add1_attr(&key->attributes, attr)) in EVP_PKEY_add1_attr()
128 if (X509at_add1_attr_by_OBJ(&key->attributes, obj, type, bytes, len)) in EVP_PKEY_add1_attr_by_OBJ()
137 if (X509at_add1_attr_by_NID(&key->attributes, nid, type, bytes, len)) in EVP_PKEY_add1_attr_by_NID()
146 if (X509at_add1_attr_by_txt(&key->attributes, attrname, type, bytes, len)) in EVP_PKEY_add1_attr_by_txt()
/freebsd-13.1/sys/dev/isci/scil/
H A Dsci_base_memory_descriptor_list_decorator.c71 U32 attributes in sci_mdl_decorator_get_memory_size() argument
81 if ( (mde->constant_memory_attributes == attributes) in sci_mdl_decorator_get_memory_size()
82 || (attributes == 0) ) in sci_mdl_decorator_get_memory_size()
96 U32 attributes, in sci_mdl_decorator_assign_memory() argument
115 if ( (mde->constant_memory_attributes == attributes) in sci_mdl_decorator_assign_memory()
116 || (attributes == 0) ) in sci_mdl_decorator_assign_memory()
H A Dsci_base_memory_descriptor_list.h134 #define sci_base_mde_construct(mde, alignment, size, attributes) \ argument
138 (mde)->constant_memory_attributes = (attributes); \
163 U16 attributes
H A Dsci_memory_descriptor_list_decorator.h90 U32 attributes
121 U32 attributes,
/freebsd-13.1/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()
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()
111 out->attributes |= ent.entry.flags.allow_kerberos4 ? KRB5_KDB_ALLOW_KERBEROS4 : 0; in kadm5_s_get_principal()
[all …]
/freebsd-13.1/crypto/openssl/crypto/x509/
H A Dx509_req.c209 return X509at_get_attr_count(req->req_info.attributes); in X509_REQ_get_attr_count()
214 return X509at_get_attr_by_NID(req->req_info.attributes, nid, lastpos); in X509_REQ_get_attr_by_NID()
220 return X509at_get_attr_by_OBJ(req->req_info.attributes, obj, lastpos); in X509_REQ_get_attr_by_OBJ()
225 return X509at_get_attr(req->req_info.attributes, loc); in X509_REQ_get_attr()
230 return X509at_delete_attr(req->req_info.attributes, loc); in X509_REQ_delete_attr()
235 if (X509at_add1_attr(&req->req_info.attributes, attr)) in X509_REQ_add1_attr()
244 if (X509at_add1_attr_by_OBJ(&req->req_info.attributes, obj, in X509_REQ_add1_attr_by_OBJ()
254 if (X509at_add1_attr_by_NID(&req->req_info.attributes, nid, in X509_REQ_add1_attr_by_NID()
264 if (X509at_add1_attr_by_txt(&req->req_info.attributes, attrname, in X509_REQ_add1_attr_by_txt()
H A Dx_req.c41 rinf->attributes = sk_X509_ATTRIBUTE_new_null(); in rinf_cb()
42 if (!rinf->attributes) in rinf_cb()
55 ASN1_IMP_SET_OF_OPT(X509_REQ_INFO, attributes, X509_ATTRIBUTE, 0)
/freebsd-13.1/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-13.1/lib/libefivar/
H A Defivar.c148 uint8_t *data, size_t data_size, uint32_t attributes) in efi_append_variable() argument
152 attributes | EFI_VARIABLE_APPEND_WRITE); in efi_append_variable()
165 uint8_t **data, size_t *data_size, uint32_t *attributes) in efi_get_variable() argument
186 if (attributes != NULL) in efi_get_variable()
187 *attributes = var.attrib; in efi_get_variable()
196 uint32_t *attributes) in efi_get_variable_attributes() argument
200 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.h70 uint8_t *data, size_t data_size, uint32_t attributes);
73 uint8_t **data, size_t *data_size, uint32_t *attributes);
75 uint32_t *attributes);
85 uint8_t *data, size_t data_size, uint32_t attributes);
/freebsd-13.1/sys/ufs/ufs/
H A DREADME.extattr10 Extended attributes allow the association of additional arbitrary
11 meta-data with files and directories. Extended attributes are defined in
14 extended attribute service layers support for extended attributes onto a
27 Support for UFS extended attributes is natively available in UFS2, and
29 and performance reasons, if you plan to use extended attributes, it
32 Support for UFS extended attributes may be enabled for UFS1 by adding:
37 support extended attributes, but requires manual administration of EAs
39 filesystem, and the enabling of individual attributes for the file
42 enable and disable named attributes. The command lines for extattrctl
64 number of attributes on the specified filesystem.
[all …]
H A DREADME.acls14 availability of extended attributes to store extended components of
24 attributes, your file systems must have support for extended attributes.
26 necessary. For UFS1, you must also enable the optional extended attributes
50 UFS1 is discouraged; UFS2 extended attributes provide a more reliable
64 required extended attributes with the filesystem mount operation. To
65 enable ACLs, two extended attributes must be available in the
78 On the next mount of the root filesystem, the attributes will be
/freebsd-13.1/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-13.1/crypto/heimdal/lib/hx509/
H A Dsoftp11.c83 CK_ATTRIBUTE *attributes; member
201 const CK_ATTRIBUTE *attributes, in attributes_match() argument
239 switch (attributes[i].type) { in print_attributes()
256 class = attributes[i].pValue; in print_attributes()
650 if (state->find.attributes) { in find_object_final()
657 free(state->find.attributes); in find_object_final()
658 state->find.attributes = NULL; in find_object_final()
680 if (state->find.attributes) { in close_session()
1323 state->find.attributes = in C_FindObjectsInit()
1343 state->find.attributes = NULL; in C_FindObjectsInit()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugInfoEntry.cpp407 DWARFAttributes &attributes, in GetAttributes() argument
436 attributes.Append(form_value, offset, attr); in GetAttributes()
457 attributes.Clear(); in GetAttributes()
459 return attributes.Size(); in GetAttributes()
740 DWARFAttributes attributes; in GetParentDeclContextDIE() local
741 GetAttributes(cu, attributes, Recurse::yes); in GetParentDeclContextDIE()
742 return GetParentDeclContextDIE(cu, attributes); in GetParentDeclContextDIE()
747 DWARFUnit *cu, const DWARFAttributes &attributes) const { in GetParentDeclContextDIE()
790 DWARFAttributes attributes; in GetQualifiedName() local
791 GetAttributes(cu, attributes, Recurse::yes); in GetQualifiedName()
[all …]
H A DDWARFBaseDIE.cpp107 size_t DWARFBaseDIE::GetAttributes(DWARFAttributes &attributes, in GetAttributes() argument
110 return m_die->GetAttributes(m_cu, attributes, recurse); in GetAttributes()
111 attributes.Clear(); in GetAttributes()
/freebsd-13.1/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-13.1/crypto/openssl/crypto/asn1/
H A Dp8_pkey.c33 ASN1_IMP_SET_OF_OPT(PKCS8_PRIV_KEY_INFO, attributes, X509_ATTRIBUTE, 0)
71 return p8->attributes; in STACK_OF()
77 if (X509at_add1_attr_by_NID(&p8->attributes, nid, type, bytes, len) != NULL) in PKCS8_pkey_add1_attr_by_NID()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DELFAttributeParser.h25 std::unordered_map<unsigned, unsigned> attributes; variable
58 auto I = attributes.find(tag); in getAttributeValue()
59 if (I == attributes.end()) in getAttributeValue()
/freebsd-13.1/contrib/googletest/googletest/src/
H A Dgtest-filepath.cc210 const DWORD attributes = GetFileAttributes(unicode); in FileOrDirectoryExists() local
212 return attributes != kInvalidFileAttributes; in FileOrDirectoryExists()
234 const DWORD attributes = GetFileAttributes(unicode); in DirectoryExists() local
236 if ((attributes != kInvalidFileAttributes) && in DirectoryExists()
237 (attributes & FILE_ATTRIBUTE_DIRECTORY)) { in DirectoryExists()
/freebsd-13.1/sbin/veriexec/
H A Dmanifest_parser.y105 | statement path attributes eol
114 attributes: /* empty */
115 | attributes flag
116 | attributes attr

12345678910>>...13