OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:auth_service_with_token
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/remoting/base/
auth_token_util.cc
10
void ParseAuthTokenWithService(const std::string&
auth_service_with_token
,
13
size_t delimiter_pos =
auth_service_with_token
.find(':');
20
auth_token->assign(
auth_service_with_token
);
23
auth_service->assign(
auth_service_with_token
.substr(0, delimiter_pos));
26
if (delimiter_pos <
auth_service_with_token
.size()) {
27
auth_token->assign(
auth_service_with_token
.substr(delimiter_pos + 1));
auth_token_util.h
14
void ParseAuthTokenWithService(const std::string&
auth_service_with_token
,
/external/chromium_org/remoting/host/it2me/
it2me_native_messaging_host.cc
148
std::string
auth_service_with_token
;
local
149
if (!message.GetString("authServiceWithToken", &
auth_service_with_token
)) {
155
ParseAuthTokenWithService(
auth_service_with_token
,
161
"Invalid 'authServiceWithToken': " +
auth_service_with_token
);
/external/chromium_org/remoting/host/plugin/
host_script_object.cc
471
std::string
auth_service_with_token
= StringFromNPVariant(args[1]);
local
472
ParseAuthTokenWithService(
auth_service_with_token
, &xmpp_config.auth_token,
475
SetException("connect:
auth_service_with_token
argument has empty token");
[
all
...]
Completed in 33 milliseconds