Searched refs:auth_token (Results 1 - 25 of 103) sorted by last modified time

12345

/external/regex-re2/lib/codereview/
H A Dcodereview.py2849 def _GetAuthCookie(self, auth_token):
2853 auth_token: The authentication token returned by ClientLogin.
2860 args = {"continue": continue_location, "auth": auth_token}
2889 auth_token = self._GetAuthToken(credentials[0], credentials[1])
2919 self._GetAuthCookie(auth_token)
/external/owasp/sanitizer/tools/
H A Dgooglecode_upload.py91 auth_token = base64.b64encode('%s:%s'% (user_name, password))
93 'Authorization': 'Basic %s' % auth_token,
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dprexmppauth.h73 const std::string& auth_token) = 0;
H A Dxmppauth.cc46 const std::string& auth_token) {
50 auth_token_ = auth_token;
42 StartPreXmppAuth(const buzz::Jid& jid, const rtc::SocketAddress& server, const rtc::CryptString& pass, const std::string& auth_mechanism, const std::string& auth_token) argument
H A Dxmppauth.h50 const std::string& auth_token);
H A Dxmppclient.cc161 d_->auth_token_ = settings.auth_token();
H A Dxmppclientsettings.h66 const std::string& auth_token() const { return auth_token_; } function in class:buzz::XmppUserSettings
/external/chromium_org/third_party/libjingle/source/talk/examples/login/
H A Dlogin_main.cc40 std::string auth_token; local
41 std::getline(std::cin, auth_token);
56 auth_token.c_str());
/external/chromium_org/testing/gtest/scripts/
H A Dupload.py215 def _GetAuthCookie(self, auth_token):
219 auth_token: The authentication token returned by ClientLogin.
226 args = {"continue": continue_location, "auth": auth_token}
257 auth_token = self._GetAuthToken(credentials[0], credentials[1])
288 self._GetAuthCookie(auth_token)
/external/chromium_org/third_party/re2/lib/codereview/
H A Dcodereview.py2852 def _GetAuthCookie(self, auth_token):
2856 auth_token: The authentication token returned by ClientLogin.
2863 args = {"continue": continue_location, "auth": auth_token}
2892 auth_token = self._GetAuthToken(credentials[0], credentials[1])
2922 self._GetAuthCookie(auth_token)
/external/chromium_org/native_client_sdk/src/examples/demo/drive/
H A Ddrive.cc75 void AddAuthTokenHeader(std::string* s, const std::string& auth_token) { argument
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) {
168 ListFiles(pp::Instance* instance, const std::string& auth_token, const ListFilesParams& params, Json::Value* root) argument
254 InsertFile(pp::Instance* instance, const std::string& auth_token, const InsertFileParams& params, Json::Value* root) argument
384 ThreadSetAuthToken(int32_t , const std::string& auth_token) argument
[all...]
/external/chromium_org/net/http/
H A Dhttp_auth_cache_unittest.cc48 std::string* auth_token) OVERRIDE {
49 *auth_token = "mock-credentials";
H A Dhttp_auth_controller_unittest.cc149 std::string* auth_token) OVERRIDE {
153 auth_token);
H A Dhttp_auth_gssapi_posix.cc721 std::string* auth_token) {
722 DCHECK(auth_token);
740 *auth_token = scheme_ + " " + encode_output;
719 GenerateAuthToken(const AuthCredentials* credentials, const std::string& spn, std::string* auth_token) argument
H A Dhttp_auth_gssapi_posix.h249 // |*auth_token| is unspecified.
257 std::string* auth_token);
H A Dhttp_auth_gssapi_posix_unittest.cc205 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));
H A Dhttp_auth_handler.cc66 const CompletionCallback& callback, std::string* auth_token) {
70 DCHECK(auth_token != NULL);
78 auth_token);
64 GenerateAuthToken( const AuthCredentials* credentials, const HttpRequestInfo* request, const CompletionCallback& callback, std::string* auth_token) argument
H A Dhttp_auth_handler.h60 // |request|, |callback|, and |auth_token| must be non-NULL.
64 // If |OK| is returned, |*auth_token| is filled in with an authentication
67 // If |ERR_IO_PENDING| is returned, |*auth_token| will be filled in
69 // |request|, |callback|, and |auth_token| must last until |callback| is
73 // token, and the value of |*auth_token| is unspecified.
77 std::string* auth_token);
163 std::string* auth_token) = 0;
H A Dhttp_auth_handler_basic.cc92 const CompletionCallback&, std::string* auth_token) {
99 *auth_token = "Basic " + base64_username_password;
90 GenerateAuthTokenImpl( const AuthCredentials* credentials, const HttpRequestInfo*, const CompletionCallback&, std::string* auth_token) argument
H A Dhttp_auth_handler_basic.h43 std::string* auth_token) OVERRIDE;
H A Dhttp_auth_handler_basic_unittest.cc43 std::string auth_token; local
45 CompletionCallback(), &auth_token);
47 EXPECT_STREQ(tests[i].expected_credentials, auth_token.c_str());
H A Dhttp_auth_handler_digest.cc143 const CompletionCallback& callback, std::string* auth_token) {
153 *auth_token = AssembleCredentials(method, path, *credentials,
141 GenerateAuthTokenImpl( const AuthCredentials* credentials, const HttpRequestInfo* request, const CompletionCallback& callback, std::string* auth_token) argument
H A Dhttp_auth_handler_digest.h89 std::string* auth_token) OVERRIDE;
H A Dhttp_auth_handler_digest_unittest.cc582 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...]
H A Dhttp_auth_handler_mock.cc114 std::string* auth_token) {
121 auth_token_ = auth_token;
129 *auth_token = "auth_token";
147 *auth_token_ = "auth_token";
110 GenerateAuthTokenImpl( const AuthCredentials* credentials, const HttpRequestInfo* request, const CompletionCallback& callback, std::string* auth_token) argument

Completed in 5791 milliseconds

12345