Home
last modified time | relevance | path

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

/external/webrtc/webrtc/base/
Durlencode.cc75 static bool IsValidUrlChar(char ch, bool unsafe_only) { in IsValidUrlChar() argument
76 if (unsafe_only) { in IsValidUrlChar()
94 bool encode_space_as_plus, bool unsafe_only) { in InternalUrlEncode() argument
103 if (*source == ' ' && encode_space_as_plus && !unsafe_only) { in InternalUrlEncode()
105 } else if (IsValidUrlChar(ch, unsafe_only)) { in InternalUrlEncode()
158 bool unsafe_only) { in InternalUrlEncodeString() argument
162 encode_space_as_plus, unsafe_only); in InternalUrlEncodeString()