Searched refs:unprintable (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/ptools/pargs/
H A Dpargs.c43 * target and pargs codeset. Finally, a second pass to escape unprintable
170 unctrl_str_strict_ascii(const char *src, int escape_slash, int *unprintable) argument
190 *unprintable = 1;
207 unctrl_str(const char *src, int escape_slash, int *unprintable) argument
233 unprintable));
275 *unprintable = 1;
356 * other unprintable characters (and backslashes) will have been dealt
1027 * removed of unprintable characters.
1030 convert_str(pargs_data_t *datap, const char *str, int *unprintable) argument
1035 retstr = unctrl_str_strict_ascii(str, 1, unprintable);
1100 convert_array(pargs_data_t *datap, char **arr, size_t count, int *unprintable) argument
1363 int unprintable; local
[all...]
/illumos-gate/usr/src/cmd/prtconf/
H A Dpdevinfo.c158 static int unprintable(char *, int);
1606 if (!unprintable(value, valsize)) {
1638 unprintable(char *value, int size) function
1648 * If any character is unprintable, or if a null appears
1650 * property is "unprintable".
1878 if (!unprintable((char *)prop_valp, len)) {
/illumos-gate/usr/src/cmd/truss/
H A Dprint.c221 * We want to avoid outputting unprintable characters that may
223 * unprintable characters, size the array appropriately, and
224 * then walk each character by hand. Those that are unprintable
228 int i, unprintable, quotes; local
230 for (i = 0, unprintable = 0, quotes = 0; i < len; i++) {
232 unprintable++;
237 GROW(len + 3 * unprintable + quotes + 2);

Completed in 86 milliseconds