• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/wget/lib/

Lines Matching defs:argsize

243                           char const *arg, size_t argsize,
343 for (i = 0; ! (argsize == SIZE_MAX ? arg[i] == '\0' : i == argsize); i++)
352 <= (argsize == SIZE_MAX && 1 < quote_string_len
353 /* Use strlen only if we must: when argsize is SIZE_MAX,
356 ? (argsize = strlen (arg)) : argsize))
378 if (i + 1 < argsize && '0' <= arg[i + 1] && arg[i + 1] <= '9')
403 && i + 2 < argsize && arg[i + 1] == '?')
458 if (! (argsize == SIZE_MAX ? arg[1] == '\0' : argsize == 1))
542 if (argsize == SIZE_MAX)
543 argsize = strlen (arg);
549 argsize - (i + m), &mbstate);
560 while (i + m < argsize && arg[i + m])
657 return quotearg_buffer_restyled (buffer, buffersize, arg, argsize,
674 char const *arg, size_t argsize,
679 size_t r = quotearg_buffer_restyled (buffer, buffersize, arg, argsize,
688 quotearg_alloc (char const *arg, size_t argsize,
691 return quotearg_alloc_mem (arg, argsize, NULL, o);
701 quotearg_alloc_mem (char const *arg, size_t argsize, size_t *size,
708 size_t bufsize = quotearg_buffer_restyled (0, 0, arg, argsize, p->style,
713 quotearg_buffer_restyled (buf, bufsize, arg, argsize, p->style, flags,
766 quotearg_n_options (int n, char const *arg, size_t argsize,
802 size_t qsize = quotearg_buffer_restyled (val, size, arg, argsize,
814 quotearg_buffer_restyled (val, size, arg, argsize, options->style,
832 quotearg_n_mem (int n, char const *arg, size_t argsize)
834 return quotearg_n_options (n, arg, argsize, &default_quoting_options);
844 quotearg_mem (char const *arg, size_t argsize)
846 return quotearg_n_mem (0, arg, argsize);
858 char const *arg, size_t argsize)
861 return quotearg_n_options (n, arg, argsize, &o);
871 quotearg_style_mem (enum quoting_style s, char const *arg, size_t argsize)
873 return quotearg_n_style_mem (0, s, arg, argsize);
877 quotearg_char_mem (char const *arg, size_t argsize, char ch)
882 return quotearg_n_options (0, arg, argsize, &options);
898 quotearg_colon_mem (char const *arg, size_t argsize)
900 return quotearg_char_mem (arg, argsize, ':');
914 char const *arg, size_t argsize)
918 return quotearg_n_options (n, arg, argsize, &o);
930 char const *arg, size_t argsize)
933 argsize);
947 quote_n_mem (int n, char const *arg, size_t argsize)
949 return quotearg_n_options (n, arg, argsize, &quote_quoting_options);
953 quote_mem (char const *arg, size_t argsize)
955 return quote_n_mem (0, arg, argsize);