Searched defs:attrtype (Results 1 - 1 of 1) sorted by last modified time

/system/core/libnl_2/
H A Dattr.c75 struct nlattr *nla_nest_start(struct nl_msg *msg, int attrtype) argument
80 rc = nla_put(msg, attrtype, 0, NULL);
151 int nla_put(struct nl_msg *msg, int attrtype, int datalen, const void *data) argument
156 nla = nla_reserve(msg, attrtype, datalen);
166 int nla_put_u8(struct nl_msg *msg, int attrtype, uint8_t value) argument
168 return nla_put(msg, attrtype, sizeof(uint8_t), &value);
172 int nla_put_u16(struct nl_msg *msg, int attrtype, uint16_t value) argument
174 return nla_put(msg, attrtype, sizeof(uint16_t), &value);
178 int nla_put_u32(struct nl_msg *msg, int attrtype, uint32_t value) argument
180 return nla_put(msg, attrtype, sizeo
184 nla_put_u64(struct nl_msg *msg, int attrtype, uint64_t value) argument
193 nla_put_nested(struct nl_msg *msg, int attrtype, struct nl_msg *nested) argument
211 nla_reserve(struct nl_msg *msg, int attrtype, int data_len) argument
[all...]

Completed in 244 milliseconds