Searched refs:attrtype (Results 1 - 9 of 9) sorted by relevance

/external/libnl-headers/netlink/
H A Dattr.h139 * @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 Attribut
[all...]
/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...]
/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))
H A Dx509.h1125 int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype, const void *data, int len);
/external/kernel-headers/original/linux/netfilter/
H A Dnfnetlink.h126 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/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/tcpdump/
H A Dprint-radius.c336 struct attrtype { const char *name; /* Attribute name */ struct
/external/openssl/include/openssl/
H A Dx509.h1125 int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype, const void *data, int len);

Completed in 1709 milliseconds