Searched refs:authenticate (Results 1 - 25 of 64) sorted by relevance

123

/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/clients/
H A Dimap.py32 def authenticate(self, url, consumer, token): member in class:IMAP4_SSL
39 imaplib.IMAP4_SSL.authenticate(self, 'XOAUTH',
H A Dsmtp.py33 def authenticate(self, url, consumer, token): member in class:SMTP
/external/smack/src/org/jivesoftware/smack/sasl/
H A DSASLAnonymous.java42 public void authenticate(String username, String host, CallbackHandler cbh) throws IOException { method in class:SASLAnonymous
43 authenticate();
46 public void authenticate(String username, String host, String password) throws IOException { method in class:SASLAnonymous
47 authenticate();
50 protected void authenticate() throws IOException { method in class:SASLAnonymous
H A DSASLGSSAPIMechanism.java61 public void authenticate(String username, String host, CallbackHandler cbh) throws IOException, XMPPException { method in class:SASLGSSAPIMechanism
66 authenticate();
80 public void authenticate(String username, String host, String password) throws IOException, XMPPException { method in class:SASLGSSAPIMechanism
85 authenticate();
H A DSASLFacebookConnect.java41 // protected void authenticate() throws IOException, XMPPException {
47 // super.authenticate();
50 protected void authenticate() throws IOException, XMPPException { method in class:SASLFacebookConnect
67 public void authenticate(String apiKeyAndSessionKey, String host, String sessionSecret) method in class:SASLFacebookConnect
89 authenticate();
92 public void authenticate(String username, String host, CallbackHandler cbh) method in class:SASLFacebookConnect
97 authenticate();
H A DSASLMechanism.java48 * <li>{@link #authenticate(String, String, String)} -- Initiate authentication stanza using the
50 * <li>{@link #authenticate(String, String, CallbackHandler)} -- Initiate authentication stanza
73 * {@link #authenticate(String, String, CallbackHandler)} whenever possible.
81 public void authenticate(String username, String host, String password) throws IOException, XMPPException { method in class:SASLMechanism
93 authenticate();
106 public void authenticate(String username, String host, CallbackHandler cbh) throws IOException, XMPPException { method in class:SASLMechanism
110 authenticate();
113 protected void authenticate() throws IOException, XMPPException { method in class:SASLMechanism
/external/smack/src/org/jivesoftware/smack/
H A DUserAuthentication.java26 * There are two ways to authenticate a user with a server. Using SASL or Non-SASL
50 String authenticate(String username, String resource, CallbackHandler cbh) throws method in interface:UserAuthentication
58 * It is recommended that @{link #authenticate(String, String, CallbackHandler)} be used instead
67 String authenticate(String username, String password, String resource) throws method in interface:UserAuthentication
H A DSASLAuthentication.java40 * 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 user
216 public String authenticate(String username, String resource, CallbackHandler cbh) method in class:SASLAuthentication
298 public String authenticate(String username, String password, String resource) method in class:SASLAuthentication
[all...]
H A DSASLAuthentication.java.orig40 * 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 user
[all...]
H A DNonSASLAuthentication.java47 public String authenticate(String username, String resource, CallbackHandler cbh) throws XMPPException { method in class:NonSASLAuthentication
52 return authenticate(username, String.valueOf(pcb.getPassword()),resource);
58 public String authenticate(String username, String password, String resource) throws method in class:NonSASLAuthentication
H A DBOSHConnection.java320 response = saslAuthentication.authenticate(username, password, resource);
322 response = saslAuthentication.authenticate(username, resource, config.getCallbackHandler());
326 response = new NonSASLAuthentication(this).authenticate(username, password, resource);
/external/apache-http/src/org/apache/http/auth/
H A DAuthScheme.java142 Header authenticate(Credentials credentials, HttpRequest request) method in interface:AuthScheme
/external/apache-http/src/org/apache/http/impl/auth/
H A DBasicScheme.java135 public Header authenticate( method in class:BasicScheme
147 return authenticate(credentials, charset, isProxy());
159 public static Header authenticate( method in class:BasicScheme
H A DNTLMScheme.java112 public Header authenticate( method in class:NTLMScheme
/external/apache-http/src/org/apache/http/client/protocol/
H A DRequestProxyAuthentication.java100 request.addHeader(authScheme.authenticate(creds, request));
H A DRequestTargetAuthentication.java101 request.addHeader(authScheme.authenticate(creds, request));
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
H A DRecordingOkAuthenticator.java50 @Override public Credential authenticate(Proxy proxy, URL url, List<Challenge> challenges) method in class:RecordingOkAuthenticator
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
H A Dvl_winsys_dri.c306 xcb_dri2_authenticate_reply_t *authenticate = NULL; local
355 authenticate = xcb_dri2_authenticate_reply(scrn->conn, authenticate_cookie, NULL);
357 if (authenticate == NULL || !authenticate->authenticated)
370 free(authenticate);
379 free(authenticate);
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_winsys_dri.c306 xcb_dri2_authenticate_reply_t *authenticate = NULL; local
355 authenticate = xcb_dri2_authenticate_reply(scrn->conn, authenticate_cookie, NULL);
357 if (authenticate == NULL || !authenticate->authenticated)
370 free(authenticate);
379 free(authenticate);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DOkAuthenticator.java39 Credential authenticate(Proxy proxy, URL url, List<Challenge> challenges) throws IOException; method in interface:OkAuthenticator
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/pipe-loader/
H A Dpipe_loader_drm.c140 /* Try authenticate with the X server to give us access to devices that X
149 xcb_dri2_authenticate_reply_t *authenticate; local
178 authenticate = xcb_dri2_authenticate_reply(xcb_conn,
181 FREE(authenticate);
/external/mesa3d/src/gallium/auxiliary/pipe-loader/
H A Dpipe_loader_drm.c140 /* Try authenticate with the X server to give us access to devices that X
149 xcb_dri2_authenticate_reply_t *authenticate; local
178 authenticate = xcb_dri2_authenticate_reply(xcb_conn,
181 FREE(authenticate);
/external/chromium_org/third_party/mesa/src/src/egl/wayland/wayland-drm/
H A Dwayland-drm.h83 int (*authenticate)(void *user_data, uint32_t id); member in struct:wayland_drm_callbacks
/external/mesa3d/src/egl/wayland/wayland-drm/
H A Dwayland-drm.h83 int (*authenticate)(void *user_data, uint32_t id); member in struct:wayland_drm_callbacks
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DHttpAuthenticator.java42 @Override public Credential authenticate(
114 : authenticator.authenticate(proxy, request.url(), challenges);

Completed in 1268 milliseconds

123