HomeSort by relevance Sort by last modified time
    Searched full:attrtype (Results 1 - 25 of 38) sorted by null

1 2

  /external/libnl-headers/netlink/
attr.h 139 * @arg attrtype Attribute type.
143 #define NLA_PUT(msg, attrtype, attrlen, data) \
145 if (nla_put(msg, attrtype, attrlen, data) < 0) \
154 * @arg attrtype Attribute type.
157 #define NLA_PUT_TYPE(msg, type, attrtype, value) \
160 NLA_PUT(msg, attrtype, sizeof(type), &__tmp); \
166 * @arg attrtype Attribute type.
169 #define NLA_PUT_U8(msg, attrtype, value) \
170 NLA_PUT_TYPE(msg, uint8_t, attrtype, value)
175 * @arg attrtype Attribute type
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
Attribute.java 15 private DERObjectIdentifier attrType;
48 attrType = DERObjectIdentifier.getInstance(seq.getObjectAt(0));
53 DERObjectIdentifier attrType,
56 this.attrType = attrType;
62 return new ASN1ObjectIdentifier(attrType.getId());
79 * attrType OBJECT IDENTIFIER,
88 v.add(attrType);
  /frameworks/base/core/tests/coretests/src/com/android/internal/net/
DNParserTest.java 47 private void checkFind(String dn, String attrType, String expected) {
48 String actual = new DNParser(new X500Principal(dn)).find(attrType);
49 assertEquals("dn:" + dn + " attr:" + attrType, expected, actual);
  /system/core/libnl_2/
attr.c 75 struct nlattr *nla_nest_start(struct nl_msg *msg, int attrtype)
80 rc = nla_put(msg, attrtype, 0, NULL);
151 int nla_put(struct nl_msg *msg, int attrtype, int datalen, const void *data)
156 nla = nla_reserve(msg, attrtype, datalen);
169 * to the message msg nested in a container of the type attrtype. The
171 int nla_put_nested(struct nl_msg *msg, int attrtype, struct nl_msg *nested)
175 rc = nla_put(msg, attrtype, nlmsg_attrlen(nlmsg_hdr(nested), 0),
189 struct nlattr *nla_reserve(struct nl_msg *msg, int attrtype, int data_len)
201 nla->nla_type = attrtype;
  /external/kernel-headers/original/linux/
rtnetlink.h 625 extern void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data);
627 #define RTA_PUT(skb, attrtype, attrlen, data) \
630 __rta_fill(skb, attrtype, attrlen, data); })
642 #define RTA_PUT_U8(skb, attrtype, value) \
644 RTA_PUT(skb, attrtype, sizeof(u8), &_tmp); })
646 #define RTA_PUT_U16(skb, attrtype, value) \
648 RTA_PUT(skb, attrtype, sizeof(u16), &_tmp); })
650 #define RTA_PUT_U32(skb, attrtype, value) \
652 RTA_PUT(skb, attrtype, sizeof(u32), &_tmp); })
654 #define RTA_PUT_U64(skb, attrtype, value)
    [all...]
  /external/collada/include/1.4/dom/
