Home
last modified time | relevance | path

Searched refs:nl_type (Results 1 – 4 of 4) sorted by relevance

/external/musl/src/stdio/
Dvfwprintf.c146 static int wprintf_core(FILE *f, const wchar_t *fmt, va_list *ap, union arg *nl_arg, int *nl_type) in wprintf_core() argument
196 nl_type[s[1]-'0'] = INT; in wprintf_core()
209 nl_type[s[2]-'0'] = INT; in wprintf_core()
239 if (argpos>=0) nl_type[argpos]=st, arg=nl_arg[argpos]; in wprintf_core()
326 for (i=1; i<=NL_ARGMAX && nl_type[i]; i++) in wprintf_core()
327 pop_arg(nl_arg+i, nl_type[i], ap); in wprintf_core()
328 for (; i<=NL_ARGMAX && !nl_type[i]; i++); in wprintf_core()
343 int nl_type[NL_ARGMAX] = {0}; in vfwprintf() local
350 if (wprintf_core(0, fmt, &ap2, nl_arg, nl_type) < 0) { in vfwprintf()
359 ret = wprintf_core(f, fmt, &ap2, nl_arg, nl_type); in vfwprintf()
Dvfprintf.c430 static int printf_core(FILE *f, const char *fmt, va_list *ap, union arg *nl_arg, int *nl_type) in printf_core() argument
481 nl_type[s[1]-'0'] = INT; in printf_core()
494 nl_type[s[2]-'0'] = INT; in printf_core()
524 if (argpos>=0) nl_type[argpos]=st, arg=nl_arg[argpos]; in printf_core()
643 for (i=1; i<=NL_ARGMAX && nl_type[i]; i++) in printf_core()
644 pop_arg(nl_arg+i, nl_type[i], ap); in printf_core()
645 for (; i<=NL_ARGMAX && !nl_type[i]; i++); in printf_core()
660 int nl_type[NL_ARGMAX+1] = {0}; in vfprintf() local
668 if (printf_core(0, fmt, &ap2, nl_arg, nl_type) < 0) { in vfprintf()
683 else ret = printf_core(f, fmt, &ap2, nl_arg, nl_type); in vfprintf()
/external/iproute2/tc/
Df_flower.c1177 int nl_type, nl_mask_type; in flower_print_opt() local
1239 nl_type = flower_port_attr_type(ip_proto, FLOWER_ENDPOINT_DST); in flower_print_opt()
1240 if (nl_type >= 0) in flower_print_opt()
1241 flower_print_port(f, "dst_port", tb[nl_type]); in flower_print_opt()
1242 nl_type = flower_port_attr_type(ip_proto, FLOWER_ENDPOINT_SRC); in flower_print_opt()
1243 if (nl_type >= 0) in flower_print_opt()
1244 flower_print_port(f, "src_port", tb[nl_type]); in flower_print_opt()
1249 nl_type = flower_icmp_attr_type(eth_type, ip_proto, in flower_print_opt()
1253 if (nl_type >= 0 && nl_mask_type >= 0) in flower_print_opt()
1254 flower_print_masked_u8(f, "icmp_type", tb[nl_type], in flower_print_opt()
[all …]
/external/autotest/client/deps/iwcap/src/
Diwcap.c221 static int check_iftype(struct nlattr *tb_msg[], int nl_type) in check_iftype() argument
230 if (nl_mode->nla_type == nl_type) in check_iftype()