HomeSort by relevance Sort by last modified time
    Searched refs:attr (Results 1 - 25 of 1290) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/libdw/
dwarf_whatattr.c 24 dwarf_whatattr (attr)
25 Dwarf_Attribute *attr;
27 return attr == NULL ? 0 : attr->code;
dwarf_whatform.c 24 dwarf_whatform (attr)
25 Dwarf_Attribute *attr;
27 return attr == NULL ? 0 : attr->form;
dwarf_formaddr.c 24 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);
dwarf_hasform.c 24 dwarf_hasform (attr, search_form)
25 Dwarf_Attribute *attr;
28 if (attr == NULL)
31 return attr->form == search_form;
dwarf_formsdata.c 24 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->cu->dbg, attr->valp)
    [all...]
dwarf_formudata.c 24 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->cu->dbg, attr->valp)
    [all...]
dwarf_formflag.c 24 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;
dwarf_formref.c 24 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->cu->dbg, attr->valp)
    [all...]
dwarf_formblock.c 24 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->cu->dbg, attr->valp)
    [all...]
  /external/webkit/Source/WebCore/mathml/
MathMLElement.cpp 63 void MathMLElement::parseMappedAttribute(Attribute* attr)
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->value())
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLTablePartElement.cpp 62 void HTMLTablePartElement::parseMappedAttribute(Attribute* attr)
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, CSSPropertyBorderColor, attr->value())
    [all...]
HTMLHRElement.cpp 64 void HTMLHRElement::parseMappedAttribute(Attribute* attr)
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, CSSPropertyMarginRight, CSSValueAuto)
    [all...]
HTMLMarqueeElement.cpp 73 void HTMLMarqueeElement::parseMappedAttribute(Attribute* attr)
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->name() == bgcolorAttr)
    [all...]
HTMLOListElement.cpp 63 void HTMLOListElement::parseMappedAttribute(Attribute* attr)
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, CSSPropertyListStyleType, CSSValueUpperRoman)
    [all...]
HTMLParamElement.cpp 50 void HTMLParamElement::parseMappedAttribute(Attribute* attr)
52 if (isIdAttributeName(attr->name())) {
54 HTMLElement::parseMappedAttribute(attr);
57 m_name = attr->value();
58 } else if (attr->name() == nameAttr) {
59 m_name = attr->value();
60 } else if (attr->name() == valueAttr) {
61 m_value = attr->value();
63 HTMLElement::parseMappedAttribute(attr);
66 bool HTMLParamElement::isURLAttribute(Attribute* attr) cons
69 Attribute* attr = attributes()->getAttributeItem(nameAttr); local
    [all...]
  /external/bluetooth/glib/gio/
gfileattribute-priv.h 46 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...]
gfileattribute.c 110 * 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)
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 and sets its type to
289 GFileAttributeValue *attr; local
321 GFileAttributeValue *attr; local
    [all...]
  /external/valgrind/main/drd/tests/
pth_mutex_reinit.c 15 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);
pth_process_shared_mutex.c 16 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/
run-show-abbrev.sh 26 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[2]: code = 3, form = 8, offset = 2
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
wps_attr_parse.c 21 static int wps_set_attr(struct wps_parse_attr *attr, u16 type,
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->conn_type_flags = pos
    [all...]
  /external/webrtc/src/system_wrappers/source/
critical_section_linux.cc 16 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/src/wps/
wps_validate.c 1034 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.network_key_len
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...]
wps_attr_parse.c 25 static int wps_set_vendor_ext_wfa_subelem(struct wps_parse_attr *attr,
37 attr->version2 = pos;
40 attr->authorized_macs = pos;
41 attr->authorized_macs_len = len;
49 attr->network_key_shareable = pos;
57 attr->request_to_enroll = pos;
65 attr->settings_delay_time = pos;
77 static int wps_parse_vendor_ext_wfa(struct wps_parse_attr *attr, const u8 *pos,
88 if (wps_set_vendor_ext_wfa_subelem(attr, id, elen, pos) < 0)
97 static int wps_parse_vendor_ext(struct wps_parse_attr *attr, const u8 *pos
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/quartz/
SDL_QuartzGL.m 56 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[i++] = this->gl_config.stencil_size
    [all...]

Completed in 360 milliseconds

1 2 3 4 5 6 7 8 91011>>