Home | History | Annotate | Download | only in volley

Lines Matching defs:time

117             public final long time;
119 public Marker(String name, long thread, long time) {
122 this.time = time;
139 * Closes the log, dumping it to logcat if the time difference between the first and last
152 long prevTime = mMarkers.get(0).time;
155 long thisTime = marker.time;
171 /** Returns the time difference between the first and last events in this log. */
177 long first = mMarkers.get(0).time;
178 long last = mMarkers.get(mMarkers.size() - 1).time;