Home
last modified time | relevance | path

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

12345678

/dragonfly/contrib/tcsh-6/
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()
316 (*addchar) (pad | attributes); in doprnt()
330 (*addchar) (' ' | attributes); in doprnt()
336 attributes = va_arg(ap, int); in doprnt()
[all …]
/dragonfly/contrib/gdb-7/gdb/
H A Dxml-tdesc.c153 void *user_data, VEC(gdb_xml_value_s) *attributes) in tdesc_start_target()
182 void *user_data, VEC(gdb_xml_value_s) *attributes) in tdesc_start_reg()
190 length = VEC_length (gdb_xml_value_s, attributes); in tdesc_start_reg()
233 void *user_data, VEC(gdb_xml_value_s) *attributes) in tdesc_start_union()
249 void *user_data, VEC(gdb_xml_value_s) *attributes) in tdesc_start_struct()
261 attr = xml_find_attribute (attributes, "size"); in tdesc_start_struct()
274 void *user_data, VEC(gdb_xml_value_s) *attributes) in tdesc_start_flags()
279 xml_find_attribute (attributes, "size")->value; in tdesc_start_flags()
305 attr = xml_find_attribute (attributes, "type"); in tdesc_start_field()
311 attr = xml_find_attribute (attributes, "start"); in tdesc_start_field()
[all …]
H A Dmemory-map.c60 void *user_data, VEC(gdb_xml_value_s) *attributes) in memory_map_start_memory()
66 start_p = xml_find_attribute (attributes, "start")->value; in memory_map_start_memory()
67 length_p = xml_find_attribute (attributes, "length")->value; in memory_map_start_memory()
68 type_p = xml_find_attribute (attributes, "type")->value; in memory_map_start_memory()
98 void *user_data, VEC(gdb_xml_value_s) *attributes) in memory_map_start_property()
103 name = xml_find_attribute (attributes, "name")->value; in memory_map_start_property()
H A Dsolib-target.c83 void *user_data, VEC(gdb_xml_value_s) *attributes) in library_list_start_segment()
87 ULONGEST *address_p = xml_find_attribute (attributes, "address")->value; in library_list_start_segment()
100 void *user_data, VEC(gdb_xml_value_s) *attributes) in library_list_start_section()
104 ULONGEST *address_p = xml_find_attribute (attributes, "address")->value; in library_list_start_section()
119 void *user_data, VEC(gdb_xml_value_s) *attributes) in library_list_start_library()
123 const char *name = xml_find_attribute (attributes, "name")->value; in library_list_start_library()
149 void *user_data, VEC(gdb_xml_value_s) *attributes) in library_list_start_list()
151 char *version = xml_find_attribute (attributes, "version")->value; in library_list_start_list()
H A Dxml-support.h147 void *user_data, VEC(gdb_xml_value_s) *attributes);
166 const struct gdb_xml_attribute *attributes; member
221 struct gdb_xml_value *xml_find_attribute (VEC(gdb_xml_value_s) *attributes,
H A Dosdata.c62 void *user_data, VEC(gdb_xml_value_s) *attributes) in osdata_start_osdata()
71 type = xml_find_attribute (attributes, "type")->value; in osdata_start_osdata()
82 void *user_data, VEC(gdb_xml_value_s) *attributes) in osdata_start_item()
95 void *user_data, VEC(gdb_xml_value_s) *attributes) in osdata_start_column()
98 const char *name = xml_find_attribute (attributes, "name")->value; in osdata_start_column()
H A Dxml-support.c144 xml_find_attribute (VEC(gdb_xml_value_s) *attributes, const char *name) in xml_find_attribute() argument
149 for (ix = 0; VEC_iterate (gdb_xml_value_s, attributes, ix, value); ix++) in xml_find_attribute()
183 VEC(gdb_xml_value_s) *attributes = NULL; in gdb_xml_start_element()
231 back_to = make_cleanup (gdb_xml_values_cleanup, &attributes); in gdb_xml_start_element()
233 for (attribute = element->attributes; in gdb_xml_start_element()
277 VEC_safe_push (gdb_xml_value_s, attributes, &new_value); in gdb_xml_start_element()
287 for (attribute = element->attributes; in gdb_xml_start_element()
300 element->start_handler (parser, element, parser->user_data, attributes); in gdb_xml_start_element()
773 void *user_data, VEC(gdb_xml_value_s) *attributes) in xinclude_start_include()
776 char *href = xml_find_attribute (attributes, "href")->value; in xinclude_start_include()
/dragonfly/crypto/libressl/crypto/evp/
H A Devp_pkey.c147 return X509at_get_attr_count(key->attributes); in EVP_PKEY_get_attr_count()
153 return X509at_get_attr_by_NID(key->attributes, nid, lastpos); in EVP_PKEY_get_attr_by_NID()
160 return X509at_get_attr_by_OBJ(key->attributes, obj, lastpos); in EVP_PKEY_get_attr_by_OBJ()
166 return X509at_get_attr(key->attributes, loc); in EVP_PKEY_get_attr()
172 return X509at_delete_attr(key->attributes, loc); in EVP_PKEY_delete_attr()
178 if (X509at_add1_attr(&key->attributes, attr)) in EVP_PKEY_add1_attr()
187 if (X509at_add1_attr_by_OBJ(&key->attributes, obj, type, bytes, len)) in EVP_PKEY_add1_attr_by_OBJ()
196 if (X509at_add1_attr_by_NID(&key->attributes, nid, type, bytes, len)) in EVP_PKEY_add1_attr_by_NID()
205 if (X509at_add1_attr_by_txt(&key->attributes, attrname, type, in EVP_PKEY_add1_attr_by_txt()
/dragonfly/contrib/grep/lib/glthread/
H A Dlock.c265 pthread_rwlockattr_t attributes; in glthread_rwlock_init_for_glibc() local
268 err = pthread_rwlockattr_init (&attributes); in glthread_rwlock_init_for_glibc()
281 pthread_rwlockattr_destroy (&attributes); in glthread_rwlock_init_for_glibc()
535 pthread_mutexattr_t attributes; in glthread_recursive_lock_init_multithreaded() local
538 err = pthread_mutexattr_init (&attributes); in glthread_recursive_lock_init_multithreaded()
544 pthread_mutexattr_destroy (&attributes); in glthread_recursive_lock_init_multithreaded()
550 pthread_mutexattr_destroy (&attributes); in glthread_recursive_lock_init_multithreaded()
564 pthread_mutexattr_t attributes; in glthread_recursive_lock_init_multithreaded() local
567 err = pthread_mutexattr_init (&attributes); in glthread_recursive_lock_init_multithreaded()
573 pthread_mutexattr_destroy (&attributes); in glthread_recursive_lock_init_multithreaded()
[all …]
/dragonfly/contrib/gcc-4.7/gcc/
H A Dattribs.c241 decl_attributes (tree *node, tree attributes, int flags) in decl_attributes() argument
260 attributes in decl_attributes()
282 attributes = tree_cons (get_identifier ("target"), opts, attributes); in decl_attributes()
290 && attributes in decl_attributes()
292 && lookup_attribute ("naked", attributes) != NULL) in decl_attributes()
294 if (lookup_attribute ("noinline", attributes) == NULL) in decl_attributes()
295 attributes = tree_cons (get_identifier ("noinline"), NULL, attributes); in decl_attributes()
297 if (lookup_attribute ("noclone", attributes) == NULL) in decl_attributes()
298 attributes = tree_cons (get_identifier ("noclone"), NULL, attributes); in decl_attributes()
301 targetm.insert_attributes (*node, &attributes); in decl_attributes()
[all …]
/dragonfly/contrib/gcc-8.0/gcc/
H A Dattribs.c148 result->attributes.safe_push (attributes[i]); in register_scoped_attributes()
486 attributes in decl_attributes()
508 attributes = tree_cons (get_identifier ("target"), opts, attributes); in decl_attributes()
516 && attributes in decl_attributes()
521 attributes = tree_cons (get_identifier ("noinline"), NULL, attributes); in decl_attributes()
524 attributes = tree_cons (get_identifier ("noclone"), NULL, attributes); in decl_attributes()
530 && attributes in decl_attributes()
535 attributes = tree_cons (get_identifier ("noinline"), NULL, attributes); in decl_attributes()
541 attributes = tree_cons (get_identifier ("no_icf"), NULL, attributes); in decl_attributes()
1425 tree attributes; in merge_attributes() local
[all …]
H A Dmultiple_target.c298 tree attributes) in create_target_clone() argument
307 name, attributes); in create_target_clone()
316 DECL_ATTRIBUTES (new_decl) = attributes; in create_target_clone()
406 tree attributes = make_attribute ("target", attr, in expand_target_clones() local
410 attributes); in expand_target_clones()
438 tree attributes = make_attribute ("target", "default", in expand_target_clones() local
440 DECL_ATTRIBUTES (node->decl) = attributes; in expand_target_clones()
/dragonfly/sys/dev/drm/amd/display/dc/i2caux/
H A Di2c_generic_hw_engine.c101 struct i2c_generic_transaction_attributes attributes; in dal_i2c_generic_hw_engine_submit_request() local
117 attributes.action = I2CAUX_TRANSACTION_ACTION_I2C_READ; in dal_i2c_generic_hw_engine_submit_request()
119 attributes.action = I2CAUX_TRANSACTION_ACTION_I2C_WRITE; in dal_i2c_generic_hw_engine_submit_request()
190 attributes.start_bit = first_iteration; in dal_i2c_generic_hw_engine_submit_request()
191 attributes.stop_bit = stop_bit; in dal_i2c_generic_hw_engine_submit_request()
192 attributes.last_read = last_iteration; in dal_i2c_generic_hw_engine_submit_request()
193 attributes.transaction_size = current_transaction_size; in dal_i2c_generic_hw_engine_submit_request()
195 hw_engine->funcs->execute_transaction(hw_engine, &attributes); in dal_i2c_generic_hw_engine_submit_request()
/dragonfly/sys/dev/drm/amd/display/dc/dce/
H A Ddce_ipp.c69 const struct dc_cursor_attributes *attributes) in dce_ipp_cursor_set_attributes() argument
78 switch (attributes->color_format) { in dce_ipp_cursor_set_attributes()
98 CURSOR_2X_MAGNIFY, attributes->attribute_flags.bits.ENABLE_MAGNIFICATION, in dce_ipp_cursor_set_attributes()
99 CUR_INV_TRANS_CLAMP, attributes->attribute_flags.bits.INVERSE_TRANSPARENT_CLAMPING); in dce_ipp_cursor_set_attributes()
101 if (attributes->color_format == CURSOR_MODE_MONO) { in dce_ipp_cursor_set_attributes()
118 CURSOR_WIDTH, attributes->width-1, in dce_ipp_cursor_set_attributes()
119 CURSOR_HEIGHT, attributes->height-1); in dce_ipp_cursor_set_attributes()
128 CURSOR_SURFACE_ADDRESS_HIGH, attributes->address.high_part); in dce_ipp_cursor_set_attributes()
131 CURSOR_SURFACE_ADDRESS, attributes->address.low_part); in dce_ipp_cursor_set_attributes()
/dragonfly/crypto/libressl/crypto/x509/
H A Dx509_req.c270 return X509at_get_attr_count(req->req_info->attributes); in X509_REQ_get_attr_count()
276 return X509at_get_attr_by_NID(req->req_info->attributes, nid, lastpos); in X509_REQ_get_attr_by_NID()
283 return X509at_get_attr_by_OBJ(req->req_info->attributes, obj, lastpos); in X509_REQ_get_attr_by_OBJ()
289 return X509at_get_attr(req->req_info->attributes, loc); in X509_REQ_get_attr()
295 return X509at_delete_attr(req->req_info->attributes, loc); in X509_REQ_delete_attr()
301 if (X509at_add1_attr(&req->req_info->attributes, attr)) in X509_REQ_add1_attr()
310 if (X509at_add1_attr_by_OBJ(&req->req_info->attributes, obj, in X509_REQ_add1_attr_by_OBJ()
320 if (X509at_add1_attr_by_NID(&req->req_info->attributes, nid, in X509_REQ_add1_attr_by_NID()
330 if (X509at_add1_attr_by_txt(&req->req_info->attributes, attrname, in X509_REQ_add1_attr_by_txt()
/dragonfly/lib/libefivar/
H A Defivar.c147 uint8_t *data, size_t data_size, uint32_t attributes) in efi_append_variable() argument
151 attributes | EFI_VARIABLE_APPEND_WRITE); in efi_append_variable()
164 uint8_t **data, size_t *data_size, uint32_t *attributes) in efi_get_variable() argument
185 if (attributes != NULL) in efi_get_variable()
186 *attributes = var.attrib; in efi_get_variable()
195 uint32_t *attributes) in efi_get_variable_attributes() argument
199 return efi_get_variable(guid, name, NULL, NULL, attributes); in efi_get_variable_attributes()
359 uint8_t *data, size_t data_size, uint32_t attributes) in efi_set_variable() argument
374 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);
/dragonfly/usr.bin/evtranalyze/
H A Dxml.h48 STAILQ_HEAD(, xml_attribute) attributes;
65 STAILQ_INIT(&el->attributes); in xml_elem_init()
94 STAILQ_INSERT_TAIL(&el->attributes, at, next); in xml_elem_set_attribute()
/dragonfly/include/rpcsvc/
H A Dnfs_prot.x150 fattr attributes; variable
157 sattr attributes; member
170 fattr attributes; member
204 fattr attributes; /* attributes, need for pagin*/ member
228 sattr attributes; member
244 sattr attributes; member
411 fattr3 attributes; variable
424 wcc_attr attributes; variable
743 sattr3 attributes; member
/dragonfly/crypto/libressl/crypto/asn1/
H A Dp8_pkey.c101 .offset = offsetof(PKCS8_PRIV_KEY_INFO, attributes),
176 return p8->attributes; in STACK_OF()
183 if (X509at_add1_attr_by_NID(&p8->attributes, nid, type, bytes, in PKCS8_pkey_add1_attr_by_NID()
H A Dx_req.c90 rinf->attributes = sk_X509_ATTRIBUTE_new_null(); in rinf_cb()
91 if (!rinf->attributes) in rinf_cb()
123 .offset = offsetof(X509_REQ_INFO, attributes),
/dragonfly/contrib/gcc-4.7/gcc/c-family/
H A Dstub-objc.c118 objc_declare_protocol (tree ARG_UNUSED (name), tree ARG_UNUSED (attributes)) in objc_declare_protocol() argument
200 tree ARG_UNUSED (attributes)) in objc_add_method_declaration() argument
207 tree ARG_UNUSED (attributes), in objc_start_method_definition() argument
228 tree ARG_UNUSED (attributes)) in objc_build_keyword_decl() argument
/dragonfly/contrib/gcc-8.0/gcc/c-family/
H A Dstub-objc.c116 objc_declare_protocol (tree ARG_UNUSED (name), tree ARG_UNUSED (attributes)) in objc_declare_protocol() argument
198 tree ARG_UNUSED (attributes)) in objc_add_method_declaration() argument
205 tree ARG_UNUSED (attributes), in objc_start_method_definition() argument
226 tree ARG_UNUSED (attributes)) in objc_build_keyword_decl() argument
/dragonfly/contrib/ee/
H A Dnew_curse.c721 dest->attributes[column] = orig->attributes[column];
1477 tmp->attributes[i] = '\0';
1481 tmp->attributes[0] = '\0';
2047 line->attributes[j] = '\0';
2175 virtual_line->attributes[virt_col] = user_line->attributes[user_col];
2956 att1 = line1->attributes;
2957 att2 = line2->attributes;
3117 tmp1->attributes[x] = '\0';
3322 Char_out(curr->row[j], curr->attributes[j], curr->row, curr->attributes, j); in doupdate()
3623 att1 = curr->attributes; in doupdate()
[all …]

12345678