Searched refs:eight_bit (Results 1 – 4 of 4) sorted by relevance
/systemd-251/src/basic/ |
D | escape.c | 106 int cunescape_one(const char *p, size_t length, char32_t *ret, bool *eight_bit, bool accept_nul) { in cunescape_one() argument 179 *eight_bit = true; in cunescape_one() 280 *eight_bit = true; in cunescape_one() 315 bool eight_bit = false; in cunescape_length_with_prefix() local 337 … r = cunescape_one(f + 1, remaining - 1, &u, &eight_bit, flags & UNESCAPE_ACCEPT_NUL); in cunescape_length_with_prefix() 349 if (eight_bit) in cunescape_length_with_prefix()
|
D | extract-word.c | 92 bool eight_bit = false; in extract_first_word() local 96 (r = cunescape_one(*p, SIZE_MAX, &u, &eight_bit, false)) >= 0) { in extract_first_word() 102 if (eight_bit) in extract_first_word()
|
D | escape.h | 48 int cunescape_one(const char *p, size_t length, char32_t *ret, bool *eight_bit, bool accept_nul);
|
D | process-util.c | 242 bool eight_bit = (flags & PROCESS_CMDLINE_USE_LOCALE) && !is_locale_utf8(); in get_process_cmdline() local 245 … eight_bit * XESCAPE_8_BIT | !full * XESCAPE_FORCE_ELLIPSIS); in get_process_cmdline()
|