HomeSort by relevance Sort by last modified time
    Searched refs:auth_token_ (Results 1 - 25 of 41) sorted by null

1 2

  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmppauth.h 60 virtual std::string GetAuthToken() const { return auth_token_; }
73 std::string auth_token_; member in class:XmppAuth
xmppauth.cc 50 auth_token_ = auth_token;
95 mechanism, jid_.Str(), auth_token_, "oauth2");
97 return new buzz::SaslCookieMechanism(mechanism, jid_.Str(), auth_token_);
xmppclientsettings.h 50 auth_token_ = token;
66 const std::string& auth_token() const { return auth_token_; }
78 std::string auth_token_; member in class:buzz::XmppUserSettings
  /external/chromium_org/cloud_print/service/
service_state.h 57 return auth_token_;
81 auth_token_ = value;
93 std::string auth_token_; member in class:ServiceState
service_state.cc 96 auth_token_.clear();
123 cloud_print->GetString(kAuthTokenOptionName, &auth_token_);
133 bool valid_auth = !auth_token_.empty() && !xmpp_auth_token_.empty();
147 SetNotEmptyJsonString(cloud_print.get(), kAuthTokenOptionName, auth_token_);
219 auth_token_ = LoginToGoogle("cloudprint", email_, password);
  /external/chromium/chrome/browser/policy/
device_policy_identity_strategy.cc 72 auth_token_ = auth_token;
95 *auth_token = auth_token_;
device_token_fetcher.cc 70 auth_token_ = auth_token;
80 if (auth_token_.empty() || device_id_.empty()) {
93 backend_->ProcessRegisterRequest(auth_token_, device_id_, request, this);
112 auth_token_.clear();
186 auth_token_.clear();
device_policy_identity_strategy.h 55 std::string auth_token_; member in class:policy::DevicePolicyIdentityStrategy
  /external/chromium_org/chrome/service/cloud_print/
cloud_print_wipeout.cc 24 auth_token_ = auth_token;
66 return GetCloudPrintAuthHeader(auth_token_);
cloud_print_wipeout.h 53 std::string auth_token_; member in class:cloud_print::CloudPrintWipeout
  /external/chromium/net/http/
http_auth_handler_mock.cc 19 auth_token_(NULL),
103 EXPECT_TRUE(auth_token_ == NULL);
105 auth_token_ = auth_token;
130 *auth_token_ = "auth_token";
131 auth_token_ = NULL;
http_auth_handler_negotiate.cc 103 auth_token_(NULL),
211 DCHECK(auth_token_ == NULL);
212 auth_token_ = auth_token;
314 return auth_system_.GenerateAuthToken(username, password, spn_, auth_token_);
319 auth_token_ = NULL;
http_auth_controller.h 140 // |auth_token_| contains the opaque string to pass to the proxy or
142 std::string auth_token_; member in class:net::HttpAuthController
http_auth_handler_mock.h 105 std::string* auth_token_; member in class:net::HttpAuthHandlerMock
http_auth_controller.cc 188 DCHECK(auth_token_.empty());
194 &auth_token_);
246 // auth_token_ can be empty if we encountered a permanent error with
248 if (!auth_token_.empty()) {
250 HttpAuth::GetAuthorizationHeaderName(target_), auth_token_); local
251 auth_token_.clear();
526 auth_token_.clear();
  /external/chromium_org/net/http/
http_auth_handler_mock.cc 21 auth_token_(NULL),
118 EXPECT_TRUE(auth_token_ == NULL);
120 auth_token_ = auth_token;
146 *auth_token_ = "auth_token";
147 auth_token_ = NULL;
http_auth_handler_negotiate.cc 109 auth_token_(NULL),
217 DCHECK(auth_token_ == NULL);
218 auth_token_ = auth_token;
320 return auth_system_.GenerateAuthToken(credentials, spn_, auth_token_);
325 auth_token_ = NULL;
http_auth_controller.h 141 // |auth_token_| contains the opaque string to pass to the proxy or
143 std::string auth_token_; member in class:net::HttpAuthController
  /external/chromium/chrome/browser/chromeos/login/
user_image_downloader.cc 42 auth_token_(auth_token) {
44 if (auth_token_.empty())
53 base::StringPrintf(kAuthorizationHeader, auth_token_.c_str()));
82 new ImageDownloader(this, GURL(image_url), auth_token_);
user_image_downloader.h 77 std::string auth_token_; member in class:chromeos::UserImageDownloader
  /external/chromium_org/chrome/browser/chromeos/login/
test_login_utils.h 55 std::string auth_token_; member in class:chromeos::TestLoginUtils
  /external/chromium_org/sync/engine/net/
server_connection_manager.h 241 return auth_token_.empty();
246 return auth_token_;
265 // An internal helper to clear our auth_token_ and cache the old version
300 std::string auth_token_; member in class:syncer::ServerConnectionManager
  /external/chromium_org/chrome/browser/profiles/
profile_downloader.cc 237 VLOG(1) << "Fetching user entry with token: " << auth_token_;
244 if (!auth_token_.empty()) {
246 base::StringPrintf(kAuthorizationHeader, auth_token_.c_str()));
313 if (!auth_token_.empty()) {
315 base::StringPrintf(kAuthorizationHeader, auth_token_.c_str()));
363 auth_token_ = access_token;
profile_downloader.h 111 std::string auth_token_; member in class:ProfileDownloader
  /external/chromium_org/native_client_sdk/src/examples/demo/drive/
drive.cc 331 std::string auth_token_; member in class:Instance
387 auth_token_ = auth_token;
458 int32_t result = ListFiles(this, auth_token_, p, &root);
490 int32_t result = InsertFile(this, auth_token_, p, metadata);
507 int32_t result = InsertFile(this, auth_token_, p, metadata);
525 AddAuthTokenHeader(&p.request_headers, auth_token_);

Completed in 467 milliseconds

1 2