Searched refs:secs (Results 1 – 5 of 5) sorted by relevance
108 public ServiceProxy setTimeout(int secs) { in setTimeout() argument109 mTimeout = secs; in setTimeout()
751 public static String makeTimeString(Context context, long secs) { in makeTimeString() argument753 secs < 3600 ? R.string.durationformatshort : R.string.durationformatlong); in makeTimeString()761 timeArgs[0] = secs / 3600; in makeTimeString()762 timeArgs[1] = secs / 60; in makeTimeString()763 timeArgs[2] = (secs / 60) % 60; in makeTimeString()764 timeArgs[3] = secs; in makeTimeString()765 timeArgs[4] = secs % 60; in makeTimeString()
237 int secs = cursor.getInt(mDurationIdx) / 1000; in bindView() local238 if (secs == 0) { in bindView()241 vh.duration.setText(MusicUtils.makeTimeString(context, secs)); in bindView()
1474 int secs = cursor.getInt(mDurationIdx) / 1000;1475 if (secs == 0) {1478 vh.duration.setText(MusicUtils.makeTimeString(context, secs));
553 long secs = 0; in endDownload() local555 secs = (System.currentTimeMillis() - req.time) / 1000; in endDownload()559 Log.d(TAG, "<< Download finished for attachment #" + attachmentId + "; " + secs + in endDownload()