OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:supported_methods
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/server/
data_socket.cc
209
}
supported_methods
[] = {
local
216
for (size_t i = 0; i < ARRAYSIZE(
supported_methods
); ++i) {
217
if (len >
supported_methods
[i].method_name_len &&
218
isspace(begin[
supported_methods
[i].method_name_len]) &&
219
strncmp(begin,
supported_methods
[i].method_name,
220
supported_methods
[i].method_name_len) == 0) {
221
method_ =
supported_methods
[i].id;
222
path = begin +
supported_methods
[i].method_name_len;
/external/chromium_org/remoting/protocol/
negotiating_client_authenticator.cc
99
std::stringstream
supported_methods
(std::stringstream::out);
103
supported_methods
<< kSupportedMethodsSeparator;
104
supported_methods
<< it->ToString();
106
result->AddAttr(kSupportedMethodsAttributeQName,
supported_methods
.str());
Completed in 109 milliseconds