HomeSort by relevance Sort by last modified time
    Searched refs:AuthFailureError (Results 1 - 14 of 14) sorted by null

  /external/volley/src/main/java/com/android/volley/
AuthFailureError.java 23 public class AuthFailureError extends VolleyError {
27 public AuthFailureError() {}
29 public AuthFailureError(Intent intent) {
33 public AuthFailureError(NetworkResponse response) {
37 public AuthFailureError(String message) {
41 public AuthFailureError(String message, Exception reason) {
Request.java 301 // throw AuthFailureError.
358 * AuthFailureError} as authentication may be required to provide these values.
360 * @throws AuthFailureError In the event of auth failure
362 public Map<String, String> getHeaders() throws AuthFailureError {
368 * be used. Can throw {@link AuthFailureError} as authentication may be required to provide
373 * @throws AuthFailureError In the event of auth failure
377 protected Map<String, String> getPostParams() throws AuthFailureError {
410 * @throws AuthFailureError In the event of auth failure
414 public byte[] getPostBody() throws AuthFailureError {
428 * AuthFailureError} as authentication may be required to provide these values
    [all...]
  /external/volley/src/main/java/com/android/volley/toolbox/
Authenticator.java 19 import com.android.volley.AuthFailureError;
26 * @throws AuthFailureError If authentication did not succeed
28 String getAuthToken() throws AuthFailureError;
HttpStack.java 19 import com.android.volley.AuthFailureError;
46 throws IOException, AuthFailureError;
AndroidAuthenticator.java 27 import com.android.volley.AuthFailureError;
90 public String getAuthToken() throws AuthFailureError {
102 throw new AuthFailureError("Error while retrieving auth token", e);
108 throw new AuthFailureError(intent);
113 throw new AuthFailureError("Got null auth token for type: " + mAuthTokenType);
BaseHttpStack.java 18 import com.android.volley.AuthFailureError;
50 * @throws AuthFailureError if an authentication failure occurs during the request
54 throws IOException, AuthFailureError;
67 throws IOException, AuthFailureError {
AdaptedHttpStack.java 18 import com.android.volley.AuthFailureError;
45 throws IOException, AuthFailureError {
HttpClientStack.java 19 import com.android.volley.AuthFailureError;
78 throws IOException, AuthFailureError {
97 Request<?> request, Map<String, String> additionalHeaders) throws AuthFailureError {
157 throws AuthFailureError {
HurlStack.java 20 import com.android.volley.AuthFailureError;
74 throws IOException, AuthFailureError {
227 HttpURLConnection connection, Request<?> request) throws IOException, AuthFailureError {
274 throws IOException, AuthFailureError {
BasicNetwork.java 20 import com.android.volley.AuthFailureError;
196 "auth", request, new AuthFailureError(networkResponse));
  /external/volley/src/test/java/com/android/volley/mock/
MockHttpStack.java 19 import com.android.volley.AuthFailureError;
61 throws IOException, AuthFailureError {
75 } catch (AuthFailureError e) {
  /external/volley/src/test/java/com/android/volley/toolbox/
AndroidAuthenticatorTest.java 30 import com.android.volley.AuthFailureError;
53 @Test(expected = AuthFailureError.class)
61 @Test(expected = AuthFailureError.class)
74 @Test(expected = AuthFailureError.class)
BaseHttpStackTest.java 7 import com.android.volley.AuthFailureError;
43 throws IOException, AuthFailureError {
62 throws IOException, AuthFailureError {
83 throws IOException, AuthFailureError {
BasicNetworkTest.java 29 import com.android.volley.AuthFailureError;
210 verify(mMockRetryPolicy).retry(any(AuthFailureError.class));
228 verify(mMockRetryPolicy).retry(any(AuthFailureError.class));

Completed in 95 milliseconds