Home
last modified time | relevance | path

Searched refs:unreserved_bytes (Results 1 – 2 of 2) sorted by relevance

/external/grpc-grpc/src/core/lib/slice/
Dpercent_encoding.cc37 const uint8_t* unreserved_bytes) { in is_unreserved_character() argument
38 return ((unreserved_bytes[c / 8] >> (c % 8)) & 1) != 0; in is_unreserved_character()
42 const uint8_t* unreserved_bytes) { in grpc_percent_encode_slice() argument
52 bool unres = is_unreserved_character(*p, unreserved_bytes); in grpc_percent_encode_slice()
64 if (is_unreserved_character(*p, unreserved_bytes)) { in grpc_percent_encode_slice()
90 const uint8_t* unreserved_bytes, in grpc_strict_percent_decode_slice() argument
103 } else if (is_unreserved_character(*p, unreserved_bytes)) { in grpc_strict_percent_decode_slice()
Dpercent_encoding.h50 const uint8_t* unreserved_bytes);
58 const uint8_t* unreserved_bytes,