Home
last modified time | relevance | path

Searched refs:proxyAuthState (Results 1 – 3 of 3) sorted by relevance

/external/robolectric-shadows/shadows/httpclient/src/main/java/org/robolectric/shadows/httpclient/
DDefaultRequestDirector.java182 protected final AuthState proxyAuthState; field in DefaultRequestDirector
276 this.proxyAuthState = new AuthState(); in DefaultRequestDirector()
458 proxyAuthState); in execute()
773 proxyAuthState); in createTunnelToTarget()
801 challenges, this.proxyAuthState, this.proxyAuthHandler, in createTunnelToTarget()
809 updateAuthState(this.proxyAuthState, proxy, credsProvider); in createTunnelToTarget()
811 if (this.proxyAuthState.getCredentials() != null) { in createTunnelToTarget()
830 this.proxyAuthState.setAuthScope(null); in createTunnelToTarget()
980 proxyAuthState.setAuthScope(null); in handleResponse()
985 AuthScheme authScheme = proxyAuthState.getAuthScheme(); in handleResponse()
[all …]
/external/apache-http/src/org/apache/http/impl/client/
DDefaultRequestDirector.java165 private final AuthState proxyAuthState; field in DefaultRequestDirector
247 this.proxyAuthState = new AuthState(); in DefaultRequestDirector()
411 proxyAuthState); in execute()
735 AuthScheme authScheme = this.proxyAuthState.getAuthScheme(); in createTunnelToTarget()
736 AuthScope authScope = this.proxyAuthState.getAuthScope(); in createTunnelToTarget()
737 Credentials creds = this.proxyAuthState.getCredentials(); in createTunnelToTarget()
769 challenges, this.proxyAuthState, this.proxyAuthHandler, in createTunnelToTarget()
777 updateAuthState(this.proxyAuthState, proxy, credsProvider); in createTunnelToTarget()
779 if (this.proxyAuthState.getCredentials() != null) { in createTunnelToTarget()
798 this.proxyAuthState.setAuthScope(null); in createTunnelToTarget()
[all …]
DDefaultUserTokenHandler.java63 AuthState proxyAuthState = (AuthState) context.getAttribute( in getUserToken() local
65 userPrincipal = getAuthPrincipal(proxyAuthState); in getUserToken()