/external/libnl/include/netlink/ |
H A D | 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 Attribut [all...] |
/external/libnl/lib/ |
H A D | attr.c | 657 * @arg attrtype Attribute type to look for. 665 struct nlattr *nla_find(struct nlattr *head, int len, int attrtype) argument 671 if (nla_type(nla) == attrtype) 786 * @arg attrtype Attribute Type. 798 struct nlattr *nla_reserve(struct nl_msg *msg, int attrtype, int attrlen) argument 809 nla->nla_type = attrtype; 818 attrtype, msg->nm_nlh->nlmsg_len); 826 * @arg attrtype Attribute type. 837 int nla_put(struct nl_msg *msg, int attrtype, int datalen, const void *data) argument 841 nla = nla_reserve(msg, attrtype, datale 864 nla_put_data(struct nl_msg *msg, int attrtype, struct nl_data *data) argument 879 nla_put_addr(struct nl_msg *msg, int attrtype, struct nl_addr *addr) argument 900 nla_put_u8(struct nl_msg *msg, int attrtype, uint8_t value) argument 925 nla_put_u16(struct nl_msg *msg, int attrtype, uint16_t value) argument 950 nla_put_u32(struct nl_msg *msg, int attrtype, uint32_t value) argument 975 nla_put_u64(struct nl_msg *msg, int attrtype, uint64_t value) argument 1010 nla_put_string(struct nl_msg *msg, int attrtype, const char *str) argument 1045 nla_put_flag(struct nl_msg *msg, int attrtype) argument 1073 nla_put_msecs(struct nl_msg *n, int attrtype, unsigned long msecs) argument 1108 nla_put_nested(struct nl_msg *msg, int attrtype, struct nl_msg *nested) argument 1122 nla_nest_start(struct nl_msg *msg, int attrtype) argument [all...] |
H A D | msg.c | 333 * @arg attrtype type of attribute to look for 337 struct nlattr *nlmsg_find_attr(struct nlmsghdr *nlh, int hdrlen, int attrtype) argument 340 nlmsg_attrlen(nlh, hdrlen), attrtype);
|
/external/jsilver/src/com/google/streamhtmlparser/ |
H A D | 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); 192 createParserInAttribute( HtmlParser.ATTR_TYPE attrtype, boolean quoted, Set<AttributeOptions> options) argument
|
/external/boringssl/src/crypto/x509/ |
H A D | x509_att.c | 279 int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype, const void *data, int len) argument 285 if(attrtype & MBSTRING_FLAG) { 286 stmp = ASN1_STRING_set_by_NID(NULL, data, len, attrtype, 294 if(!(stmp = ASN1_STRING_type_new(attrtype))) goto err; 296 atype = attrtype; 304 if (attrtype == 0) 307 if ((len == -1) && !(attrtype & MBSTRING_FLAG)) 309 if (!ASN1_TYPE_set1(ttmp, attrtype, data))
|
/external/mesa3d/src/mesa/vbo/ |
H A D | 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));
|
H A D | 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
|
H A D | vbo_exec.h | 105 GLenum attrtype[VBO_ATTRIB_MAX]; member in struct:vbo_exec_context::__anon14764
|
H A D | 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; \ 1208 ASSERT(i < Elements(exec->vtx.attrtype)); 1209 exec->vtx.attrtype[i] = GL_FLOAT; 1346 exec->vtx.attrtype[ [all...] |
H A D | vbo_exec_draw.c | 243 arrays[attr].Type = exec->vtx.attrtype[src]; 245 vbo_attrtype_to_integer_flag(exec->vtx.attrtype[src]);
|
H A D | 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; \
|
/external/iproute2/ip/ |
H A D | iplink_vlan.c | 50 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/tcpdump/ |
H A D | print-radius.c | 368 struct attrtype { const char *name; /* Attribute name */ struct
|
/external/iproute2/misc/ |
H A D | ss.c | 1891 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 D | x509.h | 1070 OPENSSL_EXPORT int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype, const void *data, int len);
|
/external/boringssl/src/include/openssl/ |
H A D | x509.h | 1070 OPENSSL_EXPORT int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype, const void *data, int len);
|
/external/testng/ant/3rdparty/ |
H A D | doclava-1.0.3.jar | META-INF/MANIFEST.MF assets/html/index.html assets/templates/data.hdf assets/templates/assets/ ... |
/external/libgdx/backends/gdx-backends-gwt/libs/ |
H A D | gwt-user.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gwt/ com/google/gwt/activity/ ... |