Lines Matching refs:argsize
178 argument ARG (of size ARGSIZE), using QUOTING_STYLE and the
184 If ARGSIZE is SIZE_MAX, use the string length of the argument for ARGSIZE.
187 ARGSIZE, O), except it uses QUOTING_STYLE instead of the quoting
192 char const *arg, size_t argsize,
268 for (i = 0; ! (argsize == SIZE_MAX ? arg[i] == '\0' : i == argsize); i++)
275 && i + quote_string_len <= argsize
299 if (i + 2 < argsize && arg[i + 1] == '?')
342 if (! (argsize == SIZE_MAX ? arg[1] == '\0' : argsize == 1))
423 if (argsize == SIZE_MAX)
424 argsize = strlen (arg);
430 argsize - (i + m), &mbstate);
441 while (i + m < argsize && arg[i + m])
520 return quotearg_buffer_restyled (buffer, buffersize, arg, argsize,
525 argument ARG (of size ARGSIZE), using O to control quoting.
531 If ARGSIZE is SIZE_MAX, use the string length of the argument for
532 ARGSIZE. */
535 char const *arg, size_t argsize,
540 size_t r = quotearg_buffer_restyled (buffer, buffersize, arg, argsize,
546 /* Like quotearg_buffer (..., ARG, ARGSIZE, O), except return newly
549 quotearg_alloc (char const *arg, size_t argsize,
553 size_t bufsize = quotearg_buffer (0, 0, arg, argsize, o) + 1;
555 quotearg_buffer (buf, bufsize, arg, argsize, o);
561 ARG is of size ARGSIZE, but if that is SIZE_MAX, ARG is a
569 quotearg_n_options (int n, char const *arg, size_t argsize,
611 size_t qsize = quotearg_buffer (val, size, arg, argsize, options);
619 quotearg_buffer (val, size, arg, argsize, options);
658 char const *arg, size_t argsize)
661 return quotearg_n_options (n, arg, argsize, &o);