HomeSort by relevance Sort by last modified time
    Searched refs:attrtype (Results 1 - 12 of 12) sorted by null

  /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...]
  /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);
166 int nla_put_u8(struct nl_msg *msg, int attrtype, uint8_t value)
168 return nla_put(msg, attrtype, sizeof(uint8_t), &value);
172 int nla_put_u16(struct nl_msg *msg, int attrtype, uint16_t value)
174 return nla_put(msg, attrtype, sizeof(uint16_t), &value);
178 int nla_put_u32(struct nl_msg *msg, int attrtype, uint32_t value)
180 return nla_put(msg, attrtype, sizeof(uint32_t), &value)
    [all...]
  /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/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/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))
x509.h     [all...]
  /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/iproute2/ip/
iplink_vlan.c 43 int attrtype)
51 addattr_l(n, 1024, attrtype, NULL, 0);
  /external/tcpdump/
print-radius.c 336 struct attrtype { const char *name; /* Attribute name */ struct
    [all...]
  /external/openssl/include/openssl/
x509.h     [all...]
  /prebuilts/devtools/tools/lib/
jsilver-1.0.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/jsilver/jsilver/1.0.0/
jsilver-1.0.0.jar 

Completed in 1054 milliseconds