Home
last modified time | relevance | path

Searched refs:esc_bslash (Results 1 – 10 of 10) sorted by relevance

/dports/devel/radare2/radare2-5.1.1/libr/include/r_util/
H A Dr_str.h184 R_API char *r_str_escape_latin1(const char *buf, bool show_asciidot, bool esc_bslash, bool colors);
185 R_API char *r_str_escape_utf8(const char *buf, bool show_asciidot, bool esc_bslash);
186 R_API char *r_str_escape_utf8_keep_printable(const char *buf, bool show_asciidot, bool esc_bslash);…
187 R_API char *r_str_escape_utf16le(const char *buf, int buf_size, bool show_asciidot, bool esc_bslash
188 R_API char *r_str_escape_utf32le(const char *buf, int buf_size, bool show_asciidot, bool esc_bslash
189 R_API char *r_str_escape_utf16be(const char *buf, int buf_size, bool show_asciidot, bool esc_bslash
190 R_API char *r_str_escape_utf32be(const char *buf, int buf_size, bool show_asciidot, bool esc_bslash
191 …I void r_str_byte_escape(const char *p, char **dst, int dot_nl, bool default_dot, bool esc_bslash);
H A Dr_print.h109 bool esc_bslash; member
/dports/devel/radare2/radare2-5.1.1/libr/util/
H A Dstr.c1267 if (esc_bslash) { in r_str_byte_escape()
1352 r_str_byte_escape (p, &q, dot_nl, show_asciidot, esc_bslash); in r_str_escape_()
1431 return r_str_escape_ (buf, false, colors, !colors, show_asciidot, esc_bslash); in r_str_escape_latin1()
1509 r_str_byte_escape (p + offset, &q, false, false, esc_bslash); in r_str_escape_utf()
1528 R_API char *r_str_escape_utf8(const char *buf, bool show_asciidot, bool esc_bslash) { in r_str_escape_utf8() argument
1529 return r_str_escape_utf (buf, -1, R_STRING_ENC_UTF8, show_asciidot, esc_bslash, false); in r_str_escape_utf8()
1533 return r_str_escape_utf (buf, -1, R_STRING_ENC_UTF8, show_asciidot, esc_bslash, true); in r_str_escape_utf8_keep_printable()
1537 return r_str_escape_utf (buf, buf_size, R_STRING_ENC_UTF16LE, show_asciidot, esc_bslash, false); in r_str_escape_utf16le()
1541 return r_str_escape_utf (buf, buf_size, R_STRING_ENC_UTF32LE, show_asciidot, esc_bslash, false); in r_str_escape_utf32le()
1545 return r_str_escape_utf (buf, buf_size, R_STRING_ENC_UTF16BE, show_asciidot, esc_bslash, false); in r_str_escape_utf16be()
[all …]
H A Dprint.c341 p->esc_bslash = false; in r_print_new()
H A Dformat.c1211 r_str_byte_escape (src, dst, dot_nl, !strcmp (p->strconv_mode, "asciidot"), p->esc_bslash); in r_print_byte_escape()
/dports/devel/radare2/radare2-5.1.1/libr/anal/
H A Dmeta.c243 bool esc_bslash = core ? core->print->esc_bslash : false; in r_meta_print() local
252 str = r_str_escape_utf8 (d->str, false, esc_bslash); in r_meta_print()
255 esc_bslash = false; in r_meta_print()
257 str = r_str_escape_latin1 (d->str, false, esc_bslash, false); in r_meta_print()
/dports/devel/radare2/radare2-5.1.1/libr/core/
H A Dcmd_meta.c713 bool esc_bslash = core->print->esc_bslash; in cmd_meta_others() local
716 esc_str = r_str_escape_utf8 (mi->str, false, esc_bslash); in cmd_meta_others()
719 esc_bslash = false; in cmd_meta_others()
721 esc_str = r_str_escape_latin1 (mi->str, false, esc_bslash, false); in cmd_meta_others()
H A Ddisasm.c2987 bool esc_bslash = core->print->esc_bslash; in ds_print_meta_infos() local
2991 out = r_str_escape_utf8 (mi->str, false, esc_bslash); in ds_print_meta_infos()
2994 esc_bslash = false; in ds_print_meta_infos()
2997 out = r_str_escape_latin1 (mi->str, false, esc_bslash, false); in ds_print_meta_infos()
3730 bool esc_bslash = ds->core->print->esc_bslash; in ds_esc_str() local
3740 escstr = r_str_escape_utf8 (str, ds->show_asciidot, esc_bslash); in ds_esc_str()
3743 escstr = r_str_escape_utf16le (str, len, ds->show_asciidot, esc_bslash); in ds_esc_str()
3747 escstr = r_str_escape_utf32le (str, len, ds->show_asciidot, esc_bslash); in ds_esc_str()
3751 escstr = r_str_escape_utf16be (str, len, ds->show_asciidot, esc_bslash); in ds_esc_str()
3755 escstr = r_str_escape_utf32be (str, len, ds->show_asciidot, esc_bslash); in ds_esc_str()
[all …]
H A Dcconfig.c1344 core->print->esc_bslash = node->i_value; in cb_str_escbslash()
H A Dcbin.c501 if (!r->print->esc_bslash) { in _print_strings()