Home | History | Annotate | Download | only in lib

Lines Matching refs:argsize

196    argument ARG (of size ARGSIZE), using QUOTING_STYLE and the
202 If ARGSIZE is -1, use the string length of the argument for ARGSIZE.
205 ARGSIZE, O), except it uses QUOTING_STYLE instead of the quoting
210 char const *arg, size_t argsize,
281 for (i = 0; ! (argsize == (size_t) -1 ? arg[i] == '\0' : i == argsize); i++)
288 && i + quote_string_len <= argsize
302 if (i + 2 < argsize && arg[i + 1] == '?')
421 if (argsize == (size_t) -1)
422 argsize = strlen (arg);
428 argsize - (i + m), &mbstate);
439 while (i + m < argsize && arg[i + m])
499 return quotearg_buffer_restyled (buffer, buffersize, arg, argsize,
504 argument ARG (of size ARGSIZE), using O to control quoting.
510 If ARGSIZE is -1, use the string length of the argument for ARGSIZE. */
513 char const *arg, size_t argsize,
517 return quotearg_buffer_restyled (buffer, buffersize, arg, argsize,