Lines Matching refs:shf
1053 print_value_quoted(struct shf *shf, const char *s) in print_value_quoted() argument
1068 shf_puts(s, shf); in print_value_quoted()
1081 shf_putc('\'', shf); in print_value_quoted()
1084 shf_putc('\\', shf); in print_value_quoted()
1086 shf_putc('\'', shf); in print_value_quoted()
1089 shf_putc(c, shf); in print_value_quoted()
1096 shf_putc('$', shf); in print_value_quoted()
1097 shf_putc('\'', shf); in print_value_quoted()
1103 shf_fprintf(shf, "\\u%04X", wc); in print_value_quoted()
1143 shf_putc('\\', shf); in print_value_quoted()
1151 shf_fprintf(shf, "\\%03o", c); in print_value_quoted()
1155 shf_putc(c, shf); in print_value_quoted()
1162 shf_putc('\'', shf); in print_value_quoted()
1170 print_columns(struct shf *shf, unsigned int n, in print_columns() argument
1209 shf_fprintf(shf, "%s \n", in print_columns()
1229 shf_fprintf(shf, "%*s", max_col, in print_columns()
1232 shf_fprintf(shf, "%*s", nspace, null); in print_columns()
1235 shf_putchar('\n', shf); in print_columns()