Home
last modified time | relevance | path

Searched refs:VolleyLog (Results 1 – 9 of 9) sorted by relevance

/frameworks/volley/src/com/android/volley/toolbox/
DDiskBasedCache.java22 import com.android.volley.VolleyLog;
99 VolleyLog.d("Cache cleared."); in clear()
121 VolleyLog.d("%s: %s", file.getAbsolutePath(), e.toString()); in get()
143 VolleyLog.e("Unable to create cache dir %s", mRootDirectory.getAbsolutePath()); in initialize()
210 VolleyLog.d("Could not clean up file %s", file.getAbsolutePath()); in put()
222 VolleyLog.d("Could not delete cache entry for key=%s, filename=%s", in remove()
254 if (VolleyLog.DEBUG) { in pruneIfNeeded()
255 VolleyLog.v("Pruning old cache entries."); in pruneIfNeeded()
270 VolleyLog.d("Could not delete cache entry for key=%s, filename=%s", in pruneIfNeeded()
281 if (VolleyLog.DEBUG) { in pruneIfNeeded()
[all …]
DBasicNetwork.java32 import com.android.volley.VolleyLog;
54 protected static final boolean DEBUG = VolleyLog.DEBUG;
127 VolleyLog.e("Unexpected response code %d for %s", statusCode, request.getUrl()); in performRequest()
152 VolleyLog.d("HTTP response for request=<%s> [lifetime=%d], [size=%s], " + in logSlowRequests()
197 VolleyLog.v("HTTP ERROR(%s) %d ms to fetch %s", what, (now - start), url); in logError()
223 VolleyLog.v("Error occured when calling consumingContent"); in entityToBytes()
DJsonRequest.java24 import com.android.volley.VolleyLog;
97 VolleyLog.wtf("Unsupported Encoding while trying to get the bytes of %s using %s", in getBody()
DImageRequest.java24 import com.android.volley.VolleyLog;
128 VolleyLog.e("Caught OOM for %d byte image, url=%s", response.data.length, getUrl()); in parseNetworkResponse()
/frameworks/volley/src/com/android/volley/
DRequestQueue.java245 if (VolleyLog.DEBUG) { in add()
246 VolleyLog.v("Request for cacheKey=%s is in flight, putting on hold.", cacheKey); in add()
276 if (VolleyLog.DEBUG) { in finish()
277 VolleyLog.v("Releasing %d waiting requests for cacheKey=%s.", in finish()
DVolleyLog.java27 public class VolleyLog { class
71 if (!clazz.equals(VolleyLog.class)) { in buildMessage()
88 public static final boolean ENABLED = VolleyLog.DEBUG;
DCacheDispatcher.java35 private static final boolean DEBUG = VolleyLog.DEBUG;
81 if (DEBUG) VolleyLog.v("start new dispatcher"); in run()
DRequest.java26 import com.android.volley.VolleyLog.MarkerLog;
210 VolleyLog.d("%d ms: %s", requestTime, this.toString()); in finish()
DNetworkDispatcher.java132 VolleyLog.e(e, "Unhandled exception %s", e.toString()); in run()