domExtra.h 45 xsNMTOKEN attrType;
87 xsNMTOKEN getType() const { return attrType; }
92 void setType( xsNMTOKEN atType ) { *(daeStringRef*)&attrType = atType; _validAttributeArray[2] = true; }
113 domExtra(DAE& dae) : daeElement(dae), attrId(), attrName(), attrType(), elemAsset(), elemTechnique_array() {}
domParam.h 48 xsNMTOKEN attrType;
94 xsNMTOKEN getType() const { return attrType; }
99 void setType( xsNMTOKEN atType ) { *(daeStringRef*)&attrType = atType; _validAttributeArray[3] = true; }
116 domParam(DAE& dae) : daeElement(dae), attrName(), attrSid(), attrSemantic(), attrType(), _value() {}
domFx_surface_common.h 366 domFx_surface_type_enum attrType;
434 domFx_surface_type_enum getType() const { return attrType; }
439 void setType( domFx_surface_type_enum atType ) { attrType = atType; }
501 domFx_surface_common_complexType(DAE& dae, daeElement* elt) : attrType(), elemFx_surface_init_common(), elemFormat(), elemFormat_hint(), elemSize(), elemViewport_ratio(), elemMip_levels(), elemMipmap_generate(), elemExtra_array() {}
527 domFx_surface_type_enum getType() const { return attrType; }
532 void setType( domFx_surface_type_enum atType ) { attrType = atType; _validAttributeArray[0] = true; }
domNode.h 62 domNodeType attrType;
187 domNodeType getType() const { return attrType; }
192 void setType( domNodeType atType ) { attrType = atType; _validAttributeArray[3] = true; }
360 domNode(DAE& dae) : daeElement(dae), attrId(), attrName(), attrSid(), attrType(), attrLayer(), elemAsset(), elemLookat_array(), elemMatrix_array(), elemRotate_array(), elemScale_array(), elemSkew_array(), elemTranslate_array(), elemInstance_camera_array(), elemInstance_controller_array(), elemInstance_geometry_array(), elemInstance_light_array(), elemInstance_node_array(), elemNode_array(), elemExtra_array() {}
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_documentcreateattribute.js 97 var attrType;
111 attrType = newAttrNode.nodeType;
113 assertEquals("type",2,attrType);
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_documentcreateattribute.js 97 var attrType;
111 attrType = newAttrNode.nodeType;
113 assertEquals("type",2,attrType);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documentcreateattribute.java 69 int attrType;
76 attrType = (int) newAttrNode.getNodeType();
77 assertEquals("type", 2, attrType);
hc_documentcreateattribute.java 68 int attrType;
75 attrType = (int) newAttrNode.getNodeType();
76 assertEquals("type", 2, attrType);
  /external/openssl/crypto/x509/
x509_att.c 285 int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype, const void *data, int len)
291 if(attrtype & MBSTRING_FLAG) {
292 stmp = ASN1_STRING_set_by_NID(NULL, data, len, attrtype,
300 if(!(stmp = ASN1_STRING_type_new(attrtype))) goto err;
302 atype = attrtype;
310 if (attrtype == 0)
313 if ((len == -1) && !(attrtype & MBSTRING_FLAG))
315 if (!ASN1_TYPE_set1(ttmp, attrtype, data))
  /external/collada/src/1.4/dom/
domParam.cpp 86 ma->setOffset( daeOffsetOf( domParam , attrType ));
domExtra.cpp 84 ma->setOffset( daeOffsetOf( domExtra , attrType ));
domNode.cpp 177 ma->setOffset( daeOffsetOf( domNode , attrType ));
domCg_surface_type.cpp 126 ma->setOffset( daeOffsetOf( domCg_surface_type , attrType ));
domFx_surface_common.cpp 108 ma->setOffset( daeOffsetOf( domFx_surface_common , attrType ));
domGlsl_surface_type.cpp 126 ma->setOffset( daeOffsetOf( domGlsl_surface_type , attrType ));
  /external/kernel-headers/original/linux/netfilter/
nfnetlink.h 126 extern void __nfa_fill(struct sk_buff *skb, int attrtype,
128 #define NFA_PUT(skb, attrtype, attrlen, data) \
130 __nfa_fill(skb, attrtype, attrlen, data); })
  /external/jsilver/src/com/google/streamhtmlparser/
HtmlParserFactory.java 185 * @param attrtype the attribute type which the parser should be in
193 HtmlParser.ATTR_TYPE attrtype,
198 switch (attrtype) {
235 "Did not recognize ATTR_TYPE given: " + attrtype);
  /external/iproute2/ip/
iplink_vlan.c 43 int attrtype)
51 addattr_l(n, 1024, attrtype, NULL, 0);
  /external/llvm/lib/Target/ARM/
ARMBuildAttrs.h 21 // AttrType (below) entries in the .ARM.attributes section in the ELF.
25 enum AttrType {
  /external/clang/lib/Analysis/
ThreadSafety.cpp 333 template <class AttrType>
334 void addLocksToSet(LockKind LK, AttrType *Attr, CXXMemberCallExpr *Exp,
517 template <typename AttrType>
518 void BuildLockset::addLocksToSet(LockKind LK, AttrType *Attr,
521 typedef typename AttrType::args_iterator iterator_type;
    [all...]

Completed in 406 milliseconds

1 2