Home
last modified time | relevance | path

Searched refs:attrtype (Results 1 – 17 of 17) sorted by relevance

/external/libnl/include/netlink/
Dattr.h145 #define NLA_PUT(msg, attrtype, attrlen, data) \ argument
147 if (nla_put(msg, attrtype, attrlen, data) < 0) \
159 #define NLA_PUT_TYPE(msg, type, attrtype, value) \ argument
162 NLA_PUT(msg, attrtype, sizeof(type), &__tmp); \
171 #define NLA_PUT_U8(msg, attrtype, value) \ argument
172 NLA_PUT_TYPE(msg, uint8_t, attrtype, value)
180 #define NLA_PUT_U16(msg, attrtype, value) \ argument
181 NLA_PUT_TYPE(msg, uint16_t, attrtype, value)
189 #define NLA_PUT_U32(msg, attrtype, value) \ argument
190 NLA_PUT_TYPE(msg, uint32_t, attrtype, value)
[all …]
/external/libnl/lib/
Dattr.c323 struct nlattr *nla_find(struct nlattr *head, int len, int attrtype) in nla_find() argument
329 if (nla_type(nla) == attrtype) in nla_find()
456 struct nlattr *nla_reserve(struct nl_msg *msg, int attrtype, int attrlen) in nla_reserve() argument
470 nla->nla_type = attrtype; in nla_reserve()
500 int nla_put(struct nl_msg *msg, int attrtype, int datalen, const void *data) in nla_put() argument
507 nla = nla_reserve(msg, attrtype, datalen); in nla_put()
533 int nla_put_data(struct nl_msg *msg, int attrtype, struct nl_data *data) in nla_put_data() argument
535 return nla_put(msg, attrtype, nl_data_get_size(data), in nla_put_data()
548 int nla_put_addr(struct nl_msg *msg, int attrtype, struct nl_addr *addr) in nla_put_addr() argument
550 return nla_put(msg, attrtype, nl_addr_get_len(addr), in nla_put_addr()
[all …]
Dmsg.c231 struct nlattr *nlmsg_find_attr(struct nlmsghdr *nlh, int hdrlen, int attrtype) in nlmsg_find_attr() argument
234 nlmsg_attrlen(nlh, hdrlen), attrtype); in nlmsg_find_attr()
/external/boringssl/src/crypto/x509/
Dx509_att.c287 int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype, in X509_ATTRIBUTE_set1_data() argument
295 if (attrtype & MBSTRING_FLAG) { in X509_ATTRIBUTE_set1_data()
296 stmp = ASN1_STRING_set_by_NID(NULL, data, len, attrtype, in X509_ATTRIBUTE_set1_data()
304 if (!(stmp = ASN1_STRING_type_new(attrtype))) in X509_ATTRIBUTE_set1_data()
308 atype = attrtype; in X509_ATTRIBUTE_set1_data()
318 if (attrtype == 0) { in X509_ATTRIBUTE_set1_data()
324 if ((len == -1) && !(attrtype & MBSTRING_FLAG)) { in X509_ATTRIBUTE_set1_data()
325 if (!ASN1_TYPE_set1(ttmp, attrtype, data)) in X509_ATTRIBUTE_set1_data()
/external/mesa3d/src/mesa/vbo/
Dvbo_save_draw.c87 node->attrtype[i]); in playback_copy_to_current()
89 if (node->attrtype[i] != vbo->currval[i].Type || in playback_copy_to_current()
95 vbo->currval[i].Type = node->attrtype[i]; in playback_copy_to_current()
97 vbo_attrtype_to_integer_flag(node->attrtype[i]); in playback_copy_to_current()
147 memcpy(node_attrtype, node->attrtype, sizeof(node->attrtype)); in bind_vertex_list()
Dvbo_exec_api.c181 if (exec->vtx.attrtype[i] == GL_DOUBLE || in vbo_exec_copy_to_current()
182 exec->vtx.attrtype[i] == GL_UNSIGNED_INT64_ARB) in vbo_exec_copy_to_current()
187 if (exec->vtx.attrtype[i] == GL_DOUBLE || in vbo_exec_copy_to_current()
188 exec->vtx.attrtype[i] == GL_UNSIGNED_INT64_ARB) { in vbo_exec_copy_to_current()
195 exec->vtx.attrtype[i]); in vbo_exec_copy_to_current()
198 if (exec->vtx.attrtype[i] != vbo->currval[i].Type || in vbo_exec_copy_to_current()
211 vbo->currval[i].Type = exec->vtx.attrtype[i]; in vbo_exec_copy_to_current()
213 vbo_attrtype_to_integer_flag(exec->vtx.attrtype[i]); in vbo_exec_copy_to_current()
215 vbo_attrtype_to_double_flag(exec->vtx.attrtype[i]); in vbo_exec_copy_to_current()
249 if (exec->vtx.attrtype[i] == GL_DOUBLE || in vbo_exec_copy_from_current()
[all …]
Dvbo_save.h66 GLenum attrtype[VBO_ATTRIB_MAX]; member
147 GLenum attrtype[VBO_ATTRIB_MAX]; /**< GL_FLOAT, GL_INT, etc */ member
Dvbo_exec_draw.c217 exec->vtx.attrtype[VERT_ATTRIB_GENERIC0] = exec->vtx.attrtype[0]; in vbo_exec_bind_arrays()
251 arrays[attr].Type = exec->vtx.attrtype[src]; in vbo_exec_bind_arrays()
253 vbo_attrtype_to_integer_flag(exec->vtx.attrtype[src]); in vbo_exec_bind_arrays()
Dvbo_exec.h106 GLenum attrtype[VBO_ATTRIB_MAX]; /**< GL_FLOAT, GL_DOUBLE, GL_INT, etc */ member
Dvbo_save_api.c435 memcpy(node->attrtype, save->attrtype, sizeof(node->attrtype)); in compile_vertex_list()
656 save->attrptr[i], save->attrtype[i]); in copy_to_current()
769 save->attrtype[j]); in upgrade_vertex()
811 const fi_type *id = vbo_get_default_vals_as_union(save->attrtype[attr]); in fixup_vertex()
868 save->attrtype[A] = T; \
/external/jsilver/src/com/google/streamhtmlparser/
DHtmlParserFactory.java193 HtmlParser.ATTR_TYPE attrtype, in createParserInAttribute() argument
198 switch (attrtype) { in createParserInAttribute()
235 "Did not recognize ATTR_TYPE given: " + attrtype); in createParserInAttribute()
/external/iproute2/ip/
Diplink_vlan.c52 int attrtype) in vlan_parse_qos_map() argument
60 addattr_l(n, 1024, attrtype, NULL, 0); in vlan_parse_qos_map()
/external/libnl/lib/route/
Dact.c105 int rtnl_act_fill(struct nl_msg *msg, int attrtype, struct rtnl_act *act) in rtnl_act_fill() argument
111 nest = nla_nest_start(msg, attrtype); in rtnl_act_fill()
/external/libnl/doc/
Dcore.txt1934 struct nlattr *nla_find(struct nlattr *head, int len, int attrtype);
1941 struct nlattr *nlmsg_find_attr(struct nlmsghdr *hdr, int hdrlen, int attrtype);
1992 struct nlattr *nla_reserve(struct nl_msg *msg, int attrtype, int len);
2003 int nla_put(struct nl_msg *msg, int attrtype, int attrlen, const void *data);
2128 int nla_put_u8(struct nl_msg *msg, int attrtype, uint8_t value);
2129 int nla_put_u16(struct nl_msg *msg, int attrtype, uint16_t value);
2130 int nla_put_u32(struct nl_msg *msg, int attrtype, uint32_t value);
2131 int nla_put_u64(struct nl_msg *msg, int attrtype, uint64_t value);
2138 NLA_PUT_U8(msg, attrtype, value)
2139 NLA_PUT_U16(msg, attrtype, value)
[all …]
/external/iproute2/misc/
Dss.c2112 static void print_skmeminfo(struct rtattr *tb[], int attrtype) in print_skmeminfo() argument
2116 if (!tb[attrtype]) { in print_skmeminfo()
2117 if (attrtype == INET_DIAG_SKMEMINFO) { in print_skmeminfo()
2133 skmeminfo = RTA_DATA(tb[attrtype]); in print_skmeminfo()
2144 if (RTA_PAYLOAD(tb[attrtype]) >= in print_skmeminfo()
2148 if (RTA_PAYLOAD(tb[attrtype]) >= in print_skmeminfo()
/external/tcpdump/
Dprint-radius.c375 static struct attrtype { struct
/external/boringssl/src/include/openssl/
Dx509.h1063 OPENSSL_EXPORT int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype, const void *data, i…