HomeSort by relevance Sort by last modified time
    Searched defs:auth_token (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/remoting/base/
auth_token_util_unittest.cc 13 std::string auth_token; local
16 ParseAuthTokenWithService("service:token", &auth_token, &auth_service);
17 EXPECT_EQ("token", auth_token);
21 ParseAuthTokenWithService("token2", &auth_token, &auth_service);
22 EXPECT_EQ("token2", auth_token);
25 ParseAuthTokenWithService("just_service:", &auth_token, &auth_service);
26 EXPECT_EQ("", auth_token);
29 ParseAuthTokenWithService("yay:token:has:colons", &auth_token, &auth_service);
30 EXPECT_EQ("token:has:colons", auth_token);
  /external/chromium_org/third_party/libjingle/source/talk/examples/login/
login_main.cc 39 std::string auth_token; local
40 std::getline(std::cin, auth_token);
55 auth_token.c_str());
  /external/chromium/net/http/
http_auth_handler_basic_unittest.cc 42 std::string auth_token; local
44 NULL, &auth_token);
46 EXPECT_STREQ(tests[i].expected_credentials, auth_token.c_str());
http_auth_handler_unittest.cc 25 std::string auth_token; local
48 &test_callback, &auth_token);
http_auth_sspi_win_unittest.cc 84 std::string auth_token; local
87 &auth_token));
121 std::string auth_token; local
124 &auth_token));
144 std::string auth_token; local
147 &auth_token));
http_auth_gssapi_posix_unittest.cc 200 std::string auth_token; local
203 &auth_token));
238 std::string auth_token; local
241 &auth_token));
262 std::string auth_token; local
265 &auth_token));
http_auth_handler_digest_unittest.cc 566 std::string auth_token; local
572 &auth_token));
576 auth_token);
580 std::string auth_token; local
586 &auth_token));
590 auth_token);
594 std::string auth_token; local
600 &auth_token));
604 auth_token);
608 std::string auth_token; local
622 std::string auth_token; local
637 std::string auth_token; local
    [all...]
  /external/chromium_org/net/http/
http_auth_handler_basic_unittest.cc 42 std::string auth_token; local
44 CompletionCallback(), &auth_token);
46 EXPECT_STREQ(tests[i].expected_credentials, auth_token.c_str());
http_auth_handler_unittest.cc 23 std::string auth_token; local
47 test_callback.callback(), &auth_token);
http_auth_sspi_win_unittest.cc 84 std::string auth_token; local
86 &auth_token));
120 std::string auth_token; local
122 &auth_token));
142 std::string auth_token; local
144 &auth_token));
http_auth_gssapi_posix_unittest.cc 204 std::string auth_token; local
206 &auth_token));
241 std::string auth_token; local
243 &auth_token));
264 std::string auth_token; local
266 &auth_token));
http_auth_handler_digest_unittest.cc 580 std::string auth_token; local
586 &auth_token));
590 auth_token);
594 std::string auth_token; local
600 &auth_token));
604 auth_token);
608 std::string auth_token; local
614 &auth_token));
618 auth_token);
622 std::string auth_token; local
636 std::string auth_token; local
650 std::string auth_token; local
664 std::string auth_token; local
679 std::string auth_token; local
    [all...]
  /external/chromium_org/chrome/browser/net/spdyproxy/
http_auth_handler_spdyproxy_unittest.cc 85 std::string auth_token; local
87 CompletionCallback(), &auth_token);
92 EXPECT_STREQ(tests[i].expected_credentials, auth_token.c_str());
  /external/chromium_org/cloud_print/service/
service_state.h 56 std::string auth_token() const { function in class:ServiceState
  /external/chromium/chrome/browser/policy/
cloud_policy_controller.cc 232 std::string auth_token; local
238 if (identity_strategy_->GetCredentials(&username, &auth_token) &&
240 token_fetcher_->FetchToken(auth_token, device_id, policy_type,
  /external/chromium/chrome/common/net/gaia/
gaia_authenticator.h 16 // // Do something with: gaia_auth.auth_token(), or gaia_auth.sid(),
130 virtual void RenewAuthToken(const std::string& auth_token);
131 void SetAuthToken(const std::string& auth_token);
143 std::string auth_token; member in struct:gaia::GaiaAuthenticator::AuthResults
210 inline std::string auth_token() const { function in class:gaia::GaiaAuthenticator
212 return auth_results_.auth_token;
  /external/chromium_org/sync/engine/net/
server_connection_manager.h 148 const std::string& auth_token,
231 bool SetAuthToken(const std::string& auth_token);
244 const std::string auth_token() const { function in class:syncer::ServerConnectionManager
262 const std::string& auth_token,
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmppclientsettings.h 66 const std::string& auth_token() const { return auth_token_; } function in class:buzz::XmppUserSettings
  /external/chromium/chrome/browser/sync/engine/net/
server_connection_manager.h 191 const std::string& auth_token,
303 void set_auth_token(const std::string& auth_token) {
306 auth_token_.assign(auth_token);
309 const std::string auth_token() const { function in class:browser_sync::ServerConnectionManager
334 const std::string& auth_token,
  /external/chromium/net/socket_stream/
socket_stream.cc 624 std::string auth_token; local
630 &auth_token);
637 ": " + auth_token + "\r\n");
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
bluetooth_options_handler.cc 268 std::string auth_token; local
269 args->GetString(kUpdateDeviceAuthTokenIndex, &auth_token);
277 VLOG(1) << "PIN Code supplied: " << address << ": " << auth_token; local
278 device->SetPinCode(auth_token);
287 base::StringToUint(auth_token, &passkey);
293 << ": " << auth_token; local
  /external/chromium_org/native_client_sdk/src/examples/demo/drive/
drive.cc 75 void AddAuthTokenHeader(std::string* s, const std::string& auth_token) {
77 *s += auth_token;
169 const std::string& auth_token,
185 AddAuthTokenHeader(&p.request_headers, auth_token);
255 const std::string& auth_token,
281 AddAuthTokenHeader(&p.request_headers, auth_token);
313 void ThreadSetAuthToken(int32_t, const std::string& auth_token);
361 std::string auth_token = message.substr(kTokenMessageLen); local
363 &Instance::ThreadSetAuthToken, auth_token));
385 const std::string& auth_token) {
    [all...]
  /external/chromium_org/remoting/host/plugin/
host_script_object.cc 111 const std::string& auth_token,
139 const std::string& auth_token,
144 const std::string& auth_token,
228 const std::string& auth_token,
234 base::Bind(&It2MeImpl::Connect, this, uid, auth_token, auth_service));
253 uid, auth_token, auth_service));
310 const std::string& auth_token,
319 FinishConnect(uid, auth_token, auth_service);
324 uid, auth_token, auth_service);
330 const std::string& auth_token,
1043 std::string auth_token; local
    [all...]

Completed in 492 milliseconds