/third_party/libnl/include/netlink/ |
D | attr.h | 165 #define NLA_PUT(msg, attrtype, attrlen, data) \ argument 167 if (nla_put(msg, attrtype, attrlen, data) < 0) \ 179 #define NLA_PUT_TYPE(msg, type, attrtype, value) \ argument 182 NLA_PUT(msg, attrtype, sizeof(type), &__tmp); \ 191 #define NLA_PUT_S8(msg, attrtype, value) \ argument 192 NLA_PUT_TYPE(msg, int8_t, attrtype, value) 200 #define NLA_PUT_U8(msg, attrtype, value) \ argument 201 NLA_PUT_TYPE(msg, uint8_t, attrtype, value) 209 #define NLA_PUT_S16(msg, attrtype, value) \ argument 210 NLA_PUT_TYPE(msg, int16_t, attrtype, value) [all …]
|
/third_party/libnl/lib/ |
D | attr.c | 324 struct nlattr *nla_find(const struct nlattr *head, int len, int attrtype) in nla_find() argument 330 if (nla_type(nla) == attrtype) in nla_find() 457 struct nlattr *nla_reserve(struct nl_msg *msg, int attrtype, int attrlen) in nla_reserve() argument 471 nla->nla_type = attrtype; in nla_reserve() 501 int nla_put(struct nl_msg *msg, int attrtype, int datalen, const void *data) in nla_put() argument 505 nla = nla_reserve(msg, attrtype, datalen); in nla_put() 535 int nla_put_data(struct nl_msg *msg, int attrtype, const struct nl_data *data) in nla_put_data() argument 537 return nla_put(msg, attrtype, nl_data_get_size(data), in nla_put_data() 550 int nla_put_addr(struct nl_msg *msg, int attrtype, struct nl_addr *addr) in nla_put_addr() argument 552 return nla_put(msg, attrtype, nl_addr_get_len(addr), in nla_put_addr() [all …]
|
D | msg.c | 233 struct nlattr *nlmsg_find_attr(struct nlmsghdr *nlh, int hdrlen, int attrtype) in nlmsg_find_attr() argument 236 nlmsg_attrlen(nlh, hdrlen), attrtype); in nlmsg_find_attr()
|
/third_party/openssl/crypto/x509/ |
D | x509_att.c | 245 int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype, in X509_ATTRIBUTE_set1_data() argument 253 if (attrtype & MBSTRING_FLAG) { in X509_ATTRIBUTE_set1_data() 254 stmp = ASN1_STRING_set_by_NID(NULL, data, len, attrtype, in X509_ATTRIBUTE_set1_data() 262 if ((stmp = ASN1_STRING_type_new(attrtype)) == NULL) in X509_ATTRIBUTE_set1_data() 266 atype = attrtype; in X509_ATTRIBUTE_set1_data() 273 if (attrtype == 0) { in X509_ATTRIBUTE_set1_data() 279 if ((len == -1) && !(attrtype & MBSTRING_FLAG)) { in X509_ATTRIBUTE_set1_data() 280 if (!ASN1_TYPE_set1(ttmp, attrtype, data)) in X509_ATTRIBUTE_set1_data()
|
/third_party/boost/boost/spirit/home/x3/binary/ |
D | binary.hpp | 105 #define BOOST_SPIRIT_MAKE_BINARY_PRIMITIVE(name, endiantype, attrtype, bits) \ argument 106 typedef any_binary_parser< attrtype, boost::endian::order::endiantype, bits > name##type; \
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/ |
D | driver_nl80211.h | 21 #define nla_nest_start(msg, attrtype) \ argument 22 nla_nest_start(msg, NLA_F_NESTED | (attrtype))
|
/third_party/libnl/lib/route/ |
D | act.c | 116 int rtnl_act_fill(struct nl_msg *msg, int attrtype, struct rtnl_act *act) in rtnl_act_fill() argument 122 nest = nla_nest_start(msg, attrtype); in rtnl_act_fill()
|
/third_party/mesa3d/src/mesa/vbo/ |
D | vbo_save_api.c | 902 save->enabled, save->attrsz, save->attrtype, offsets); in compile_vertex_list() 1040 if (save->attrtype[i] == GL_DOUBLE || in copy_to_current() 1041 save->attrtype[i] == GL_UNSIGNED_INT64_ARB) in copy_to_current() 1045 save->attrptr[i], save->attrtype[i]); in copy_to_current() 1163 switch (save->attrtype[j]) { in upgrade_vertex() 1210 newType != save->attrtype[attr]) { in fixup_vertex() 1218 const fi_type *id = vbo_get_default_vals_as_union(save->attrtype[attr]); in fixup_vertex() 1292 save->attrtype[A] = T; \
|
D | vbo.h | 160 GLenum16 attrtype[VBO_ATTRIB_MAX]; /**< GL_FLOAT, GL_INT, etc */ member
|
/third_party/libnl/doc/ |
D | core.txt | 1934 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 …]
|
/third_party/openssl/include/openssl/ |
D | x509.h | 950 int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype,
|
/third_party/mesa3d/docs/relnotes/ |
D | 20.1.0.rst | 2890 - vbo: interleave attrsz, attrtype, and active_sz in memory
|