HomeSort by relevance Sort by last modified time
    Searched defs:auth_token (Results 1 - 14 of 14) 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 40 std::string auth_token; local
41 std::getline(std::cin, auth_token);
56 auth_token.c_str());
  /external/chromium_org/net/http/
http_auth_handler_basic_unittest.cc 43 std::string auth_token; local
45 CompletionCallback(), &auth_token);
47 EXPECT_STREQ(tests[i].expected_credentials, auth_token.c_str());
http_auth_handler_unittest.cc 25 std::string auth_token; local
49 test_callback.callback(), &auth_token);
http_auth_sspi_win_unittest.cc 85 std::string auth_token; local
87 &auth_token));
121 std::string auth_token; local
123 &auth_token));
143 std::string auth_token; local
145 &auth_token));
http_auth_gssapi_posix_unittest.cc 205 std::string auth_token; local
207 &auth_token));
242 std::string auth_token; local
244 &auth_token));
265 std::string auth_token; local
267 &auth_token));
http_auth_handler_digest_unittest.cc 582 std::string auth_token; local
588 &auth_token));
592 auth_token);
596 std::string auth_token; local
602 &auth_token));
606 auth_token);
610 std::string auth_token; local
616 &auth_token));
620 auth_token);
624 std::string auth_token; local
638 std::string auth_token; local
652 std::string auth_token; local
666 std::string auth_token; local
681 std::string auth_token; local
    [all...]
  /external/chromium_org/cloud_print/service/
service_state.h 56 std::string auth_token() const { function in class:ServiceState
  /external/chromium_org/components/data_reduction_proxy/browser/
http_auth_handler_data_reduction_proxy_unittest.cc 101 std::string auth_token; local
103 CompletionCallback(), &auth_token);
107 EXPECT_STREQ(tests[i].expected_credentials, auth_token.c_str());
  /external/chromium_org/remoting/jingle_glue/
xmpp_signal_strategy.h 52 std::string auth_token; member in struct:remoting::XmppSignalStrategy::XmppServerConfig
80 const std::string& auth_token,
  /external/chromium_org/sync/engine/net/
server_connection_manager.h 148 const std::string& auth_token,
229 bool SetAuthToken(const std::string& auth_token);
235 const std::string auth_token() const { function in class:syncer::ServerConnectionManager
253 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_org/chrome/browser/ui/webui/options/chromeos/
bluetooth_options_handler.cc 297 std::string auth_token; local
298 args->GetString(kUpdateDeviceAuthTokenIndex, &auth_token);
306 VLOG(1) << "PIN Code supplied: " << address << ": " << auth_token; local
307 device->SetPinCode(auth_token);
316 base::StringToUint(auth_token, &passkey);
322 << ": " << 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...]

Completed in 452 milliseconds