Searched refs:authState (Results 1 - 4 of 4) sorted by relevance

/external/apache-http/src/org/apache/http/client/protocol/
H A DRequestProxyAuthentication.java77 AuthState authState = (AuthState) context.getAttribute(
79 if (authState == null) {
83 AuthScheme authScheme = authState.getAuthScheme();
88 Credentials creds = authState.getCredentials();
93 if (authState.getAuthScope() != null || !authScheme.isConnectionBased()) {
H A DRequestTargetAuthentication.java77 AuthState authState = (AuthState) context.getAttribute(
79 if (authState == null) {
83 AuthScheme authScheme = authState.getAuthScheme();
88 Credentials creds = authState.getCredentials();
94 if (authState.getAuthScope() != null || !authScheme.isConnectionBased()) {
/external/apache-http/src/org/apache/http/impl/client/
H A DDefaultUserTokenHandler.java77 private static Principal getAuthPrincipal(final AuthState authState) { argument
78 AuthScheme scheme = authState.getAuthScheme();
80 Credentials creds = authState.getCredentials();
H A DDefaultRequestDirector.java1029 final AuthState authState,
1035 AuthScheme authScheme = authState.getAuthScheme();
1039 authState.setAuthScheme(authScheme);
1054 final AuthState authState,
1058 if (!authState.isValid()) {
1069 AuthScheme authScheme = authState.getAuthScheme();
1079 Credentials creds = authState.getCredentials();
1095 authState.setAuthScope(authScope);
1096 authState.setCredentials(creds);
1027 processChallenges( final Map<String, Header> challenges, final AuthState authState, final AuthenticationHandler authHandler, final HttpResponse response, final HttpContext context) argument
1053 updateAuthState( final AuthState authState, final HttpHost host, final CredentialsProvider credsProvider) argument

Completed in 91 milliseconds