Searched defs:authenticate (Results 1 - 25 of 45) sorted by relevance

12

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DAuthenticator.java41 Request authenticate(Proxy proxy, Response response) throws IOException; method in interface:Authenticator
/external/apache-http/src/org/apache/http/auth/
H A DAuthScheme.java142 Header authenticate(Credentials credentials, HttpRequest request) method in interface:AuthScheme
/external/chromium-trace/catapult/third_party/Paste/paste/auth/
H A Dbasic.py40 def authenticate(self, environ): member in class:AuthBasicAuthenticator
53 __call__ = authenticate
84 self.authenticate = AuthBasicAuthenticator(realm, authfunc)
89 result = self.authenticate(environ)
H A Ddigest.py132 def authenticate(self, environ): member in class:AuthDigestAuthenticator
165 __call__ = authenticate
216 self.authenticate = AuthDigestAuthenticator(realm, authfunc)
222 result = self.authenticate(environ)
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DAuthenticatorAdapter.java37 @Override public Request authenticate(Proxy proxy, Response response) throws IOException { method in class:AuthenticatorAdapter
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
H A DRecordingOkAuthenticator.java44 @Override public Request authenticate(Proxy proxy, Response response) { method in class:RecordingOkAuthenticator
/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 DDigestScheme.java224 public Header authenticate( method in class:DigestScheme
H A DNTLMScheme.java112 public Header authenticate( method in class:NTLMScheme
/external/autotest/frontend/
H A Dapache_auth.py19 def authenticate(self, username=None, password=None): member in class:SimpleAuthBackend
53 HTTP_AUTHORIZATION header with username (this allows CLI to authenticate).
82 user_object = auth.authenticate(username=username,
/external/jetty/src/java/org/eclipse/jetty/security/authentication/
H A DDeferredAuthentication.java62 * @see org.eclipse.jetty.server.Authentication.Deferred#authenticate(ServletRequest)
64 public Authentication authenticate(ServletRequest request) method in class:DeferredAuthentication
91 * @see org.eclipse.jetty.server.Authentication.Deferred#authenticate(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
93 public Authentication authenticate(ServletRequest request, ServletResponse response) method in class:DeferredAuthentication
139 * @return true if this response is from a deferred call to {@link #authenticate(ServletRequest)}
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DUCharacterNameReader.java108 protected boolean authenticate(byte dataformatid[], method in class:UCharacterNameReader
H A DICUBinary.java556 Authenticate authenticate)
558 return getVersionInfoFromCompactInt(readHeader(bytes, dataFormat, authenticate));
573 public static int readHeader(ByteBuffer bytes, int dataFormat, Authenticate authenticate) argument
605 (authenticate != null && !authenticate.isDataVersionAcceptable(formatVersion))) {
774 * Magic numbers to authenticate the data file
554 readHeaderAndDataVersion(ByteBuffer bytes, int dataFormat, Authenticate authenticate) argument
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUCharacterNameReader.java108 protected boolean authenticate(byte dataformatid[], method in class:UCharacterNameReader
H A DICUBinary.java552 Authenticate authenticate)
554 return getVersionInfoFromCompactInt(readHeader(bytes, dataFormat, authenticate));
569 public static int readHeader(ByteBuffer bytes, int dataFormat, Authenticate authenticate) argument
601 (authenticate != null && !authenticate.isDataVersionAcceptable(formatVersion))) {
770 * Magic numbers to authenticate the data file
550 readHeaderAndDataVersion(ByteBuffer bytes, int dataFormat, Authenticate authenticate) argument
/external/jetty/src/java/org/eclipse/jetty/server/
H A DAuthentication.java71 Authentication authenticate(ServletRequest request); method in interface:Authentication.Deferred
79 Authentication authenticate(ServletRequest request,ServletResponse response); method in interface:Authentication.Deferred
H A DServletRequestHttpWrapper.java172 * @see javax.servlet.http.HttpServletRequest#authenticate(javax.servlet.http.HttpServletResponse)
174 public boolean authenticate(HttpServletResponse response) throws IOException, ServletException method in class:ServletRequestHttpWrapper
/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/jetty/src/java/org/eclipse/jetty/security/
H A DConstraintSecurityHandler.java99 * @param authenticate
104 public static Constraint createConstraint (String name, boolean authenticate, String[] roles, int dataConstraint) argument
109 constraint.setAuthenticate(authenticate);
H A DMappedLoginService.java223 if (principal.authenticate(credentials))
253 boolean authenticate(Object credentials); method in interface:MappedLoginService.UserPrincipal
291 public boolean authenticate(Object credentials) method in class:MappedLoginService.Anonymous
315 public boolean authenticate(Object credentials) method in class:MappedLoginService.KnownUser
/external/jetty/src/java/org/eclipse/jetty/util/security/
H A DConstraint.java160 * @param authenticate True if users must be authenticated
162 public void setAuthenticate(boolean authenticate) argument
164 _authenticate = authenticate;
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DHttpOverSpdyTest.java215 @Test public void authenticate() throws Exception { method in class:HttpOverSpdyTest
217 .addHeader("www-authenticate: Basic realm=\"protected area\"")
218 .setBody("Please authenticate."));
/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/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/mesa3d/src/egl/drivers/dri2/
H A Degl_dri2.h133 int (*authenticate) (_EGLDisplay *disp, uint32_t id); member in struct:dri2_egl_display

Completed in 708 milliseconds

12