Searched refs:attr (Results 1 - 25 of 835) sorted by relevance

1234567891011>>

/external/elfutils/libdw/
H A Ddwarf_whatattr.c24 dwarf_whatattr (attr)
25 Dwarf_Attribute *attr;
27 return attr == NULL ? 0 : attr->code;
H A Ddwarf_whatform.c24 dwarf_whatform (attr)
25 Dwarf_Attribute *attr;
27 return attr == NULL ? 0 : attr->form;
H A Ddwarf_formaddr.c24 dwarf_formaddr (attr, return_addr)
25 Dwarf_Attribute *attr;
28 if (attr == NULL)
31 if (unlikely (attr->form != DW_FORM_addr))
37 if (attr->cu->address_size == 8)
38 *return_addr = read_8ubyte_unaligned (attr->cu->dbg, attr->valp);
40 *return_addr = read_4ubyte_unaligned (attr->cu->dbg, attr->valp);
H A Ddwarf_hasform.c24 dwarf_hasform (attr, search_form)
25 Dwarf_Attribute *attr;
28 if (attr == NULL)
31 return attr->form == search_form;
H A Ddwarf_formsdata.c24 dwarf_formsdata (attr, return_sval)
25 Dwarf_Attribute *attr;
28 if (attr == NULL)
34 switch (attr->form)
37 *return_sval = *attr->valp;
41 *return_sval = read_2ubyte_unaligned (attr->cu->dbg, attr->valp);
45 *return_sval = read_4ubyte_unaligned (attr->cu->dbg, attr->valp);
49 *return_sval = read_8ubyte_unaligned (attr
[all...]
H A Ddwarf_formudata.c24 dwarf_formudata (attr, return_uval)
25 Dwarf_Attribute *attr;
28 if (attr == NULL)
34 switch (attr->form)
37 *return_uval = *attr->valp;
41 *return_uval = read_2ubyte_unaligned (attr->cu->dbg, attr->valp);
45 *return_uval = read_4ubyte_unaligned (attr->cu->dbg, attr->valp);
49 *return_uval = read_8ubyte_unaligned (attr
[all...]
H A Ddwarf_formflag.c24 dwarf_formflag (attr, return_bool)
25 Dwarf_Attribute *attr;
28 if (attr == NULL)
31 if (unlikely (attr->form != DW_FORM_flag))
37 *return_bool = *attr->valp != 0;
H A Ddwarf_formref.c24 dwarf_formref (attr, return_offset)
25 Dwarf_Attribute *attr;
28 if (attr == NULL)
34 switch (attr->form)
37 *return_offset = *attr->valp;
41 *return_offset = read_2ubyte_unaligned (attr->cu->dbg, attr->valp);
45 *return_offset = read_4ubyte_unaligned (attr->cu->dbg, attr->valp);
49 *return_offset = read_8ubyte_unaligned (attr
[all...]
H A Ddwarf_formblock.c24 dwarf_formblock (attr, return_block)
25 Dwarf_Attribute *attr;
28 if (attr == NULL)
34 switch (attr->form)
37 return_block->length = *(uint8_t *) attr->valp;
38 return_block->data = attr->valp + 1;
42 return_block->length = read_2ubyte_unaligned (attr->cu->dbg, attr->valp);
43 return_block->data = attr->valp + 2;
47 return_block->length = read_4ubyte_unaligned (attr
[all...]
/external/webkit/Source/WebCore/mathml/
H A DMathMLElement.cpp63 void MathMLElement::parseMappedAttribute(Attribute* attr) argument
65 if (attr->name() == mathbackgroundAttr)
66 addCSSProperty(attr, CSSPropertyBackgroundColor, attr->value());
67 else if (attr->name() == mathsizeAttr) {
69 if (attr->value() != "normal" && attr->value() != "small" && attr->value() != "big")
70 addCSSProperty(attr, CSSPropertyFontSize, attr
[all...]
/external/webkit/Source/WebCore/html/
H A DHTMLTablePartElement.cpp62 void HTMLTablePartElement::parseMappedAttribute(Attribute* attr) argument
64 if (attr->name() == bgcolorAttr)
65 addCSSColor(attr, CSSPropertyBackgroundColor, attr->value());
66 else if (attr->name() == backgroundAttr) {
67 String url = stripLeadingAndTrailingHTMLSpaces(attr->value());
69 addCSSImageProperty(attr, CSSPropertyBackgroundImage, document()->completeURL(url).string());
70 } else if (attr->name() == bordercolorAttr) {
71 if (!attr->value().isEmpty()) {
72 addCSSColor(attr, CSSPropertyBorderColo
[all...]
H A DHTMLHRElement.cpp64 void HTMLHRElement::parseMappedAttribute(Attribute* attr) argument
66 if (attr->name() == alignAttr) {
67 if (equalIgnoringCase(attr->value(), "left")) {
68 addCSSProperty(attr, CSSPropertyMarginLeft, "0");
69 addCSSProperty(attr, CSSPropertyMarginRight, CSSValueAuto);
70 } else if (equalIgnoringCase(attr->value(), "right")) {
71 addCSSProperty(attr, CSSPropertyMarginLeft, CSSValueAuto);
72 addCSSProperty(attr, CSSPropertyMarginRight, "0");
74 addCSSProperty(attr, CSSPropertyMarginLeft, CSSValueAuto);
75 addCSSProperty(attr, CSSPropertyMarginRigh
[all...]
H A DHTMLMarqueeElement.cpp73 void HTMLMarqueeElement::parseMappedAttribute(Attribute* attr) argument
75 if (attr->name() == widthAttr) {
76 if (!attr->value().isEmpty())
77 addCSSLength(attr, CSSPropertyWidth, attr->value());
78 } else if (attr->name() == heightAttr) {
79 if (!attr->value().isEmpty())
80 addCSSLength(attr, CSSPropertyHeight, attr->value());
81 } else if (attr
[all...]
H A DHTMLOListElement.cpp63 void HTMLOListElement::parseMappedAttribute(Attribute* attr) argument
65 if (attr->name() == typeAttr) {
66 if (attr->value() == "a")
67 addCSSProperty(attr, CSSPropertyListStyleType, CSSValueLowerAlpha);
68 else if (attr->value() == "A")
69 addCSSProperty(attr, CSSPropertyListStyleType, CSSValueUpperAlpha);
70 else if (attr->value() == "i")
71 addCSSProperty(attr, CSSPropertyListStyleType, CSSValueLowerRoman);
72 else if (attr->value() == "I")
73 addCSSProperty(attr, CSSPropertyListStyleTyp
[all...]
/external/bluetooth/glib/gio/
H A Dgfileattribute-priv.h46 void _g_file_attribute_value_free (GFileAttributeValue *attr);
47 void _g_file_attribute_value_clear (GFileAttributeValue *attr);
48 void _g_file_attribute_value_set (GFileAttributeValue *attr,
51 gpointer _g_file_attribute_value_peek_as_pointer (GFileAttributeValue *attr);
53 char * _g_file_attribute_value_as_string (const GFileAttributeValue *attr);
55 const char * _g_file_attribute_value_get_string (const GFileAttributeValue *attr);
56 const char * _g_file_attribute_value_get_byte_string (const GFileAttributeValue *attr);
57 gboolean _g_file_attribute_value_get_boolean (const GFileAttributeValue *attr);
58 guint32 _g_file_attribute_value_get_uint32 (const GFileAttributeValue *attr);
59 gint32 _g_file_attribute_value_get_int32 (const GFileAttributeValue *attr);
[all...]
H A Dgfileattribute.c110 * about extended user attributes. See attr(5). The "user." prefix of the
117 * See attr(5). Note that this information is only available if GLib
215 * @attr: a #GFileAttributeValue.
217 * Frees the memory used by @attr.
221 _g_file_attribute_value_free (GFileAttributeValue *attr) argument
223 g_return_if_fail (attr != NULL);
225 _g_file_attribute_value_clear (attr);
226 g_free (attr);
231 * @attr: a #GFileAttributeValue.
233 * Clears the value of @attr an
238 _g_file_attribute_value_clear(GFileAttributeValue *attr) argument
261 _g_file_attribute_value_set(GFileAttributeValue *attr, const GFileAttributeValue *new_value) argument
289 GFileAttributeValue *attr; local
297 _g_file_attribute_value_peek_as_pointer(GFileAttributeValue *attr) argument
321 GFileAttributeValue *attr; local
409 _g_file_attribute_value_as_string(const GFileAttributeValue *attr) argument
462 _g_file_attribute_value_get_string(const GFileAttributeValue *attr) argument
482 _g_file_attribute_value_get_byte_string(const GFileAttributeValue *attr) argument
502 _g_file_attribute_value_get_boolean(const GFileAttributeValue *attr) argument
522 _g_file_attribute_value_get_uint32(const GFileAttributeValue *attr) argument
542 _g_file_attribute_value_get_int32(const GFileAttributeValue *attr) argument
562 _g_file_attribute_value_get_uint64(const GFileAttributeValue *attr) argument
582 _g_file_attribute_value_get_int64(const GFileAttributeValue *attr) argument
602 _g_file_attribute_value_get_object(const GFileAttributeValue *attr) argument
671 _g_file_attribute_value_set_string(GFileAttributeValue *attr, const char *string) argument
690 _g_file_attribute_value_set_byte_string(GFileAttributeValue *attr, const char *string) argument
709 _g_file_attribute_value_set_boolean(GFileAttributeValue *attr, gboolean value) argument
727 _g_file_attribute_value_set_uint32(GFileAttributeValue *attr, guint32 value) argument
745 _g_file_attribute_value_set_int32(GFileAttributeValue *attr, gint32 value) argument
763 _g_file_attribute_value_set_uint64(GFileAttributeValue *attr, guint64 value) argument
781 _g_file_attribute_value_set_int64(GFileAttributeValue *attr, gint64 value) argument
800 _g_file_attribute_value_set_object(GFileAttributeValue *attr, GObject *obj) argument
[all...]
/external/valgrind/main/drd/tests/
H A Dpth_mutex_reinit.c15 pthread_mutexattr_t attr; local
17 pthread_mutexattr_init(&attr);
18 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_NORMAL);
19 pthread_mutex_init(&m, &attr);
20 pthread_mutexattr_destroy(&attr);
24 pthread_mutexattr_init(&attr);
25 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
26 pthread_mutex_init(&m, &attr);
27 pthread_mutexattr_destroy(&attr);
H A Dpth_process_shared_mutex.c16 pthread_mutexattr_t attr; local
18 pthread_mutexattr_init(&attr);
19 pthread_mutexattr_setpshared(&attr, PTHREAD_PROCESS_SHARED);
20 pthread_mutex_init(&mutex, &attr);
21 pthread_mutexattr_destroy(&attr);
/external/elfutils/tests/
H A Drun-show-abbrev.sh26 abbrev[0]: attr[0]: code = 16, form = 6, offset = 0
27 abbrev[0]: attr[1]: code = 18, form = 1, offset = 2
28 abbrev[0]: attr[2]: code = 17, form = 1, offset = 4
29 abbrev[0]: attr[3]: code = 3, form = 8, offset = 6
30 abbrev[0]: attr[4]: code = 27, form = 8, offset = 8
31 abbrev[0]: attr[5]: code = 37, form = 8, offset = 10
32 abbrev[0]: attr[6]: code = 19, form = 11, offset = 12
34 abbrev[19]: attr[0]: code = 1, form = 19, offset = 19
35 abbrev[19]: attr[1]: code = 63, form = 12, offset = 21
36 abbrev[19]: attr[
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/wps/
H A Dwps_attr_parse.c21 static int wps_set_attr(struct wps_parse_attr *attr, u16 type, argument
31 attr->version = pos;
39 attr->msg_type = pos;
47 attr->enrollee_nonce = pos;
55 attr->registrar_nonce = pos;
63 attr->uuid_e = pos;
71 attr->uuid_r = pos;
79 attr->auth_type_flags = pos;
87 attr->encr_type_flags = pos;
95 attr
402 wps_parse_msg(const struct wpabuf *msg, struct wps_parse_attr *attr) argument
[all...]
/external/webrtc/src/system_wrappers/source/
H A Dcritical_section_linux.cc16 pthread_mutexattr_t attr; local
17 pthread_mutexattr_init(&attr);
18 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
19 pthread_mutex_init(&_mutex, &attr);
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_validate.c1034 struct wps_parse_attr attr; local
1040 if (wps_parse_msg(&buf, &attr) < 0) {
1045 if (wps_validate_network_idx(attr.network_idx, 1) ||
1046 wps_validate_ssid(attr.ssid, attr.ssid_len, 1) ||
1047 wps_validate_auth_type(attr.auth_type, 1) ||
1048 wps_validate_encr_type(attr.encr_type, 1) ||
1049 wps_validate_network_key_index(attr.network_key_idx, 0) ||
1050 wps_validate_network_key(attr.network_key, attr
1089 struct wps_parse_attr attr; local
1128 struct wps_parse_attr attr; local
1186 struct wps_parse_attr attr; local
1233 struct wps_parse_attr attr; local
1262 struct wps_parse_attr attr; local
1291 struct wps_parse_attr attr; local
1347 struct wps_parse_attr attr; local
1402 struct wps_parse_attr attr; local
1454 struct wps_parse_attr attr; local
1490 struct wps_parse_attr attr; local
1528 struct wps_parse_attr attr; local
1559 struct wps_parse_attr attr; local
1595 struct wps_parse_attr attr; local
1626 struct wps_parse_attr attr; local
1662 struct wps_parse_attr attr; local
1693 struct wps_parse_attr attr; local
1730 struct wps_parse_attr attr; local
1768 struct wps_parse_attr attr; local
1804 struct wps_parse_attr attr; local
1841 struct wps_parse_attr attr; local
1875 struct wps_parse_attr attr; local
1910 struct wps_parse_attr attr; local
1944 struct wps_parse_attr attr; local
[all...]
/external/wpa_supplicant_8/src/wps/
H A Dwps_validate.c1034 struct wps_parse_attr attr; local
1040 if (wps_parse_msg(&buf, &attr) < 0) {
1045 if (wps_validate_network_idx(attr.network_idx, 1) ||
1046 wps_validate_ssid(attr.ssid, attr.ssid_len, 1) ||
1047 wps_validate_auth_type(attr.auth_type, 1) ||
1048 wps_validate_encr_type(attr.encr_type, 1) ||
1049 wps_validate_network_key_index(attr.network_key_idx, 0) ||
1050 wps_validate_network_key(attr.network_key, attr
1089 struct wps_parse_attr attr; local
1128 struct wps_parse_attr attr; local
1186 struct wps_parse_attr attr; local
1233 struct wps_parse_attr attr; local
1262 struct wps_parse_attr attr; local
1291 struct wps_parse_attr attr; local
1347 struct wps_parse_attr attr; local
1402 struct wps_parse_attr attr; local
1454 struct wps_parse_attr attr; local
1490 struct wps_parse_attr attr; local
1528 struct wps_parse_attr attr; local
1559 struct wps_parse_attr attr; local
1595 struct wps_parse_attr attr; local
1626 struct wps_parse_attr attr; local
1662 struct wps_parse_attr attr; local
1693 struct wps_parse_attr attr; local
1730 struct wps_parse_attr attr; local
1768 struct wps_parse_attr attr; local
1804 struct wps_parse_attr attr; local
1841 struct wps_parse_attr attr; local
1875 struct wps_parse_attr attr; local
1910 struct wps_parse_attr attr; local
1944 struct wps_parse_attr attr; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_validate.c1034 struct wps_parse_attr attr; local
1040 if (wps_parse_msg(&buf, &attr) < 0) {
1045 if (wps_validate_network_idx(attr.network_idx, 1) ||
1046 wps_validate_ssid(attr.ssid, attr.ssid_len, 1) ||
1047 wps_validate_auth_type(attr.auth_type, 1) ||
1048 wps_validate_encr_type(attr.encr_type, 1) ||
1049 wps_validate_network_key_index(attr.network_key_idx, 0) ||
1050 wps_validate_network_key(attr.network_key, attr
1089 struct wps_parse_attr attr; local
1128 struct wps_parse_attr attr; local
1186 struct wps_parse_attr attr; local
1233 struct wps_parse_attr attr; local
1262 struct wps_parse_attr attr; local
1291 struct wps_parse_attr attr; local
1347 struct wps_parse_attr attr; local
1402 struct wps_parse_attr attr; local
1454 struct wps_parse_attr attr; local
1490 struct wps_parse_attr attr; local
1528 struct wps_parse_attr attr; local
1559 struct wps_parse_attr attr; local
1595 struct wps_parse_attr attr; local
1626 struct wps_parse_attr attr; local
1662 struct wps_parse_attr attr; local
1693 struct wps_parse_attr attr; local
1730 struct wps_parse_attr attr; local
1768 struct wps_parse_attr attr; local
1804 struct wps_parse_attr attr; local
1841 struct wps_parse_attr attr; local
1875 struct wps_parse_attr attr; local
1910 struct wps_parse_attr attr; local
1944 struct wps_parse_attr attr; local
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/quartz/
H A DSDL_QuartzGL.m56 NSOpenGLPixelFormatAttribute attr[32];
69 attr[i++] = NSOpenGLPFAFullScreen;
77 attr[i++] = NSOpenGLPFAColorSize;
78 attr[i++] = colorBits;
80 attr[i++] = NSOpenGLPFADepthSize;
81 attr[i++] = this->gl_config.depth_size;
84 attr[i++] = NSOpenGLPFADoubleBuffer;
88 attr[i++] = NSOpenGLPFAStereo;
92 attr[i++] = NSOpenGLPFAStencilSize;
93 attr[
[all...]

Completed in 290 milliseconds

1234567891011>>