1 {# SPDX-License-Identifier: GPL-2.0 #} 2 {% if annotate %} 3 /* member {{ name }} (variable-length array) */ 4 {% endif %} 5 if (value->{{ name }}.count > {{ maxsize }}) 6 return false; 7 if (xdr_stream_encode_u32(xdr, value->{{ name }}.count) != XDR_UNIT) 8 return false; 9 for (u32 i = 0; i < value->{{ name }}.count; i++) 10 {% if type in pass_by_reference %} 11 if (!xdrgen_encode_{{ type }}(xdr, &value->{{ name }}.element[i])) 12 {% else %} 13 if (!xdrgen_encode_{{ type }}(xdr, value->{{ name }}.element[i])) 14 {% endif %} 15 return false;
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.