Home | History | Annotate | Download | only in netlink

Lines Matching refs:rem

258  * @arg rem	initialized to len, holds bytes currently remaining in stream
260 #define nla_for_each_attr(pos, head, len, rem) \
261 for (pos = head, rem = len; \
262 nla_ok(pos, rem); \
263 pos = nla_next(pos, &(rem)))
270 * @arg rem initialized to len, holds bytes currently remaining in stream
272 #define nla_for_each_nested(pos, nla, rem) \
273 for (pos = nla_data(nla), rem = nla_len(nla); \
274 nla_ok(pos, rem); \
275 pos = nla_next(pos, &(rem)))