Searched refs:VolleyLog (Results 1 – 9 of 9) sorted by relevance
/external/volley/src/main/java/com/android/volley/ |
D | CacheDispatcher.java | 37 private static final boolean DEBUG = VolleyLog.DEBUG; 89 if (DEBUG) VolleyLog.v("start new dispatcher"); in run() 104 VolleyLog.e( in run() 235 if (VolleyLog.DEBUG) { in onResponseReceived() 236 VolleyLog.v( in onResponseReceived() 253 if (VolleyLog.DEBUG) { in onNoUsableResponseReceived() 254 VolleyLog.v( in onNoUsableResponseReceived() 264 VolleyLog.e("Couldn't add request to queue. %s", iex.toString()); in onNoUsableResponseReceived() 294 if (VolleyLog.DEBUG) { in maybeAddToWaitingRequests() 295 VolleyLog.d("Request for cacheKey=%s is in flight, putting on hold.", cacheKey); in maybeAddToWaitingRequests() [all …]
|
D | VolleyLog.java | 31 public class VolleyLog { class 40 private static final String CLASS_NAME = VolleyLog.class.getName(); 95 if (!clazz.equals(VolleyLog.CLASS_NAME)) { in buildMessage() 109 public static final boolean ENABLED = VolleyLog.DEBUG;
|
D | NetworkDispatcher.java | 97 VolleyLog.e( in run() 163 VolleyLog.e(e, "Unhandled exception %s", e.toString()); in processRequest()
|
D | Request.java | 27 import com.android.volley.VolleyLog.MarkerLog;
|
/external/volley/src/main/java/com/android/volley/toolbox/ |
D | DiskBasedCache.java | 24 import com.android.volley.VolleyLog; 107 VolleyLog.d("Cache cleared."); in clear() 127 VolleyLog.d( in get() 141 VolleyLog.d("%s: %s", file.getAbsolutePath(), e.toString()); in get() 155 VolleyLog.e("Unable to create cache dir %s", mRootDirectory.getAbsolutePath()); in initialize() 221 VolleyLog.d("Failed to write header for %s", file.getAbsolutePath()); in put() 234 VolleyLog.d("Could not clean up file %s", file.getAbsolutePath()); in put() 244 VolleyLog.d( in remove() 273 if (VolleyLog.DEBUG) { in pruneIfNeeded() 274 VolleyLog.v("Pruning old cache entries."); in pruneIfNeeded() [all …]
|
D | BasicNetwork.java | 34 import com.android.volley.VolleyLog; 51 protected static final boolean DEBUG = VolleyLog.DEBUG; 183 VolleyLog.e("Unexpected response code %d for %s", statusCode, request.getUrl()); in performRequest() 222 VolleyLog.d( in logSlowRequests() 276 VolleyLog.v("HTTP ERROR(%s) %d ms to fetch %s", what, (now - start), url); in logError() 303 VolleyLog.v("Error occurred when closing InputStream"); in inputStreamToBytes()
|
D | JsonRequest.java | 26 import com.android.volley.VolleyLog; 121 VolleyLog.wtf( in getBody()
|
D | HttpHeaderParser.java | 22 import com.android.volley.VolleyLog; 138 VolleyLog.e(e, "Unable to parse dateStr: %s, falling back to 0", dateStr); in parseDateAsEpoch()
|
D | ImageRequest.java | 31 import com.android.volley.VolleyLog; 187 VolleyLog.e("Caught OOM for %d byte image, url=%s", response.data.length, getUrl()); in parseNetworkResponse()
|