/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/clients/ |
imap.py | 32 def authenticate(self, url, consumer, token): member in class:IMAP4_SSL 39 imaplib.IMAP4_SSL.authenticate(self, 'XOAUTH',
|
smtp.py | 33 def authenticate(self, url, consumer, token): member in class:SMTP
|
/frameworks/base/core/java/android/nfc/ |
INfcAdapterExtras.aidl | 31 void authenticate(in byte[] token);
|
/external/apache-http/src/org/apache/http/auth/ |
AuthScheme.java | 137 Header authenticate(Credentials credentials, HttpRequest request) method in interface:AuthScheme
|
/external/apache-http/src/org/apache/http/impl/auth/ |
BasicScheme.java | 130 public Header authenticate( method in class:BasicScheme 142 return authenticate(credentials, charset, isProxy()); 154 public static Header authenticate( method in class:BasicScheme
|
NTLMScheme.java | 106 public Header authenticate( method in class:NTLMScheme
|
DigestScheme.java | 219 public Header authenticate( method in class:DigestScheme
|
/frameworks/base/nfc-extras/java/com/android/nfc_extras/ |
NfcAdapterExtras.java | 216 * Authenticate the client application. 219 * to authenticate with a token, before using other methods. 224 public void authenticate(byte[] token) { method in class:NfcAdapterExtras 226 sService.authenticate(token);
|
/external/apache-http/src/org/apache/http/client/protocol/ |
RequestProxyAuthentication.java | 95 request.addHeader(authScheme.authenticate(creds, request));
|
RequestTargetAuthentication.java | 96 request.addHeader(authScheme.authenticate(creds, request));
|
/external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/ |
bugzilla.py | 110 self._bugzilla.authenticate() 351 self.authenticate() 361 # We need to authenticate to download patches from security bugs. 362 self.authenticate() 376 self.authenticate() 399 def authenticate(self): member in class:Bugzilla 489 self.authenticate() 515 self.authenticate() 569 self.authenticate() 627 self.authenticate() [all...] |
bugzilla_unittest.py | 295 bugzilla.authenticate = lambda: None 313 bugzilla.authenticate = lambda: None
|
/frameworks/base/core/java/android/nfc/tech/ |
MifareClassic.java | 315 * Authenticate a sector with key A. 331 * @param sectorIndex index of sector to authenticate, starting from 0 338 return authenticate(sectorIndex, key, true); 342 * Authenticate a sector with key B. 358 * @param sectorIndex index of sector to authenticate, starting from 0 365 return authenticate(sectorIndex, key, false); 368 private boolean authenticate(int sector, byte[] key, boolean keyA) throws IOException { method in class:MifareClassic 382 // Authenticate command takes a block address. Authenticating a block 383 // of a sector will authenticate the entire sector.
|
/frameworks/base/core/tests/coretests/src/android/net/http/ |
DefaultHttpClientTest.java | 130 digestScheme.processChallenge(new BasicHeader("WWW-Authenticate", challenge)); 132 digestScheme.authenticate(new UsernamePasswordCredentials("username", "password"), get);
|
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/ |
Authenticator.java | 105 final String authToken = NetworkUtilities.authenticate(account.name, password);
|
AuthenticatorActivity.java | 234 Log.e(TAG, "onAuthenticationResult: failed to authenticate"); 293 * Represents an asynchronous task used to authenticate a user against the 303 return NetworkUtilities.authenticate(mUsername, mPassword); 305 Log.e(TAG, "UserLoginTask.doInBackground: failed to authenticate");
|
/development/samples/SampleSyncAdapter/samplesyncadapter_server/ |
web_services.py | 58 Process a request to authenticate a client. We assume that the username 66 def authenticate(self): member in class:BaseWebServiceHandler 109 class Authenticate(BaseWebServiceHandler): 119 self.authenticate() 392 [('/auth', Authenticate),
|
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/ |
NetworkUtilities.java | 104 public static String authenticate(String username, String password) { method in class:NetworkUtilities
|
/external/webkit/Tools/Scripts/webkitpy/tool/bot/ |
flakytestreporter.py | 58 self._tool.bugs.authenticate()
|
/external/chromium/net/tools/testserver/ |
chromiumsync.py | 750 if contents == sync_pb2.ClientToServerMessage.AUTHENTICATE: 751 print '%s Authenticate' % log_context 754 response.authenticate.user.email = 'syncjuser@chromium' 755 response.authenticate.user.display_name = 'Sync J User' [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
driver_i.h | 60 if (wpa_s->driver->authenticate) 61 return wpa_s->driver->authenticate(wpa_s->drv_priv, params);
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/ |
__init__.py | 151 HOP_BY_HOP = ['connection', 'keep-alive', 'proxy-authenticate', 'proxy-authorization', 'te', 'trailers', 'transfer-encoding', 'upgrade'] 228 # Whether to use a strict mode to parse WWW-Authenticate headers 242 def _parse_www_authenticate(headers, headername='www-authenticate'): 247 authenticate = headers[headername].strip() 249 while authenticate: 252 (auth_scheme, the_rest) = ('digest', authenticate) 254 (auth_scheme, the_rest) = authenticate.split(" ", 1) 265 authenticate = the_rest.strip() 463 challenge = _parse_www_authenticate(response, 'www-authenticate') 501 challenge = _parse_www_authenticate(response, 'www-authenticate').get('digest', {} [all...] |
/frameworks/base/media/libstagefright/rtsp/ |
MyTransmitter.h | 265 void authenticate(const sp<ARTSPResponse> &response) { function in struct:android::MyTransmitter 266 ssize_t i = response->mHeaders.indexOfKey("www-authenticate"); 383 LOG(INFO) << "FAILED to authenticate"; 388 authenticate(response);
|
/prebuilt/common/http-client/ |
httpclient-4.1.1.jar | |
/external/apache-http/src/org/apache/http/impl/client/ |
DefaultRequestDirector.java | 727 connect.addHeader(authScheme.authenticate(creds, connect)); [all...] |