Searched defs:attrtype (Results 1 - 5 of 5) sorted by relevance

/external/iproute2/ip/
H A Diplink_vlan.c43 int attrtype)
51 addattr_l(n, 1024, attrtype, NULL, 0);
42 vlan_parse_qos_map(int *argcp, char ***argvp, struct nlmsghdr *n, int attrtype) argument
/external/jsilver/src/com/google/streamhtmlparser/
H A DHtmlParserFactory.java185 * @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);
192 createParserInAttribute( HtmlParser.ATTR_TYPE attrtype, boolean quoted, Set<AttributeOptions> options) argument
/external/openssl/crypto/x509/
H A Dx509_att.c285 int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype, const void *data, int len) argument
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/tcpdump/
H A Dprint-radius.c336 struct attrtype { const char *name; /* Attribute name */ struct
/external/kernel-headers/original/linux/
H A Drtnetlink.h625 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, valu
724 __rta_reserve(struct sk_buff *skb, int attrtype, int attrlen) argument
[all...]

Completed in 118 milliseconds