HomeSort by relevance Sort by last modified time
    Searched refs:attrtype (Results 1 - 25 of 27) 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...]
  /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/chromium_org/third_party/openssl/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/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/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_save_draw.c 88 node->attrtype[i]);
90 if (node->attrtype[i] != vbo->currval[i].Type ||
96 vbo->currval[i].Type = node->attrtype[i];
98 vbo_attrtype_to_integer_flag(node->attrtype[i]);
144 GLenum node_attrtype[VBO_ATTRIB_MAX]; /* copy of node->attrtype[] */
148 memcpy(node_attrtype, node->attrtype, sizeof(node->attrtype));
vbo_save.h 66 GLenum attrtype[VBO_ATTRIB_MAX]; member in struct:vbo_save_vertex_list
131 GLenum attrtype[VBO_ATTRIB_MAX]; member in struct:vbo_save_context
vbo_exec.h 105 GLenum attrtype[VBO_ATTRIB_MAX]; member in struct:vbo_exec_context::__anon15313
vbo_exec_api.c 168 exec->vtx.attrtype[i]);
170 if (exec->vtx.attrtype[i] != vbo->currval[i].Type ||
181 vbo->currval[i].Type = exec->vtx.attrtype[i];
183 vbo_attrtype_to_integer_flag(exec->vtx.attrtype[i]);
338 exec->vtx.attrtype[j]);
381 vbo_get_default_vals_as_float(exec->vtx.attrtype[attr]);
421 exec->vtx.attrtype[A] = T; \
    [all...]
vbo_exec_draw.c 243 arrays[attr].Type = exec->vtx.attrtype[src];
245 vbo_attrtype_to_integer_flag(exec->vtx.attrtype[src]);
vbo_save_api.c 330 memcpy(node->attrtype, save->attrtype, sizeof(node->attrtype));
518 save->attrptr[i], save->attrtype[i]);
621 save->attrtype[j]);
659 const GLfloat *id = vbo_get_default_vals_as_float(save->attrtype[attr]);
710 save->attrtype[A] = T; \
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_save_draw.c 88 node->attrtype[i]);
90 if (node->attrtype[i] != vbo->currval[i].Type ||
96 vbo->currval[i].Type = node->attrtype[i];
98 vbo_attrtype_to_integer_flag(node->attrtype[i]);
144 GLenum node_attrtype[VBO_ATTRIB_MAX]; /* copy of node->attrtype[] */
148 memcpy(node_attrtype, node->attrtype, sizeof(node->attrtype));
vbo_save.h 66 GLenum attrtype[VBO_ATTRIB_MAX]; member in struct:vbo_save_vertex_list
131 GLenum attrtype[VBO_ATTRIB_MAX]; member in struct:vbo_save_context
vbo_exec.h 105 GLenum attrtype[VBO_ATTRIB_MAX]; member in struct:vbo_exec_context::__anon25655
vbo_exec_api.c 168 exec->vtx.attrtype[i]);
170 if (exec->vtx.attrtype[i] != vbo->currval[i].Type ||
181 vbo->currval[i].Type = exec->vtx.attrtype[i];
183 vbo_attrtype_to_integer_flag(exec->vtx.attrtype[i]);
338 exec->vtx.attrtype[j]);
381 vbo_get_default_vals_as_float(exec->vtx.attrtype[attr]);
421 exec->vtx.attrtype[A] = T; \
    [all...]
vbo_exec_draw.c 243 arrays[attr].Type = exec->vtx.attrtype[src];
245 vbo_attrtype_to_integer_flag(exec->vtx.attrtype[src]);
vbo_save_api.c 330 memcpy(node->attrtype, save->attrtype, sizeof(node->attrtype));
518 save->attrptr[i], save->attrtype[i]);
621 save->attrtype[j]);
659 const GLfloat *id = vbo_get_default_vals_as_float(save->attrtype[attr]);
710 save->attrtype[A] = T; \
    [all...]
  /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/chromium_org/third_party/openssl/openssl/include/openssl/
x509.h     [all...]
  /external/openssl/include/openssl/
x509.h     [all...]

Completed in 2388 milliseconds

1 2