Home
last modified time | relevance | path

Searched refs:use_hex (Results 1 – 4 of 4) sorted by relevance

/external/protobuf/src/google/protobuf/stubs/
Dstrutil.cc483 int dest_len, bool use_hex, bool utf8_safe) { in CEscapeInternal() argument
509 sprintf(dest + used, (use_hex ? "\\x%02x" : "\\%03o"), in CEscapeInternal()
511 is_hex_escape = use_hex; in CEscapeInternal()
/external/protobuf/php/ext/google/protobuf/
Dupb.c9208 const bool use_hex = false; in putescaped() local
9233 sprintf(dst, (use_hex ? "\\x%02x" : "\\%03o"), (uint8_t)*buf); in putescaped()
9234 is_hex_escape = use_hex; in putescaped()
/external/protobuf/ruby/ext/google/protobuf_c/
Dupb.c9882 const bool use_hex = false; in putescaped() local
9907 sprintf(dst, (use_hex ? "\\x%02x" : "\\%03o"), (uint8_t)*buf); in putescaped()
9908 is_hex_escape = use_hex; in putescaped()
/external/strace/
DChangeLog886 * util.c (quote_string): Enable use_hex when QUOTE_FORCE_HEX is set