/external/smack/src/org/jivesoftware/smack/sasl/ |
D | SASLAnonymous.java | 42 public void authenticate(String username, String host, CallbackHandler cbh) throws IOException { in authenticate() method in SASLAnonymous 43 authenticate(); in authenticate() 46 public void authenticate(String username, String host, String password) throws IOException { in authenticate() method in SASLAnonymous 47 authenticate(); in authenticate() 50 protected void authenticate() throws IOException { in authenticate() method in SASLAnonymous
|
D | SASLGSSAPIMechanism.java | 61 …public void authenticate(String username, String host, CallbackHandler cbh) throws IOException, XM… in authenticate() method in SASLGSSAPIMechanism 66 authenticate(); in authenticate() 80 …public void authenticate(String username, String host, String password) throws IOException, XMPPEx… in authenticate() method in SASLGSSAPIMechanism 85 authenticate(); in authenticate()
|
D | SASLFacebookConnect.java | 50 protected void authenticate() throws IOException, XMPPException { in authenticate() method in SASLFacebookConnect 67 public void authenticate(String apiKeyAndSessionKey, String host, String sessionSecret) in authenticate() method in SASLFacebookConnect 89 authenticate(); in authenticate() 92 public void authenticate(String username, String host, CallbackHandler cbh) in authenticate() method in SASLFacebookConnect 97 authenticate(); in authenticate()
|
D | SASLMechanism.java | 81 …public void authenticate(String username, String host, String password) throws IOException, XMPPEx… in authenticate() method in SASLMechanism 93 authenticate(); in authenticate() 106 …public void authenticate(String username, String host, CallbackHandler cbh) throws IOException, XM… in authenticate() method in SASLMechanism 110 authenticate(); in authenticate() 113 protected void authenticate() throws IOException, XMPPException { in authenticate() method in SASLMechanism
|
/external/smack/src/org/jivesoftware/smack/ |
D | SASLAuthentication.java | 216 public String authenticate(String username, String resource, CallbackHandler cbh) in authenticate() method in SASLAuthentication 237 currentMechanism.authenticate(username, connection.getHost(), cbh); in authenticate() 298 public String authenticate(String username, String password, String resource) in authenticate() method in SASLAuthentication 319 currentMechanism.authenticate(username, connection.getServiceName(), password); in authenticate() 353 .authenticate(username, password, resource); in authenticate() 363 .authenticate(username, password, resource); in authenticate() 368 return new NonSASLAuthentication(connection).authenticate(username, password, resource); in authenticate() 386 currentMechanism.authenticate(null,null,""); in authenticateAnonymously()
|
D | SASLAuthentication.java.orig | 40 * register with the server, authenticate using Non-SASL or authenticate using SASL. If the 41 * server supports SASL then Smack will first try to authenticate using SASL. But if that 51 * the connection. If no resource is passed in {@link #authenticate(String, String, String)} 118 * be possible to authenticate users using the removed SASL mechanism. It also removes the 131 * to authenticate using the most prefered SASL mechanism that is also supported by the server. 142 * to authenticate using the most prefered SASL mechanism that is also supported by the server. 156 * be possible to authenticate users using the removed SASL mechanism. Note that the mechanism 185 * Returns true if the server offered ANONYMOUS SASL as a way to authenticate users. 187 * @return true if the server offered ANONYMOUS SASL as a way to authenticate users. 216 public String authenticate(String username, String resource, CallbackHandler cbh) [all …]
|
D | UserAuthentication.java | 50 String authenticate(String username, String resource, CallbackHandler cbh) throws in authenticate() method 67 String authenticate(String username, String password, String resource) throws in authenticate() method
|
D | NonSASLAuthentication.java | 47 …public String authenticate(String username, String resource, CallbackHandler cbh) throws XMPPExcep… in authenticate() method in NonSASLAuthentication 52 return authenticate(username, String.valueOf(pcb.getPassword()),resource); in authenticate() 58 public String authenticate(String username, String password, String resource) throws in authenticate() method in NonSASLAuthentication
|
D | BOSHConnection.java | 320 response = saslAuthentication.authenticate(username, password, resource); in login() 322 … response = saslAuthentication.authenticate(username, resource, config.getCallbackHandler()); in login() 326 response = new NonSASLAuthentication(this).authenticate(username, password, resource); in login()
|
D | XMPPConnection.java | 220 response = saslAuthentication.authenticate(username, password, resource); in login() 224 .authenticate(username, resource, config.getCallbackHandler()); in login() 229 response = new NonSASLAuthentication(this).authenticate(username, password, resource); in login()
|
/external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/ |
D | bugzilla.py | 110 self._bugzilla.authenticate() 351 self.authenticate() 362 self.authenticate() 376 self.authenticate() 399 def authenticate(self): member in Bugzilla 489 self.authenticate() 515 self.authenticate() 569 self.authenticate() 627 self.authenticate() 653 self.authenticate() [all …]
|
D | bugzilla_unittest.py | 295 bugzilla.authenticate = lambda: None 313 bugzilla.authenticate = lambda: None
|
/external/apache-http/src/org/apache/http/impl/auth/ |
D | BasicScheme.java | 130 public Header authenticate( in authenticate() method in BasicScheme 142 return authenticate(credentials, charset, isProxy()); in authenticate() 154 public static Header authenticate( in authenticate() method in BasicScheme
|
D | NTLMScheme.java | 106 public Header authenticate( in authenticate() method in NTLMScheme
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/clients/ |
D | imap.py | 32 def authenticate(self, url, consumer, token): member in IMAP4_SSL 39 imaplib.IMAP4_SSL.authenticate(self, 'XOAUTH',
|
D | smtp.py | 33 def authenticate(self, url, consumer, token): member in SMTP
|
/external/wpa_supplicant_8/hostapd/ |
D | hostapd.deny | 1 # List of MAC addresses that are not allowed to authenticate (IEEE 802.11)
|
D | hostapd.accept | 1 # List of MAC addresses that are allowed to authenticate (IEEE 802.11)
|
/external/apache-http/src/org/apache/http/auth/ |
D | AuthScheme.java | 137 Header authenticate(Credentials credentials, HttpRequest request) in authenticate() method
|
/external/openssh/openbsd-compat/ |
D | port-aix.h | 44 int authenticate(char *, char *, int *, char **);
|
/external/apache-http/src/org/apache/http/client/protocol/ |
D | RequestTargetAuthentication.java | 96 request.addHeader(authScheme.authenticate(creds, request)); in process()
|
D | RequestProxyAuthentication.java | 95 request.addHeader(authScheme.authenticate(creds, request)); in process()
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/ |
D | __init__.py | 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()
|
/external/webkit/Tools/Scripts/webkitpy/tool/bot/ |
D | flakytestreporter.py | 58 self._tool.bugs.authenticate()
|
/external/chromium/net/tools/testserver/ |
D | chromiumsync.py | 754 response.authenticate.user.email = 'syncjuser@chromium' 755 response.authenticate.user.display_name = 'Sync J User'
|