Searched refs:use_hex (Results 1 – 4 of 4) sorted by relevance
483 int dest_len, bool use_hex, bool utf8_safe) { in CEscapeInternal() argument509 sprintf(dest + used, (use_hex ? "\\x%02x" : "\\%03o"), in CEscapeInternal()511 is_hex_escape = use_hex; in CEscapeInternal()
9208 const bool use_hex = false; in putescaped() local9233 sprintf(dst, (use_hex ? "\\x%02x" : "\\%03o"), (uint8_t)*buf); in putescaped()9234 is_hex_escape = use_hex; in putescaped()
9882 const bool use_hex = false; in putescaped() local9907 sprintf(dst, (use_hex ? "\\x%02x" : "\\%03o"), (uint8_t)*buf); in putescaped()9908 is_hex_escape = use_hex; in putescaped()
886 * util.c (quote_string): Enable use_hex when QUOTE_FORCE_HEX is set