Searched defs:attr (Results 1 - 25 of 581) sorted by relevance

1234567891011>>

/external/valgrind/main/drd/tests/
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);
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 Drecursive_mutex.c39 pthread_mutexattr_t attr; local
42 pthread_mutexattr_init(&attr);
43 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE_NP);
44 pthread_mutex_init(&m, &attr);
45 pthread_mutexattr_destroy(&attr);
53 pthread_mutexattr_t attr; local
56 pthread_mutexattr_init(&attr);
57 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK_NP);
58 pthread_mutex_init(&m, &attr);
59 pthread_mutexattr_destroy(&attr);
[all...]
/external/elfutils/libdw/
H A Ddwarf_hasattr_integrate.c68 Dwarf_Attribute *attr = INTUSE(dwarf_attr) (die, DW_AT_abstract_origin, local
70 if (attr == NULL)
73 die = INTUSE(dwarf_formref_die) (attr, &die_mem);
H A Ddwarf_attr_integrate.c65 Dwarf_Attribute *attr = INTUSE(dwarf_attr) (die, search_name, result); local
66 if (attr != NULL)
67 return attr;
69 attr = INTUSE(dwarf_attr) (die, DW_AT_abstract_origin, result);
70 if (attr == NULL)
71 attr = INTUSE(dwarf_attr) (die, DW_AT_specification, result);
72 if (attr == NULL)
75 die = INTUSE(dwarf_formref_die) (attr, &die_mem);
H A Ddwarf_getmacros.c69 Dwarf_Attribute attr; local
70 if (INTUSE(dwarf_attr) (die, DW_AT_macro_info, &attr) == NULL)
75 if (INTUSE(dwarf_formudata) (&attr, &macoff) != 0)
/external/webkit/LayoutTests/fast/dom/Attr/script-tests/
H A Daccess-after-element-destruction.js39 var attr = element.attributes.item(0); variable
44 shouldBe("attr.name", "'a'");
45 shouldBe("attr.specified", "true");
46 shouldBe("attr.value", "'b'");
47 shouldBe("attr.ownerElement.tagName", "'P'");
49 attr.value = 'c';
51 shouldBe("attr.value", "'c'");
/external/webkit/Source/WebCore/svg/
H A DSVGExternalResourcesRequired.cpp31 bool SVGExternalResourcesRequired::parseMappedAttribute(Attribute* attr) argument
33 if (attr->name() == SVGNames::externalResourcesRequiredAttr) {
34 setExternalResourcesRequiredBaseValue(attr->value() == "true");
H A DSVGURIReference.cpp30 bool SVGURIReference::parseMappedAttribute(Attribute* attr) argument
32 if (attr->name().matches(XLinkNames::hrefAttr)) {
33 setHrefBaseValue(attr->value());
/external/valgrind/main/helgrind/tests/
H A Dtc10_rec_lock.c17 pthread_mutexattr_t attr; local
20 r = pthread_mutexattr_init( &attr );
22 r = pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_RECURSIVE );
24 r = pthread_mutex_init( &mx1, &attr );
/external/webrtc/src/system_wrappers/source/
H A Dcritical_section_posix.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/clang/include/clang/Basic/
H A DAttrKinds.h10 // This file defines the attr::Kind enum
19 namespace attr { namespace in namespace:clang
30 } // end namespace attr
/external/jmonkeyengine/engine/src/android/com/jme3/app/
H A DR.java11 public static final class attr { class in class:R
/external/llvm/lib/DebugInfo/
H A DDWARFAttribute.h21 DWARFAttribute(uint16_t attr, uint16_t form) argument
22 : Attribute(attr), Form(form) {}
/external/webkit/Source/WebCore/html/
H A DHTMLIsIndexElement.cpp52 void HTMLIsIndexElement::parseMappedAttribute(Attribute* attr) argument
54 if (attr->name() == promptAttr)
55 setValue(attr->value());
56 else if (attr->name() == placeholderAttr)
61 HTMLFormControlElement::parseMappedAttribute(attr);
H A DHTMLPreElement.cpp54 void HTMLPreElement::parseMappedAttribute(Attribute* attr) argument
56 if (attr->name() == widthAttr) {
61 } else if (attr->name() == wrapAttr) {
62 if (!attr->value().isNull())
63 addCSSProperty(attr, CSSPropertyWhiteSpace, CSSValuePreWrap);
65 return HTMLElement::parseMappedAttribute(attr);
H A DHTMLTableCaptionElement.cpp57 void HTMLTableCaptionElement::parseMappedAttribute(Attribute* attr) argument
59 if (attr->name() == alignAttr) {
60 if (!attr->value().isEmpty())
61 addCSSProperty(attr, CSSPropertyCaptionSide, attr->value());
63 HTMLElement::parseMappedAttribute(attr);
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 DHTMLUListElement.cpp60 void HTMLUListElement::parseMappedAttribute(Attribute* attr) argument
62 if (attr->name() == typeAttr)
63 addCSSProperty(attr, CSSPropertyListStyleType, attr->value());
65 HTMLElement::parseMappedAttribute(attr);
/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/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/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_upnp_ap.c33 struct wps_parse_attr attr; local
40 if (wps_parse_msg(msg, &attr) < 0)
47 if (attr.selected_registrar == NULL || *attr.selected_registrar == 0) {
53 s->dev_password_id = attr.dev_password_id ?
54 WPA_GET_BE16(attr.dev_password_id) : DEV_PW_DEFAULT;
55 s->config_methods = attr.sel_reg_config_methods ?
56 WPA_GET_BE16(attr.sel_reg_config_methods) : -1;
57 if (attr.authorized_macs) {
58 int count = attr
[all...]
/external/wpa_supplicant_8/src/wps/
H A Dwps_upnp_ap.c33 struct wps_parse_attr attr; local
40 if (wps_parse_msg(msg, &attr) < 0)
47 if (attr.selected_registrar == NULL || *attr.selected_registrar == 0) {
53 s->dev_password_id = attr.dev_password_id ?
54 WPA_GET_BE16(attr.dev_password_id) : DEV_PW_DEFAULT;
55 s->config_methods = attr.sel_reg_config_methods ?
56 WPA_GET_BE16(attr.sel_reg_config_methods) : -1;
57 if (attr.authorized_macs) {
58 int count = attr
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_upnp_ap.c33 struct wps_parse_attr attr; local
40 if (wps_parse_msg(msg, &attr) < 0)
47 if (attr.selected_registrar == NULL || *attr.selected_registrar == 0) {
53 s->dev_password_id = attr.dev_password_id ?
54 WPA_GET_BE16(attr.dev_password_id) : DEV_PW_DEFAULT;
55 s->config_methods = attr.sel_reg_config_methods ?
56 WPA_GET_BE16(attr.sel_reg_config_methods) : -1;
57 if (attr.authorized_macs) {
58 int count = attr
[all...]
/external/bouncycastle/src/main/java/org/bouncycastle/x509/
H A DX509Attribute.java17 Attribute attr; field in class:X509Attribute
25 this.attr = Attribute.getInstance(at);
39 this.attr = new Attribute(new DERObjectIdentifier(oid), new DERSet(value));
53 this.attr = new Attribute(new DERObjectIdentifier(oid), new DERSet(value));
58 return attr.getAttrType().getId();
63 ASN1Set s = attr.getAttrValues();
76 return attr.toASN1Object();

Completed in 640 milliseconds

1234567891011>>