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

  /external/libnl/include/netlink/
attr.h 141 * @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 Attribute type
    [all...]
  /external/libnl/lib/
attr.c 315 * @arg attrtype Attribute type to look for.
323 struct nlattr *nla_find(struct nlattr *head, int len, int attrtype)
329 if (nla_type(nla) == attrtype)
444 * @arg attrtype Attribute Type.
456 struct nlattr *nla_reserve(struct nl_msg *msg, int attrtype, int attrlen)
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)
507 nla = nla_reserve(msg, attrtype, datalen);
524 * @arg attrtype Attribute type
    [all...]
msg.c 227 * @arg attrtype type of attribute to look for
231 struct nlattr *nlmsg_find_attr(struct nlmsghdr *nlh, int hdrlen, int attrtype)
234 nlmsg_attrlen(nlh, hdrlen), attrtype);
  /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/boringssl/src/crypto/x509/
x509_att.c 287 int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype,
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/
vbo_save_draw.c 87 node->attrtype[i]);
89 if (node->attrtype[i] != vbo->currval[i].Type ||
95 vbo->currval[i].Type = node->attrtype[i];
97 vbo_attrtype_to_integer_flag(node->attrtype[i]);
143 GLenum node_attrtype[VBO_ATTRIB_MAX]; /* copy of node->attrtype[] */
147 memcpy(node_attrtype, node->attrtype, sizeof(node->attrtype));
vbo_save.h 66 GLenum attrtype[VBO_ATTRIB_MAX]; member in struct:vbo_save_vertex_list
147 GLenum attrtype[VBO_ATTRIB_MAX]; /**< GL_FLOAT, GL_INT, etc */ member in struct:vbo_save_context
vbo_exec_api.c 181 if (exec->vtx.attrtype[i] == GL_DOUBLE ||
182 exec->vtx.attrtype[i] == GL_UNSIGNED_INT64_ARB)
187 if (exec->vtx.attrtype[i] == GL_DOUBLE ||
188 exec->vtx.attrtype[i] == GL_UNSIGNED_INT64_ARB) {
195 exec->vtx.attrtype[i]);
198 if (exec->vtx.attrtype[i] != vbo->currval[i].Type ||
211 vbo->currval[i].Type = exec->vtx.attrtype[i];
213 vbo_attrtype_to_integer_flag(exec->vtx.attrtype[i]);
215 vbo_attrtype_to_double_flag(exec->vtx.attrtype[i]);
249 if (exec->vtx.attrtype[i] == GL_DOUBLE |
    [all...]
vbo_exec.h 106 GLenum attrtype[VBO_ATTRIB_MAX]; /**< GL_FLOAT, GL_DOUBLE, GL_INT, etc */ member in struct:vbo_exec_context::__anon34469
vbo_exec_draw.c 217 exec->vtx.attrtype[VERT_ATTRIB_GENERIC0] = exec->vtx.attrtype[0];
251 arrays[attr].Type = exec->vtx.attrtype[src];
253 vbo_attrtype_to_integer_flag(exec->vtx.attrtype[src]);
vbo_save_api.c 435 memcpy(node->attrtype, save->attrtype, sizeof(node->attrtype));
656 save->attrptr[i], save->attrtype[i]);
769 save->attrtype[j]);
811 const fi_type *id = vbo_get_default_vals_as_union(save->attrtype[attr]);
868 save->attrtype[A] = T; \
    [all...]
  /external/iproute2/ip/
iplink_vlan.c 52 int attrtype)
60 addattr_l(n, 1024, attrtype, NULL, 0);
  /external/libnl/lib/route/
act.c 105 int rtnl_act_fill(struct nl_msg *msg, int attrtype, struct rtnl_act *act)
111 nest = nla_nest_start(msg, attrtype);
  /external/tcpdump/
print-radius.c 375 static struct attrtype { struct
    [all...]
  /external/iproute2/misc/
ss.c     [all...]
  /external/boringssl/src/include/openssl/
x509.h     [all...]
  /external/testng/ant/3rdparty/
doclava-1.0.3.jar 

Completed in 625 milliseconds