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

/external/libnl/include/netlink/
H A Dattr.h141 * @arg attrtype Attribute type.
145 #define NLA_PUT(msg, attrtype, attrlen, data) \
147 if (nla_put(msg, attrtype, attrlen, data) < 0) \
156 * @arg attrtype Attribute type.
159 #define NLA_PUT_TYPE(msg, type, attrtype, value) \
162 NLA_PUT(msg, attrtype, sizeof(type), &__tmp); \
168 * @arg attrtype Attribute type.
171 #define NLA_PUT_U8(msg, attrtype, value) \
172 NLA_PUT_TYPE(msg, uint8_t, attrtype, value)
177 * @arg attrtype Attribut
[all...]
/external/libnl/lib/
H A Dattr.c315 * @arg attrtype Attribute type to look for.
323 struct nlattr *nla_find(struct nlattr *head, int len, int attrtype) argument
329 if (nla_type(nla) == attrtype)
444 * @arg attrtype Attribute Type.
456 struct nlattr *nla_reserve(struct nl_msg *msg, int attrtype, int attrlen) argument
470 nla->nla_type = attrtype;
489 * @arg attrtype Attribute type.
500 int nla_put(struct nl_msg *msg, int attrtype, int datalen, const void *data) argument
507 nla = nla_reserve(msg, attrtype, datalen);
524 * @arg attrtype Attribut
533 nla_put_data(struct nl_msg *msg, int attrtype, struct nl_data *data) argument
548 nla_put_addr(struct nl_msg *msg, int attrtype, struct nl_addr *addr) argument
569 nla_put_u8(struct nl_msg *msg, int attrtype, uint8_t value) argument
594 nla_put_u16(struct nl_msg *msg, int attrtype, uint16_t value) argument
619 nla_put_u32(struct nl_msg *msg, int attrtype, uint32_t value) argument
644 nla_put_u64(struct nl_msg *msg, int attrtype, uint64_t value) argument
680 nla_put_string(struct nl_msg *msg, int attrtype, const char *str) argument
715 nla_put_flag(struct nl_msg *msg, int attrtype) argument
743 nla_put_msecs(struct nl_msg *n, int attrtype, unsigned long msecs) argument
778 nla_put_nested(struct nl_msg *msg, int attrtype, struct nl_msg *nested) argument
795 nla_nest_start(struct nl_msg *msg, int attrtype) argument
[all...]
H A Dmsg.c227 * @arg attrtype type of attribute to look for
231 struct nlattr *nlmsg_find_attr(struct nlmsghdr *nlh, int hdrlen, int attrtype) argument
234 nlmsg_attrlen(nlh, hdrlen), attrtype);
/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/boringssl/src/crypto/x509/
H A Dx509_att.c287 int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype, argument
295 if (attrtype & MBSTRING_FLAG) {
296 stmp = ASN1_STRING_set_by_NID(NULL, data, len, attrtype,
304 if (!(stmp = ASN1_STRING_type_new(attrtype)))
308 atype = attrtype;
318 if (attrtype == 0) {
324 if ((len == -1) && !(attrtype & MBSTRING_FLAG)) {
325 if (!ASN1_TYPE_set1(ttmp, attrtype, data))
/external/mesa3d/src/mesa/vbo/
H A Dvbo_save_draw.c88 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));
H A Dvbo_save.h66 GLenum attrtype[VBO_ATTRIB_MAX]; member in struct:vbo_save_vertex_list
131 GLenum attrtype[VBO_ATTRIB_MAX]; member in struct:vbo_save_context
H A Dvbo_exec.h105 GLenum attrtype[VBO_ATTRIB_MAX]; member in struct:vbo_exec_context::__anon15334
H A Dvbo_exec_api.c168 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; \
1208 ASSERT(i < Elements(exec->vtx.attrtype));
1209 exec->vtx.attrtype[i] = GL_FLOAT;
1346 exec->vtx.attrtype[
[all...]
H A Dvbo_exec_draw.c243 arrays[attr].Type = exec->vtx.attrtype[src];
245 vbo_attrtype_to_integer_flag(exec->vtx.attrtype[src]);
H A Dvbo_save_api.c330 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; \
/external/iproute2/ip/
H A Diplink_vlan.c50 int attrtype)
58 addattr_l(n, 1024, attrtype, NULL, 0);
49 vlan_parse_qos_map(int *argcp, char ***argvp, struct nlmsghdr *n, int attrtype) argument
/external/libnl/lib/route/
H A Dact.c105 int rtnl_act_fill(struct nl_msg *msg, int attrtype, struct rtnl_act *act) argument
111 nest = nla_nest_start(msg, attrtype);
/external/tcpdump/
H A Dprint-radius.c368 struct attrtype { const char *name; /* Attribute name */ struct
/external/iproute2/misc/
H A Dss.c1891 static void print_skmeminfo(struct rtattr *tb[], int attrtype) argument
1895 if (!tb[attrtype]) {
1896 if (attrtype == INET_DIAG_SKMEMINFO) {
1912 skmeminfo = RTA_DATA(tb[attrtype]);
1923 if (RTA_PAYLOAD(tb[attrtype]) >=
/external/boringssl/include/openssl/
H A Dx509.h1057 OPENSSL_EXPORT int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype, const void *data, int len);
/external/boringssl/src/include/openssl/
H A Dx509.h1057 OPENSSL_EXPORT int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype, const void *data, int len);
/external/testng/ant/3rdparty/
H A Ddoclava-1.0.3.jarMETA-INF/MANIFEST.MF assets/html/index.html assets/templates/data.hdf assets/templates/assets/ ...

Completed in 543 milliseconds